0% found this document useful (0 votes)
88 views

SQL Mcqs

In telecommunications, Long-Term Evolution is a standard for wireless broadband communication for mobile devices and data terminals, based on the GSM/EDGE and UMTS/HSPA standards. It improves on those standards' capacity and speed by using a different radio interface and core network improvements

Uploaded by

Ranjana
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
88 views

SQL Mcqs

In telecommunications, Long-Term Evolution is a standard for wireless broadband communication for mobile devices and data terminals, based on the GSM/EDGE and UMTS/HSPA standards. It improves on those standards' capacity and speed by using a different radio interface and core network improvements

Uploaded by

Ranjana
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 25

QuestionTyp

QuestionText e Choice1 Choice2 Choice3 Choice4


A PRIMARY
KEY
constraint The UNIQUE
does not constraint
automatically uniquely
have a identifies
UNIQUE each record
Please read the question carefully and choose the most appropriate constraint in a database None of the All listed
option. Which of the given options are TRUE regarding 'Constraints'? MCQ defined on it. table. listed options options
Constraints
gives Constraints Constraints
Please read the question carefully and choose the most appropriate None of the programmers ensure data add a level of
option. The main reason that constraints are added to a table is: MCQ listed options job security integrity complexity
The NOT
NULL Constraints
constraint are used to
enforces a limit the type
column to of data that
Please read the question carefully and choose the most appropriate None of the NOT accept All listed can go into a
option. Which of the given options are TRUE regarding 'Constraints'? MCQ listed options NULL values. options table
Please read the question carefully and choose the most appropriate
option. Statement 1: If you want to select rows that satisfy at least
one of the given conditions, you can use the logical operator, AND.

Statement 2: <> Checks if the value of two operands are equal or Both
not, if values are not equal then condition becomes true. statement 1
Only and None of the Only
Which of the above statements are TRUE? MCQ statement 2 statement 2 listed options statement 1
Please read the question carefully and choose the most appropriate
option. A column defined as NOT NULL can have a DEFAULT value
of NULL. True or False? MCQ true false
Please read the question carefully and choose the most appropriate
option. You can have many UNIQUE constraints per table, but only
one PRIMARY KEY constraint per table.
State whether the above statement is TRUE or FALSE. MCQ true false
The primary
key is a
column or The primary
combination key column is
of columns a column or
whose values combination The primary
uniquely of columns key is a
identify each whose values column that
Please read the question carefully and choose the most appropriate row in the can be non- can have
option. What is a primary key? MCQ table. unique. NULL values.
Please read the question carefully and choose the most appropriate
option. A table must have at least one not null constraint and one
unique constraint. True or False? MCQ true false
Please read the question carefully and choose the most appropriate
option. Statement 1: Operators are used to specify conditions in an
SQL statement and to serve as conjunctions for multiple conditions in
a statement.
Both
Statement 2: Arithmetic operators manipulate numeric operands. statement 1
and None of the Only Only
Which of the above statements are TRUE? MCQ statement 2 listed options statement 1 statement 2
Please read the question carefully and choose the most appropriate
option. Statement 1: 'UNION' returns all distinct rows selected by
either query.

Statement 2: 'INTERSECT 'returns all distinct rows selected by both Both


queries. statement 1
Only and None of the Only
Which of the above statements is TRUE? MCQ statement 2 statement 2 listed options statement 1
Please read the question carefully and choose the most appropriate
option. To automatically delete rows in a child table when a parent ON DELETE ON DELETE ON DELETE None of the
record is deleted use: MCQ CASCADE SET NULL ORPHAN listed options
Please read the question carefully and choose the most appropriate
option. Statement 1:Each table can have only ONE primary key per
table
Both
Statement 2: A primary key column can contain NULL values statement 1
and Only Only None of the
Which of the above statements are TRUE? MCQ statement 2 statement 1 statement 2 listed options
Please read the question carefully and choose the most appropriate
option. Statement 1: A FOREIGN KEY in one table points to a
PRIMARY KEY in another table.

Statement 2: If you define a CHECK constraint on a single column it Both


allows only certain values for this column. statement 1
and None of the Only Only
Which of the given options are TRUE? MCQ statement 2 listed options statement 1 statement 2
Please read the question carefully and choose the most appropriate
option. Which operator returns all distinct rows selected by the first
query but not the second? MCQ MINUS UNION INTERSECT UNION ALL
Please read the question carefully and choose the most appropriate
option. A table can have more than one UNIQUE key constraint. True
or False? MCQ false true
Please read the question carefully and choose the most appropriate
option. Primary Key does allow the Null Values. where as in
Unique key doesn't accept the Null values.
State whether the statement is true or false MCQ true false
Please read the question carefully and choose the most appropriate
option. Statement 1: 'AND' Returns TRUE if both component
conditions are TRUE. Returns FALSE if either is FALSE; otherwise
returns UNKNOWN.

Statement 2: 'EXISTS' returns FALSE if a sub-query returns at least Both


