wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

MindSpace Computers Quiz

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

Which are the TWO models in Modelling Phase of SDLC?

a)

Analysis Model

b)

Design Model

c)

Flow Model

d)

Time-Line (Gantt) Model

2.

Analysis Model focus on?

a)

WHAT is customer requirements?

b)

HOW to build the software?

c)

Both of the given

d)

None of the given

3.

Design Model focus on?

a)

WHAT is customer requirements?

b)

HOW to build the software?

c)

Both of the given

d)

None of the given

4.

DFD stands for?

a)

Data Flow Diagram

b)

Data Feed Diagram

c)

Data Fill Diagram

d)

Data Flow Diagnosis

5.

DFD comes under?

a)

Analysis Model

b)

Design Model

6.

Modelling phase is?

a)

Diagrammatic (pictorial) representation of the system

b)

Textual representation of the system

c)

Tabular representation of the system

d)

None of the given

7.

Which of the following correctly find greatest of 2 numbers using Conditional Operator?

a)

max = (a>b) ? a : b

b)

max = (a<b) ? a : b

c)

max = (a>b) : a ? b

d)

max = (a>b) ? b : a

8.

Which of the following correctly find greatest of 3 numbers using Conditional Operator?

a)

max=(a>b) ? (a>c ? a:c) : (b>c ? b:c)

b)

max=(a>b) ? (b>c ? b:c) : (a>c ? a:c)

c)

max=(a>b) : (a>c ? a:c) : (b>c ? b:c)

9.

Command line arguments by default accepts value in?

a)

String

b)

int

c)

float

d)

boolean

10.

Which is a correct way on input one int value from command line argument?

a)

var=Integer.parseInt(args[0])

b)

var=Integer.parseInt(args[1])

c)

var=parseInt(args[0])

d)

var=Integer.parse(args[0])