More Classes
5th Class
6th Class
7th Class
8th Class
9th Class
10th Class
11th Class
12th Class
NAT I
NAT II
CSS
IQ
General Knowledge
MDCAT
ECAT
GAT General
GAT Subject
Other Links
Go to Home
Online Tests
CS-504 Final Term Exams Preparation Virtual University MCQs With Answers
Question # 1
Software Bugs have multiple names, Which one of the below is not the name of Software Bugs -------------
Choose an answer
Bugs
Defects
Errors
Mistakes
Previous
Skip
Next
Question # 2
Insufficient user involvement leads to ------------- products.
Choose an answer
unacceptable
ambigious
dissatisfaction of customer to
non of the above
Previous
Skip
Next
Question # 3
A complex System evolves from a
Choose an answer
smaller system
medium system
bigger system
non of the given
Previous
Skip
Next
Question # 4
Bugs Fixing is done by which of the teams in Software Development life cycle?
Choose an answer
Development Team
Testing Team
Analysis & Design Team
Process Team
Previous
Skip
Next
Question # 5
Dynamic components of an OOA model are __________
Choose an answer
not reusable
sensitive to timing and event processing
stable throughout the operational life of an application
structural in nature
Previous
Skip
Next
Question # 6
What would be the most suitable architecture to develop a commercial web page to do business transactions over the internet?
Choose an answer
Client server model
Island model
RAD model
Repository model
Previous
Skip
Next
Question # 7
Comparison testing is typically done to test two competing products as part of customer market analysis prior to product release.
Choose an answer
True
False
None of them
Previous
Skip
Next
Question # 8
A -------------- is a code that explains itself without the need of comments and extraneous documentation
Choose an answer
Self documenting code
Self telling Code
Self Documenting Design
Non of the above
Previous
Skip
Next
Question # 9
The criteria used to assess the quality of an architectural design should be based on system
Choose an answer
accessibility and reliability
data and control
functionality
implementation details
Previous
Skip
Next
Question # 10
A class is a -------------- of objects
Choose an answer
Template
Stereotype
Collection
Non of the above
Previous
Skip
Next
Question # 11
The code becomes self explanatory with the help of proper use of parentheses. Select the right one.
Choose an answer
leapYear = year % 4 == 0 && year % 100 != 0 || year % 400 == 0 ;
leapYear = ((year % 4 == 0) && (year % 100 != 0) || ((year % 400 == 0));
leapYear = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
leapYear = (year % 4 == 0) && (year % 100 != 0) || (year % 400 == 0);
none of the given options
Previous
Skip
Next
Back