one row. statement 1
None of the Only and Only
Which of the above statements are TRUE? MCQ listed options statement 1 statement 2 statement 2
Please read the question carefully and choose the most appropriate
option. Which clause should you use to exclude group results? MCQ WHERE RESTRICT GROUP BY HAVING
Please read the question carefully and choose the most appropriate Materialized
option. ON UPDATE CASCADE ensures which of the following? MCQ None View Normalization data Integrity
create a new modify an delete a table
Please read the question carefully and choose the most appropriate table in the existing table from the
option. The SQL DROP TABLE clause is used to... MCQ database in a database database
Please read the question carefully and choose the most appropriate
option. Which one will delete the table data as well as table
structure? MCQ DISTINCT TRUNCATE REMOVE DROP
Please read the question carefully and choose the most appropriate
option. To remove duplicate rows from the result set of a SELECT NO None of the
use the following keyword: MCQ DUPLICATE DISTINCT listed options UNIQUE
Holds a
variable
length string
(can contain
letters, Its maximum
Please read the question carefully and choose the most appropriate numbers, and size is
option. Which of the given options are TRUE about 'varchar' All listed special None of the specified in
datatype? MCQ options characters). listed options parenthesis.
SELECT SELECT
CustomerNa CustomerNa
me, COUNT me, COUNT
(CustomerNa (CustomerNa SELECT
me) FROM me) FROM CustomerNa
Orders Orders me, COUNT
ORDER BY GROUP BY (CustomerNa
Please read the question carefully and choose the most appropriate CustomerNa CustomerNa me) FROM
option. Which of the following SQL statements is correct? MCQ me me Orders
Please read the question carefully and choose the most appropriate
option. Which of the following is not a valid aggregate function? MCQ COUNT COMPUTE MAX MIN
Please read the question carefully and choose the most appropriate
option. Can you use combination of GROUP BY clause,HAVING
clause and WHERE clause SQL clauses in one SQL statement? MCQ true false
UPDATE UPDATE UPDATE UPDATE
employees employees employees employees
SET SET SET SET
Please read the question carefully and choose the most appropriate first_name = first_name = first_name = first_name =
option. Examine the structure of the EMPLOYEES table: 'John' AND 'John' SET 'John', SET 'John',
EMPLOYEE_ID NUMBER Primary Key last_name last_name last_name last_name
FIRST_NAME VARCHAR2(25) ='Smith' ='Smith' ='Smith' ='Smith'
LAST_NAME VARCHAR2(25) WHERE WHERE WHERE WHERE
HIRE_DATE DATE employee_id employee_id employee_id employee_id
Which UPDATE statement is valid? MCQ = 180; = 180; = 180; = 180;
Please read the question carefully and choose the most appropriate
option. The CUSTOMERS table has these columns:
CUSTOMER_ID NUMBER(4) NOT NULL
CUSTOMER_NAME VARCHAR2(100) NOT NULL
STREET_ADDRESS VARCHAR2(150)
CITY_ADDRESS VARCHAR2(50)
STATE_ADDRESS VARCHAR2(50)
PROVINCE_ADDRESS VARCHAR2(50)
COUNTRY_ADDRESS VARCHAR2(50)
POSTAL_CODE VARCHAR2(12) WHERE WHERE WHERE
CUSTOMER_PHONE VARCHAR2(20) lower lower lower
A sale is being advertised to the customers in France. Which (country_add (country_add (country_add
WHERE clause ress) = ress) IS ress) =
identifies customers that are located in France? MCQ None "france" 'france' 'france'
Please read the question carefully and choose the most appropriate
option. What SQL clause is used to restrict the rows returned by a
query? MCQ HAVING AND FROM WHERE
Please read the question carefully and choose the most appropriate
option. Which SQL statement is used to insert a new data in a INSERT INSERT
database? MCQ NEW ADD UPDATE INTO
The SQL
ALTER
TABLE
clause
modifies a
The SQL table The SQL
The SQL ALTER definition by ALTER
ALTER TABLE altering, TABLE
TABLE clause is adding, or clause is
deletes data used to insert deleting table used to
from data into columns delete a
Please read the question carefully and choose the most appropriate database database and/or database
option. What does the ALTER TABLE clause do? MCQ table. table. constraints. table
Please read the question carefully and choose the most appropriate
option. What is the standard way to separate each SQL statement in
database systems that allow more than one SQL statement to be All listed
executed in the same call to the server. MCQ Comma Colon options Semicolon
TCL contains
the
TCL consists commands
of 2 which are
commands: required for
Please read the question carefully and choose the most appropriate All listed COMMIT and None of the Transaction
option. Which of the given options are TRUE about TCL? MCQ options ROLLBACK listed options Management.
Please read the question carefully and choose the most appropriate
option. The result of a SELECT statement can contain duplicate
rows. MCQ true false
Please read the question carefully and choose the most appropriate
option. Statement1: Data types specify what the type of data can be
for that particular column
Both
Statement 2: Varchar is a datatype in SQL statement 1
Only Only and None of the
Which of the above statements is TRUE? MCQ statement 1 statement 2 statement 2 listed options
The AS SQL
clause is
used to
change the
name of a
column in the
The AS result set or The AS
clause is to assign a clause
used with the name to a defines a
Please read the question carefully and choose the most appropriate JOIN clause derived search
option. What is the purpose of the SQL AS clause? MCQ only. column. condition
limits the limits the
Please read the question carefully and choose the most appropriate rows & column data limits the row
option. columns that are data that are
The SQL WHERE clause: MCQ NONE returned returned. returned.
Please read the question carefully and choose the most appropriate
option.
In a LIKE clause, you could ask for any value ending in "qpt" by
writing MCQ LIKE %qpt LIKE *qpt LIKE ^.*qpt$ LIKE qpt$
Specifies
links between
tables, and allows
imposes database
Defines constraints tables to be
Please read the question carefully and choose the most appropriate indexes between All listed created or
option. DDL part of SQL does which of the following? MCQ (keys) tables options deleted
You can mix
You can use single row
aggregate You can pass columns with
functions only column aggregate
in the column names, functions in
list of the expressions, the column
SELECT constants, or list of a You can use
clause and in functions as SELECTstate aggregate
theWHERE parameters ment by functions in
Please read the question carefully and choose the most appropriate clause of a to grouping on any clause of
option. SELECT anaggregate the single a SELECT
Which two are true about aggregate functions?(Choose two) MCA statement. function. row columns. statement.
All the
All the records from
SELECT is records from a table that
invalid a table, or match the
without a information previous
Please read the question carefully and choose the most appropriate WHERE about all the WHERE
option. A SELECT command without a WHERE clause returns? MCQ clause Nothing records clause
Please read the question carefully and choose the most appropriate
option. Statement 1: GRANT, DENY and REVOKE are DCL Both
commands statement 1
Statement 2: CREATE, ALTER, DROP, TRUNCATE are DDL None of the Only and Only
commands MCQ listed options statement 1 statement 2 statement 2
LIKE ______
Please read the question carefully and choose the most appropriate LIKE ...... LIKE .{6} (that's six
option. In a LIKE clause, you can ask for any 6 letter value by (that's six Answer 5: underscore
writing? MCQ dots) LIKE ?????? LIKE ^.{6}$ characters)
Please read the question carefully and choose the most appropriate CREATE
option. Which of the following commands should be used to create a DATABSE CREATE ?I DATABASE DATABASE
database named “student”? MCQ student student /student student
Please read the question carefully and choose the most appropriate
option. Which of the following can add a row to a table? MCQ Add Insert Update Alter
Please read the question carefully and choose the most appropriate
option. Which statement is used to query the database and retrieve
selected data that match the criteria that you specify? MCQ UPDATE RETRIEVE SELECT INSERT
Please read the question carefully and choose the most appropriate
option. Statement 1: The DELETE statement is used to delete
columns in a table.

