wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

CooperKing NOCTI Quiz

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

This defines specific behaviors or functions?;

a)

Functional Requirement

b)

Non-Functional Requirement

c)

Decision

d)

Delimited

2.

In Programming interface data files, if the length of the fields is not known, a common format for the data is?

a)

Flowchart

b)

Commas

c)

Delimited

d)

Decision

3.

Delimited fields are separated by?

a)

Semi-Colon

b)

Commas

c)

Period

d)

asterisk

4.

Flowcharts: A diamond indicates?

a)

Process

b)

Input/Output

c)

Start/End

d)

Decision

5.

Flowcharts: A rectangle indicates?

a)

Decision-Making

b)

Process

c)

Input/Output

d)

Start/End

6.

Flowcharts: A slanted parallelogram indicates?

a)

Start or End

b)

Input or Output

c)

Decision

d)

Process

7.

The source document and _____ should follow the same order?

a)

Process

b)

Input Screen Design

c)

Output Screen Design

d)

Decision

8.

The implementation phase consists of coding, testing, and _____?

a)

Deployment

b)

Planning

c)

Integration

d)

Testing

9.

The order of the SDLC is _____?

a)

Design, Implementation, Testing, Evolution, Requirement Analysis

b)

Implementation, Testing, Design, Evolution, Requirement Analysis

c)

Testing, Design, Evolution, Requirement Analysis, Implementation

d)

Requirement Analysis, Testing, Evolution, Implementation, Design

10.

Reviewing specifications is the ____ step in writing a computer program.

a)

Second

b)

Third

c)

Fourth

d)

First

11.

Coding is the _____ step in writing a computer program?

a)

Third

b)

Second

c)

First

d)

Fourth

12.

One example of scripting (text processing) language is?

a)

C

b)

Perl

c)

C++

d)

Haskell

13.

Which of the following enables the use of "plain English" queries?

a)

Perl

b)

C

c)

SQL

d)

C++

14.

What is a correct name for a variable?

a)

State_Zipcode

b)

StateZipcode

c)

state_zipcode

d)

statezipcode

15.

What is an incorrect name for a variable?

a)

State_Zipcode

b)

State+Zipcode

c)

state+zipcode

d)

state_zipcode

16.

What type of variable contains text?

a)

String

b)

Boolean

c)

Int

d)

Float

17.

An example of String is ____?

a)

'a' or 'B'

b)

123 or -123

c)

"Hello World"

d)

19.99 or -19.99

18.

What type of variable contains basic integer data?

a)

String

b)

Float

c)

Char

d)

Integer

19.

An example of an Integer?

a)

95

b)

"Hello"

c)

19.99

d)

'a' or 'B'

20.

What type of variable is heavily related to the 'true' and 'false' denominations of data?

a)

Char

b)

Boolean

c)

Float

d)

String

21.

An example of a Boolean is ____?

a)

19.99

b)

"Hello"

c)

123

d)

Status = True

22.

An example of loop structure is _________?

a)

While Loops

b)

Do-while Loops

c)

Do Until

d)

For Loops

23.

What type of variable is unrounded and uses values like "2.7" and "5.6"?

a)

Double

b)

Float

c)

Boolean

d)

Short

24.

An example of a Double?

a)

True

b)

3.756949293

c)

-32,768

d)

'D'

25.

Why is the following expression invalid?


A = 10 + "New Data"

a)

Data types are mixed

b)

No semicolon

c)

No parenthesis

d)

Expression is Valid

26.

An example of an integer variable is ____?

a)

5.99

b)

-37

c)

true

d)

"Hello"

27.

The following BASIC control statement FOR X = 25 TO 35 will cause the ____?

a)

Following statement to be executed 60 times

b)

Following statement to be executed 11 times

c)

Following statement to be executed 25 times

d)

Following statement to be executed 35 times

28.

A data element is intended to contain a range from 15 to 30 and after testing it contains 32. What kind of error is this?

a)

Syntax

b)

Boundary

c)

Logical

d)

Semantic

29.

An output field has "Los Angeles" moved to it and when examined contains "Los Angel", this indicates which error?

a)

concatenation

b)

Semantics

c)

Truncation

d)

Logical

30.

Which of the following consists of a sequence of events to follow so they can be repeated?

a)

Loop

b)

Repeat/Until Block Loops

c)

For

d)

Script