NOCTI Computer Programming

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/34

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

35 Terms

1
New cards

A typical non-fuctional user requirement is/are

C. The resources needed to maintain the system

2
New cards

The following programming flowchart symbol is a/an _____ symbol

C. Decision

3
New cards

One of the main goals in analyzing user requirements is to

D. Elicit requirements from a user's point of view

4
New cards

Which of the following flowchart symbols indicates a question or branch in the process flow

B. Decision

5
New cards

If a record has the following field lengths. what is the record length: Name = 35, Zip Code=5, and District=7

B. 47

6
New cards

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

A. Delimited

7
New cards

The source document and ________ should follow the same order

A. Input screen design

8
New cards

The implementation phase consist of coding, testing , and

D. Integration

9
New cards

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

A. First

10
New cards

Coding is the ______ step in a writing a computer program .

C. Third

11
New cards

One example of scripting (text processing) language is

Perl

12
New cards

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

C. SQL

13
New cards

Which of the following is a correct name for a variable?

A. State_Zipcode

14
New cards

A type of variable that contains text, such as names or titles, is called

A. String

15
New cards

An example of loop structure is

A. DO UNTIL

16
New cards

Why is the following expression invalid ? A=10 + "New Data"

B. Data types are mixed

17
New cards

An example of an integer variable is

C. 37

18
New cards

When TEXT1.VALUE= "March 7", TEXT1_LEN=

Sub Form_Click()

IN = TEXT1.VALUE

TEXT1_len = LEN$(IN)

For I = TEXT_len to 1 step -1

TEMP = TEMP & mid (in,I,1)

NEXT

OUT =TEMP & right (in, text_len -n)

A. 7

19
New cards

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

B. following statement to be executed 11 times

20
New cards

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?

D. Boundary

21
New cards

An output field has "Los Angeles moved to hit and when examined contains "Los Angel". This indicates a/an ____ error.

C. Truncation

22
New cards

Which of the following errors is caused by a calculation error?

B. Arithmetic

23
New cards

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

D. Script

24
New cards

Compile errors can be caused by which of the following?

A. Bad Syntax

25
New cards

Maintenance refers to changes to a system in operating arising from error corrections, performance improvements, changes in the business environment

A.Enhancements in functions

26
New cards

The___ document lays out the general requirements that when changed, motivate the existence and purpose of a given code set

B. Design

27
New cards

The Following programming flowchart symbol is a/an

Input/Output

28
New cards

When writing program user documentation,

D. use language that is clear and at the level of the end user

29
New cards

One method of ensuring that updates to documentation are efficiently distributed is to

make changes in an online help system rather than printed sources

30
New cards

All computer instructions are based on four logic patterns. These patterns are simple sequence, selection, loop, and

D. Branch

31
New cards

Which of the following uses three basic control structures to form highly structured units of code?

A. Structured programing

32
New cards

If the memory speed of the bus is 750Mhz, and the CPU is operating at twice the speed of the bus, what is the processor speed?

C.375 Mhz

33
New cards

Two types of programs that create machine codes are the interpreter and the

C. Compiler

34
New cards

In the order of calculations in a program

B. parentheses precede exponentiation

35
New cards

When the code below is executed, strAdd will be equal to

strFirst= "123"

strSecond="456"

strAdd = strFirst + strSecond

C. 123456