Statement 2: The UPDATE statement is used to update existing Both


records in a table. statement 1
Only and None of the Only
Which of the above statements are TRUE? MCQ statement 2 statement 2 listed options statement 1
Please read the question carefully and choose the most appropriate
option. ANSI is the official U.S. representative to the International
Organization for Standardization (ISO). State whether the above
statement is true or false MCQ false true
Please read the question carefully and choose the most appropriate
option. Statement 1: DCL contains the commands which protect data
from unauthorized access.

Statement 2: DCL consists of 2 commands: COMMIT and Both


ROLLBACK statement 1
Only None of the and Only
Which of the above statements are TRUE? MCQ statement 1 listed options statement 2 statement 2
The ORDER
Please read the question carefully and choose the most appropriate The sort is in BY clause The ORDER The sort is in
option. ascending comes last in BY clause is descending
Which two statements are true regarding the ORDER BY clause? order by the SELECT executed on order by
(Choose two) MCA default. statement. the client side default
All the listed create
operation can query database
Please read the question carefully and choose the most appropriate be done by database structures Modify the
option. SQL can be used to: MCQ SQL. data only. only. database
Please read the question carefully and choose the most appropriate
option. Which of the given options return rows when there is at least
one match in both tables? MCQ GROUP BY WHERE JOIN ORDER BY
Please read the question carefully and choose the most appropriate
option. Which type of join combines the results of both left and right Full Outer All listed
outer joins? MCQ Cross Join Join Inner join options
Please read the question carefully and choose the most appropriate
option. Which syntax would be used to retrieve all rows in both the
EMPLOYEES and DEPARTMENTS tables, even when there is no
match? MCQ Self join Natural join Outer join Inner join
returns only
the rows from
the first table,
which have returns all
non-matching rows that
values with have
the second matching
table in the value in the
field on which returns all field on which
Please read the question carefully and choose the most appropriate the 2 tables rows from 2 the 2 tables
option. The INNER JOIN clause… MCQ are joined. tables are joined.
You can join
n tables (all
having single
column
primary keys)
in a SQL You can join
statement by a maximum You can join
specifying a of two a maximum
minimum of columns of two tables
Please read the question carefully and choose the most appropriate n-1 join through an All listed through an
option. What is true about joining tables through an equijoin? MCQ conditions. equijoin. options equijoin.
Please read the question carefully and choose the most appropriate
option. Statement 1: In case of Natural Joins, common columns are
columns that have the same number of rows in both tables.

