NEW
Font size
WorksheetsCooperKing NOCTI Quiz
Total questions: 30
Worksheet time: 15mins
This defines specific behaviors or functions?;
Functional Requirement
Non-Functional Requirement
Decision
Delimited
In Programming interface data files, if the length of the fields is not known, a common format for the data is?
Flowchart
Commas
Delimited
Decision
Delimited fields are separated by?
Semi-Colon
Commas
Period
asterisk
Flowcharts: A diamond indicates?
Process
Input/Output
Start/End
Decision
Flowcharts: A rectangle indicates?
Decision-Making
Process
Input/Output
Start/End
Flowcharts: A slanted parallelogram indicates?
Start or End
Input or Output
Decision
Process
The source document and _____ should follow the same order?
Process
Input Screen Design
Output Screen Design
Decision
The implementation phase consists of coding, testing, and _____?
Deployment
Planning
Integration
Testing
The order of the SDLC is _____?
Design, Implementation, Testing, Evolution, Requirement Analysis
Implementation, Testing, Design, Evolution, Requirement Analysis
Testing, Design, Evolution, Requirement Analysis, Implementation
Requirement Analysis, Testing, Evolution, Implementation, Design
Reviewing specifications is the ____ step in writing a computer program.
Second
Third
Fourth
First
Coding is the _____ step in writing a computer program?
Third
Second
First
Fourth
One example of scripting (text processing) language is?
C
Perl
C++
Haskell
Which of the following enables the use of "plain English" queries?
Perl
C
SQL
C++
What is a correct name for a variable?
State_Zipcode
StateZipcode
state_zipcode
statezipcode
What is an incorrect name for a variable?
State_Zipcode
State+Zipcode
state+zipcode
state_zipcode
What type of variable contains text?
String
Boolean
Int
Float
An example of String is ____?
'a' or 'B'
123 or -123
"Hello World"
19.99 or -19.99
What type of variable contains basic integer data?
String
Float
Char
Integer
An example of an Integer?
95
"Hello"
19.99
'a' or 'B'
What type of variable is heavily related to the 'true' and 'false' denominations of data?
Char
Boolean
Float
String
An example of a Boolean is ____?
19.99
"Hello"
123
Status = True
An example of loop structure is _________?
While Loops
Do-while Loops
Do Until
For Loops
What type of variable is unrounded and uses values like "2.7" and "5.6"?
Double
Float
Boolean
Short
An example of a Double?
True
3.756949293
-32,768
'D'
Why is the following expression invalid?
A = 10 + "New Data"
Data types are mixed
No semicolon
No parenthesis
Expression is Valid
An example of an integer variable is ____?
5.99
-37
true
"Hello"
The following BASIC control statement FOR X = 25 TO 35 will cause the ____?
Following statement to be executed 60 times
Following statement to be executed 11 times
Following statement to be executed 25 times
Following statement to be executed 35 times
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?
Syntax
Boundary
Logical
Semantic
An output field has "Los Angeles" moved to it and when examined contains "Los Angel", this indicates which error?
concatenation
Semantics
Truncation
Logical
Which of the following consists of a sequence of events to follow so they can be repeated?
Loop
Repeat/Until Block Loops
For
Script
