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
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
None of the given
Previous
Skip
Next
Question # 2
Following are some statements associated with data flow diagrams. Identify the correct statement from among them.
Choose an answer
DFDs are used to model complex interfaces.
DFDs are used to represent only functional processing, data stores and data movements between functions
DFDs depict only processes which can be decomposed
DFDs do not show external data sources and external data sinks
Previous
Skip
Next
Question # 3
A system ------------- is the period in which tremendous pressure is on developers end to fix the problem and make the system running again
Choose an answer
Uptime
Downtime
Currentime
futuretime
Previous
Skip
Next
Question # 4
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 # 5
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
Question # 6
Floating point constants should always be written with decimal point and at least
Choose an answer
one decimal
two decimal
three decimal
none of the given
Previous
Skip
Next
Question # 7
If you are initializing a variable at the time of declaration, do not declare another ----------- in the same statement.
Choose an answer
variable
object
Class
None of given
Previous
Skip
Next
Question # 8
Bugs Finding is done by which of the teams in Software Development lifecycle?
Choose an answer
Development Team
Testing Team
Analysis & Design Team
Process Team
Previous
Skip
Next
Question # 9
Cohesion is about making sure each component does _____ thing and does it well.
Choose an answer
three
two
infinite
one
Previous
Skip
Next
Question # 10
Stakeholders are different people who would be interested in the -----------
Choose an answer
Software
System
Product
All of the given
Previous
Skip
Next
Question # 11
MVC stands for ---------------
Choose an answer
Model View Controller
Modern View Center
Model View Center
Modern View Controller
Previous
Skip
Next
Back