Statement 2: JOIN ON syntax is much more readable and Both


maintainable than the natural join syntax. statement 1
Only and Only None of the
Which of the above statements are TRUE? MCQ statement 1 statement 2 statement 2 listed options
Please read the question carefully and choose the most appropriate
option. In the relational model, relationships between relations or composite candidate
tables are created by using: MCQ foreign keys. keys. determinants. keys
Please read the question carefully and choose the most appropriate
option. Statement 1: CROSS JOIN returns the Cartesian product of
the sets of rows from the joined tables.

Statement 2: You can have multiple conditions for the ON clause just Both
like you can in a WHERE clause. statement 1
Only Only None of the and
Which of the above statements is TRUE? MCQ statement 2 statement 1 listed options statement 2
Please read the question carefully and choose the most appropriate
option. Statement 1: The FULL OUTER JOIN will return all rows, as
long as there's matching data in one of the tables.

Statement 2: FULL OUTER JOIN includes all the rows from both the
participating tables and does not select either the LEFT or RIGHT Both
table from the JOIN key word. statement 1
Only and None of the Only
Which of the above statements are TRUE? MCQ statement 1 statement 2 listed options statement 2
Please read the question carefully and choose the most appropriate
option. If table A have 10 rows and table B have 5 rows, how many
rows will be returned if you perform a cartesian join on those two
tables? MCQ 5 15 10 50
Please read the question carefully and choose the most appropriate
option. A table may be joined to itself. MCQ false true
Please read the question carefully and choose the most appropriate
option. Which of the given options return all rows from the left table,
even if there are no matches in the right table? MCQ RIGHT JOIN JOIN CROSS JOIN LEFT JOIN
Please read the question carefully and choose the most appropriate
option. A Self Join is a type of sql join which is used to join a table to
itself, particularly when the table has a FOREIGN KEY that
references its own PRIMARY KEY.

State whether the above statement is TRUE or FALSE. MCQ false true
Please read the question carefully and choose the most appropriate
option. The ___________ join is the ANSI-standard syntax used to
generate a Cartesian product. MCQ ALL FULL CROSS NATURAL
Please read the question carefully and choose the most appropriate
option. Which type of join does not require each record in the two
joined tables to have a matching record? MCQ Outer Join Equi Join Inner join Self join
we are using we are we are
Please read the question carefully and choose the most appropriate left and right joining more joining table
option. We refer to a join as a self-join when? MCQ join together than 2 tables to itself
a relationship
between a relationship
Please read the question carefully and choose the most appropriate certain between
option. SQL joins are used to query data from two or more tables, None of the columns in certain rows All listed
based on ___________________. MCQ listed options tables in tables. options
Please read the question carefully and choose the most appropriate
option. GROUP BY clause is used in collaboration with the SELECT
statement to arrange identical data into groups.

State whether the above statement is TRUE or FALSE. MCQ true false
Please read the question carefully and choose the most appropriate
option. Statement 1: SQL aggregate functions return a single value,
calculated from values in a column.
Both
Statement 2: AVG() returns the average value statement 1
None of the and Only Only
Which of the above statements is TRUE? MCQ listed options statement 2 statement 2 statement 1
The percent
sign
represents
zero, one, or The
multiple underscore
characters, represents a
Please read the question carefully and choose the most appropriate when used Both the single
option. with LIKE statements number or
Which of the given options is TRUE about LIKE clause? MCQ clause. given character.
Please read the question carefully and choose the most appropriate
option. LIKE clause is used to compare a value to similar values
using logical operators. State whether the above statement is TRUE
or FALSE. MCQ false true
Please read the question carefully and choose the most appropriate
option. The GROUP BY clause follows the WHERE clause in a
SELECT statement and precedes the ORDER BY clause.

State whether the above statement is TRUE or FALSE. MCQ true false
Please read the question carefully and choose the most appropriate
option. The ROUND() function is used to round a numeric field to the
nearest hundred.
State whether the above statement is TRUE or FALSE. MCQ false true
Please read the question carefully and choose the most appropriate
option. The HAVING clause places conditions on the selected
columns, whereas the WHERE clause places conditions on groups
created by the GROUP BY clause.

State whether the above statement is TRUE or FALSE. MCQ false true
COUNT
SUM function function is
allows used to count
selecting the the number
total for a of columns in
Please read the question carefully and choose the most appropriate numeric None of the a database All listed
option. Which of the given options is TRUE? MCQ column. listed options table. options
Please read the question carefully and choose the most appropriate
option. Statement 1: Numeric functions accept numeric input and
return string values.

Statement 2: Single-row functions return a single result row for every


row of a queried table or view.
Only None of the Only All the listed
Which of the above statements are TRUE? MCQ statement 1 listed options statement 2 options
Please read the question carefully and choose the most appropriate
option. The percent sign and the underscore cannot be used in
combinations, when using LIKE clause.

State whether the above statement is TRUE or FALSE. MCQ false true
Please read the question carefully and choose the most appropriate
option. You cannot add a subquery to a SELECT clause as a column
expression in the SELECT list.

