Font size
WorksheetsMindSpace Computers Quiz
Total questions: 10
Worksheet time: 6mins
Which are the TWO models in Modelling Phase of SDLC?
Analysis Model
Design Model
Flow Model
Time-Line (Gantt) Model
Analysis Model focus on?
WHAT is customer requirements?
HOW to build the software?
Both of the given
None of the given
Design Model focus on?
WHAT is customer requirements?
HOW to build the software?
Both of the given
None of the given
DFD stands for?
Data Flow Diagram
Data Feed Diagram
Data Fill Diagram
Data Flow Diagnosis
DFD comes under?
Analysis Model
Design Model
Modelling phase is?
Diagrammatic (pictorial) representation of the system
Textual representation of the system
Tabular representation of the system
None of the given
Which of the following correctly find greatest of 2 numbers using Conditional Operator?
max = (a>b) ? a : b
max = (a<b) ? a : b
max = (a>b) : a ? b
max = (a>b) ? b : a
Which of the following correctly find greatest of 3 numbers using Conditional Operator?
max=(a>b) ? (a>c ? a:c) : (b>c ? b:c)
max=(a>b) ? (b>c ? b:c) : (a>c ? a:c)
max=(a>b) : (a>c ? a:c) : (b>c ? b:c)
Command line arguments by default accepts value in?
String
int
float
boolean
Which is a correct way on input one int value from command line argument?
var=Integer.parseInt(args[0])
var=Integer.parseInt(args[1])
var=parseInt(args[0])
var=Integer.parse(args[0])
