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
Identifying Whole-Part structures (Aggregations) means what are my ----------------
Choose an answer
Components
Structures
Objecs
Classes
Previous
Skip
Next
Question # 2
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 # 3
Patterns are devices that allow programs to share knowledge about their -------------.
Choose an answer
Design
Code
Analysis
Non of the all
Previous
Skip
Next
Question # 4
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 # 5
It is not possible to use ordinary data flow diagrams to model the functional requirements of real-time systems
Choose an answer
True
False
Not Sure
Previous
Skip
Next
Question # 6
Unit testing is roughly equivalent to ---------- testing for hardware in which each chip is tested thoroughly after manufacturing
Choose an answer
Circuit level
Chip Level
component level
system level
Previous
Skip
Next
Question # 7
A change becomes ------------- because of close presence of data and functions
Choose an answer
Localized
Private
Global
Accessible
Previous
Skip
Next
Question # 8
In transaction mapping the first level factoring results in the______________
Choose an answer
creation of a CFD
derivation of the control hierarchy
distribution of worker modules
refinement of the module view
Previous
Skip
Next
Question # 9
A useful technique for evaluating the overall complexity of a proposed architecture is to look at the component
Choose an answer
number and size of components
flow dependencies and sharing dependencies
size and cost
none of the given
Previous
Skip
Next
Question # 10
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 # 11
Interaction Diagrams depict the ------------- Behavior of the system
Choose an answer
Static
Dynamic
Active
Non of the above
Previous
Skip
Next
Back