State whether the above statement is TRUE or FALSE. MCQ true false
Please read the question carefully and choose the most appropriate CREATE REMOVE CHANGE ADD INDEX
option. Which of the following is valid SQL for an Index? MCQ INDEX ID; INDEX ID; INDEX ID; ID;
Please read the question carefully and choose the most appropriate
option. Statement 1: A subquery is also called an inner query or inner
select, while the statement containing a subquery is also called an
outer query or outer select.

Statement 2: A subquery can be nested inside the WHERE or


HAVING clause of an outer SELECT, INSERT, UPDATE, or DELETE Both
statement, or inside another subquery. statement 1
and Only None of the Only
Which of the above statements are TRUE? MCQ statement 2 statement 2 listed options statement 1
Please read the question carefully and choose the most appropriate DELETE REMOVE All listed
option. View can be removed using which command? MCQ VIEW VIEW options DROP VIEW
Please read the question carefully and choose the most appropriate
option. Statement 1: A view can be accessed with the use of SQL
SELECT statement like a table.

Statement 2: A view can be made up by selecting data from more Both


than one tables. statement 1
Only and None of the Only
Which of the above statements are TRUE? MCQ statement 2 statement 2 listed options statement 1
Please read the question carefully and choose the most appropriate
option. An index helps speed up SELECT queries and WHERE
clauses, but it slows down data input, with UPDATE and INSERT
statements.

State whether the above statement is TRUE or FALSE. MCQ true false
Please read the question carefully and choose the most appropriate
option. Statement 1: Clustered index physically rearranges the data
that users inserts in your tables.
Both
Statement 2: There can be 2000 non-clustered index per table. statement 1
and None of the Only Only
Which of the above statement are TRUE? MCQ statement 2 listed options statement 2 statement 1
An inline view
An inline view exists only
exists only A subquery inside of the
inside of the exists only WHERE
FROM clause inside of the clause as a
Please read the question carefully and choose the most appropriate as a run-time All listed FROM clause run-time
option. Which of the given options are TRUE? MCQ result set. options as a run-time result set.
Please read the question carefully and choose the most appropriate
option. Statement 1: If a subquery is not dependent on the outer
query it is called a non-correlated subquery.

Statement 2: Subqueries cannot be used with the comparison Both


operators. statement 1
None of the Only Only and
Which of the above statements are TRUE? MCQ listed options statement 1 statement 2 statement 2
Please read the question carefully and choose the most appropriate
option. A query is called correlated subquery when both the inner
query and the outer query are interdependent.

State whether the above statement is TRUE or FALSE. MCQ false true
Please read the question carefully and choose the most appropriate
option. Statement 1: The SQL subquery is a SELECT query that is
embedded in the main SELECT statement.
Both
Statement 2: A subquery cannot return more than one rows statement 1
and None of the Only Only
Which of the above statements is TRUE? MCQ statement 2 listed options statement 2 statement 1
Carefully read the question and answer accordingly. The following Concurrent
s/w process model can be represented schematically as a series of All of the Incremental development Component
major technical activities and there associated sate MCQ listed options model model assembly
QA is done
by the client QC is a QA is a
and QC is higher activity higher activity
Both are done by the in the in the
Carefully read the question and answer accordingly. If Quality literally the software management management
Control and Quality Assurance are compared MCQ same vendor Hierarchy Hierarchy
Carefully read the question and answer accordingly. To produce a
good quality product, process should be MCQ None Rigorous Complex Efficient
Carefully read the question and answer accordingly. Software
processes can be constructed out of pre-existing software patterns to
best meet the needs of a software project. State True or False MCQ false true
Carefully read the question and answer accordingly. Who is Development
essentially responsible for the quality of a product MCQ Manager Customer QA Manager
Carefully read the question and answer accordingly. Data structure procedural architectural interface
suitable for the application is discussed in ? MCQ design design design data design
To decrease To decrease
Carefully read the question and answer accordingly. Using software the defect All of the To increase
development
process improvement model will help a company MCQ rate listed options profitability
time
Entity
Carefully read the question and answer accordingly. The object All of the Data flow relationship
relationship pair of data model is represented graphically by using MCQ listed options Flow chart diagram diagram
Carefully read the question and answer accordingly. Which one is the Efficiency Performance Risk Quality
most important feature of spiral model MCQ management Management Management management
do not waste eliminate the
development emphasize need for make
time on maneuverabil cumbersome extensive use
Carefully read the question and answer accordingly. Process models planning ity and documentatio of prototype
are described as agile because they MCQ activities adaptability n creation
Carefully read the question and answer accordingly. People who
perform software quality assurance must look at the software from
the customer's perspective. MCQ false true
Carefully read the question and answer accordingly. In software
quality assurance work there is no difference between software
verification and software validation. State True/False MCQ false true
Carefully read the question and answer accordingly.
Software is a product and can be manufactured using the same
technologies used for other engineering artifacts. State True or False MCQ true false
have are
measurable thoroughly have
specifications tested before are delivered complete
Carefully read the question and answer accordingly. A key concept of for process delivery to on time and documentatio
quality control is that all work products MCQ outputs the customer under budget n
Carefully read the question and answer accordingly. What are the All of the Inter
qualities of a good s/w MCQ Portability Reusability listed options Operability
prevent
profitable affect the
may result marketing of may cause reliability of a
Carefully read the question and answer accordingly. Software safety from user the final an entire software
is a quality assurance activity that focuses on hazards that MCQ input errors product system to fail component
Carefully read the question and answer accordingly. The goal of
quality assurance is to provide management with the data needed to
determine which software engineers are producing the most defects. MCQ false true
Carefully read the question and answer accordingly. Variation control product
in the context of software engineering involves controlling variation in process All of the resources quality
the MCQ applied listed options expended attributes
Software
Carefully read the question and answer accordingly. What is used to Process Quality Product None of the
measure the characteristics of the documentation and code MCQ metrics metrics metrics listed options
Carefully read the question and answer accordingly. The purpose of
software reviews is to uncover errors in work products so they can be
removed before moving on to the next phase of development. MCQ false true
attributes, operations
Carefully read the question and answer accordingly. In object name and None of the and names attributes and
oriented design of software , objects have MCQ operations listed options only names only
Carefully read the question and answer accordingly. Which of these
criteria are useful in assessing the effectiveness of a particular maintainabilit
design notation MCQ modularity size y simplicity
The primary Mainly used
output of the The modern at systems
Carefully read the question and answer accordingly. Which of the system version of specification All of the
following is the correct definition for DFD MCQ design phase flowchart stages listed options
Classes are
defined Objects
Carefully read the question and answer accordingly. Which of the based on the an object can classes are inherit the
following comments about object oriented design of software, is not attributes of belong to two always properties of
true MCQ objects classes different class
Parallel
Hardware Software hardware and No hardware
Carefully read the question and answer accordingly. In system design after design after software design
design, we do following MCQ software hardware design needed
Carefully read the question and answer accordingly. Which of these process
is a graphical notation for depicting procedural detail MCQ flowchart ER diagram decision table diagram
Carefully read the question and answer accordingly. The term Sub All of the
module in the design phase refers to MCQ programs Procedures listed options Functions
Carefully read the question and answer accordingly. Informational structured data
cohesion is a realization of MCQ programming Modularity Concurrency abstraction
size of the software
Carefully read the question and answer accordingly. The work product being size of the stakeholders process
products produced during requirement elicitation will vary MCQ built budget needs being used
Carefully read the question and answer accordingly. Object-oriented
analysis techniques can be used to identify and refine user task
objects and actions without any need to refer to the user voice. State
True/False MCQ true false
Carefully read the question and answer accordingly. Change cannot
be easily accommodated in most software systems, unless the
system was designed with change in mind. State True/False MCQ false true
Carefully read the question and answer accordingly. Software
Engineering is the systematic approach to the development,
operation, maintenance and retirement of software. This definition is Charles
given by_________ MCQ Bauer Boehm Babbage IEEE
Carefully read the question and answer accordingly. Which of the Manufacturin
items listed below is not one of the software engineering layers MCQ Tools g Methods Process
Carefully read the question and answer accordingly. Software
engineering umbrella activities are only applied during the initial
phases of software development projects. State True or False MCQ true false
Carefully read the question and answer accordingly. Which phase is Specification Installation &
not available in s/w life cycle MCQ Coding s Design Maintenance
Working
Mini model of model of Mini model of
Carefully read the question and answer accordingly. The Prototype is existing existing processed None of the
a MCQ system system system listed options
Something to
Neither fear but not
Carefully read the question and answer accordingly. Which of the intrinsically something to Probability of Inherent in
following is not Risk characteristic MCQ good not bad manage loss every project
Carefully read the question and answer accordingly. Management of All of the
software development is dependent upon MCQ People Process listed options Product
use a
send them to checklist of
the design examine the questions to have the
team and see system examine customer
Carefully read the question and answer accordingly. The best way to if they have model for each look over the
conduct a requirements validation review is to MCQ any concerns errors requirement requirements
Cost Reliable and
Carefully read the question and answer accordingly. Software Reliable None of the Effective cost effective
engineering aims at developing MCQ Software listed options Software Software
The
probability
that the
negative
event will
occur and
The potential The potential The
loss or loss or probability
impact impact that the
associated associated The potential negative
Carefully read the question and answer accordingly. Major with the with the loss is very event will
component of Risk Analysis are MCQ event event high occur
Know the Know the Know the
Carefully read the question and answer accordingly. Milestones are status of the cost of the user None of the
used to MCQ project project expectations listed options
Carefully read the question and answer accordingly. The review is All of the
one of the methods of V&V. The other methods are MCQ Walkthrough Inspection Testing listed options
Better Quality
Carefully read the question and answer accordingly. Software performance Reusable software
Engineering approach is used to achieve MCQ of h/w software Error free s/w product
Plan
resources for
Plan how and providing
by whom information
each on which to
acceptance base Prepare the
Carefully read the question and answer accordingly. Which is not the Prepare activity will be acceptance acceptance
responsibility of customer/ user of the software MCQ resource plan performed decisions plan
Carefully read the question and answer accordingly. A stakeholder is
anyone who will purchase the completed software system under
development. State True/False MCQ false true
Carefully read the question and answer accordingly. Project risk All of the
factor is considered in MCQ Water fall Spiral listed options Prototype
The best A useful
approach to approach A reasonable
use for A risky model when a approach
projects with that rarely customer when
large produces a cannot define requirements
Carefully read the question and answer accordingly. The prototyping development meaningful requirements are well
model of software development is MCQ teams product clearly defined
useful for needed to
used in place modeling model event
Carefully read the question and answer accordingly. required for of data flow real-time driven
Control flow diagrams are MCQ all systems. diagrams. systems. systems.
Relationship
The attributes that connect
Carefully read the question and answer accordingly. A data model All of the that describe data object to
consists of the following information MCQ listed options data object one another Data Object
Carefully read the question and answer accordingly. Which of
following is not a UML diagram used creating a system analysis Activity Class State Dataflow
model MCQ diagram diagram diagram diagram
Carefully read the question and answer accordingly. If requirements
are frequently changing, which model is best suited MCQ RAD Prototype Water fall Spiral
Carefully read the question and answer accordingly. The data flow
diagram must be augmented by descriptive text in order to
describe the functional requirements for a software product. State
True/False MCQ true false
The best A good
approach to approach A reasonable A
use for when a approach revolutionary
projects with working core when model that is
large product is requirements not used for
Carefully read the question and answer accordingly. The incremental development required are well commercial
model of software development is MCQ teams. quickly defined products
Capability
Carefully read the question and answer accordingly. Which is not a Maturity
software life cycle model MCQ Spiral Model Water fall Prototype
Carefully read the question and answer accordingly. If requirements
are understandable, easy, defined, which model is best suited MCQ Prototype None Water fall Spiral
indicates how indicates
depicts depicts data are system
functions that relationships transformed reactions to
Carefully read the question and answer accordingly. The entity transform the between data by the external
relationship diagram MCQ data flow objects system events
A single
software A test or
product that analysis
A quantitative may or may conducted
measure of not fully after an
the current support a application is
Carefully read the question and answer accordingly. What exactly level of business moved intoNone of the
Baseline means MCQ performance function productionlisted options
Carefully read the question and answer accordingly. Which of these software executableAll of the
are valid software configuration items? MCQ test data tools programs listed options
make sure allow revision
that change evaluate the of project
information is performance schedules
communicate of software and cost
d to all developers estimates by
Carefully read the question and answer accordingly. The primary affected and None of the project
purpose of configuration status reporting is to MCQ parties organizations
listed options managers
Carefully read the question and answer accordingly. When software quality
configuration management is a formal activity, the software senior development assurance testing
configuration audit is conducted by the MCQ managers team group specialists
Carefully read the question and answer accordingly. A new
__________ is defined when major changes have been made to one
or more configuration objects. MCQ item version entity variant
in object-
oriented the
programming identification
, the of the
management configuration
of objects of a system
that control at discrete
management the points in time
of the configuration to control overall
configurable of some other changes to management
Carefully read the question and answer accordingly. components function(s) in the of the design
What is configuration management in software engineering MCQ in a system the system configuration of the system
Carefully read the question and answer accordingly.
In requirements validation the requirements model is reviewed to
ensure its technical feasibility. State True/False MCQ false true
Carefully read the question and answer accordingly. A basic
configuration object is a __________ created by a software engineer All of the program data unit of a software
during some phase of the software development process. MCQ listed options structure information component
Carefully read the question and answer accordingly. The ability to
track relationships and changes to configuration objects is one of the
most important features of the SCM repository. MCQ true false
statistical
Carefully read the question and answer accordingly. Which of the change version quality
following tasks is not part of software configuration management? MCQ control control control reporting
0, 1959,
Please read the question carefully and choose the most appropriate 1959, 1960, 1960, 1961,
option. An input field takes the birth year of the user ranging from 1961, 1994, 1960, 1995, 1994, 1995,
1960 to 1995. The boundary values for testing this field are? MCQ 0,1960,1995 1995, 1996 1996 1996
Please read the question carefully and choose the most appropriate Non
option. Business Functional None of the functional
Test scenarios have to be written with the consideration of ? MCA rules standards listed options standards
Please read the question carefully and choose the most appropriate
option. State whether True or False.
Testers should be involved in reviewing documents as soon as drafts
are available in the development cycle. MCQ true false
Please read the question carefully and choose the most appropriate
option. Alternate flows can be tested by themselves (State Frue or
false) MCQ true false
Please read the question carefully and choose the most appropriate All the listed Test None of the
option. We derive _________ by using the test design techniques MCQ options Scenario Test case listed options
Please read the question carefully and choose the most appropriate
option. State whether True or False.
A use case can result into more than one scenario. MCQ true false
Test Test
condition Test Test Scenario
Please read the question carefully and choose the most appropriate defining Development Execution identification
option. Test data preparation data is done during _________ ? MCQ process process process process
Please read the question carefully and choose the most appropriate
option. For a given set of boundaries, how many boundary values are None of the
possible? MCQ 2 listed options 4 8
Please read the question carefully and choose the most appropriate
option.
Test Scenarios have case specific data assigned to them (State True
or False) MCQ true false
Test scenario Test cases
Test scenario Test case define the are
Please read the question carefully and choose the most appropriate involves the includes the setup to developed
option. expected steps to perform the from Test
Which of the following statements is/are true? MCA results. execute. tests conditions.
Please read the question carefully and choose the most appropriate
option. Test conditions can be valid or invalid (State True or False) MCQ false true
Please read the question carefully and choose the most appropriate
option. Build
Which of the below is not an activity involved in Test execution Test data Retesting of verification Test case
process? MCQ setup defects process execution
Please read the question carefully and choose the most appropriate
option. The conditions that need to be verified by the tester after the Post
activity is performed are called _________? MCQ Exceptions condition Pre condition Triggers
Please read the question carefully and choose the most appropriate
option. State whether True or False. Triage meeting is done before
fixing the defect. MCQ false true
A. Build the A. Review
compiled the code B.
code into Build the
software B. compiled
Add the code into
release notes software C.
C. Perform Perform
Smoke/ Smoke/
Please read the question carefully and choose the most appropriate Sanity Test Sanity Test
option. Which is the correct order to be followed for a Build D. Test D. Test
Verification Process? MCQ Execution Execution
Defferred,
Please read the question carefully and choose the most appropriate Open, Fixed, Open, Fixed,
option. A defect is found after retest. What are all the possible stages Reopen, Reopen, Reopen, Reopen,
this defect may undergo? MCQ Fixed, Closed Closed Fixed Closed
Develop and
prioritizing
test cases,
creating test Verifying that
data, writing the test
test environment
procedures has been set
and up correctly
optionally, and Checking Checking test
Verifying that preparing test test logs logs against
the test harness and against the the exit
Please read the question carefully and choose the most appropriate environment writing exit criteria criteria
option. Which is not a major task of test implementation and has been set automated specified in specified in
execution? MCQ up correctly test scripts test planning test planning
Please read the question carefully and choose the most appropriate
option. State whether True or False. Release notes are prepared by
developer/ development team. MCQ true false
Develop and
prioritizing
test cases, Logging the
creating test outcome of Verifying that
data, writing test the test
test execution environment
procedures and recording has been set
and the identities up correctly
optionally, and versions and Checking
preparing test of the Verifying that test logs
harness and software the test against the
Please read the question carefully and choose the most appropriate writing under test, environment exit criteria
option. Which is not a major task of test implementation and automated test tools and has been set specified in
execution? MCQ test scripts testware up correctly test planning
Please read the question carefully and choose the most appropriate
option.
What are the subsequent states that a new defect can undergo? MCA Closed Rejected Deferred Fixed
Please read the question carefully and choose the most appropriate
option. State whether True or False. Developer has to ensure that
the pre requisite of each test case are met. MCQ True false
Please read the question carefully and choose the most appropriate Execute next
option. Update test step of
What are the action items if an application does not behave as status of the same test
expected? MCA defect case Log defect Retest
Requirement
satisfaction
Usage of Proper and usage of
Please read the question carefully and choose the most appropriate Use of proper design causal best design
option. Software testing ensures which of the below? MCQ test approach architecture analysis architecture
Please read the question carefully and choose the most appropriate
option. Match the following.
A) Self review B) Formal review C) Informal review
1. Conducted by one or more peers in the team
2. Conducted by one or more reviewers or SME A - 3, B - 1, C A - 2, B - 1, C A - 2, B - 3, C A - 3, B - 2, C
3. Conducted by the author himself MCQ -2 -3 -1 -1
Please read the question carefully and choose the most appropriate
option. Review of Test case Artifact is done with the help of? MCQ Reviewer Self review Author Peer review
Please read the question carefully and choose the most appropriate
option.
In causal analysis which attributes among below assist in analyzing Requirement
the effect? MCA Failures Cause gathering Reason
Please read the question carefully and choose the most appropriate
option. State whether true or false. Selenium tools helps to develop
Automated test scripts MCQ true false
Helps to
Helps to identify
Please read the question carefully and choose the most appropriate provide a Helps completenes
option. reliable prevent the None of the s of the
Which of the statements is applicable to software testing? MCA system defects listed options software
Please read the question carefully and choose the most appropriate Test None of the Test Test
option. Test environment check up is part of _________ . MCQ Execution listed options Scenario Development
Developers
tend to
neglect test Less
Please read the question carefully and choose the most appropriate approach to knowledge
option. the on Lack of
What are the possible causes for ending up into 0.1 % defective developed Defective development domain
application? MCA product. code language knowledge
Requirement Requirement
Analysis - Analysis -
Test Planning Test Planning
Design and Design and
Requirement Code - Unit Code - Test
Analysis - Testing Design
Test Planning Testing - Testing -
Design and Component Component
Code - Test Integration Integration
Please read the question carefully and choose the most appropriate Design testing and testing and
option. Which of the following map the corresponding phases from Testing - Unit None of the System System
SDLC with STLC. MCQ Testing listed options testing testing
Please read the question carefully and choose the most appropriate
option. State whether true or false. QC is used for logging the
outcome of the test execution. MCQ false true

You might also like