Sie sind auf Seite 1von 17

1

All of the following statements are true, EXCEPT:


You can make a Cluster of Clusters.

You can make an Array of Arrays.

You can make a Cluster of Arrays.

You can make an Array of Clusters.

All of the above statements are true.

What is the result in New String after the following code has executed?

hello world!

hELLO wORLD!

HELLO WORLD!

hello world1

3 Which of the methods illustrated below will terminate the While Loop when an error occurs?

A
B
C

I
II
III

Option I

Option II

Option III

Option IV

D
E
F

B
C
D

B
C
D

6
8
16
32

Printing Palette
Functions Palette
Controls Palette
Tools Palette

You may associate the Connector Pane of a VI with objects from the:

A
B
C
D

III & IV

Right clicking on the Block Diagram will cause which palette to display?

I & II

What is the value in Feedback Answer after the following code has executed?

IV

Front Panel.
Block Diagram.
Both A. and B.
None of the above.

Which of the following is a required terminal connection for the Append Table to Report VI shown
below?

A
B
C
D

column width (1)


row headers
report in

A custom probe is created by:

A
B
C
D

column headers

double clicking on a normal probe.


placing a property node onto the block diagram and selecting Custom Probe from the Properties
menu.
placing a custom probe from the Probe subpalette onto the Block Diagram.
right clicking on a wire and selecting Custom Probe from the shortcut menu.

What is the result in New Array after the following code has executed?

a 1-D Array of {4, 7, -3, 3, -2, 0, 0}

a 1-D Array of {4, 7, -3, 3, -2}

a 1-D Array of {4, 7, -3, 3, -2, 4, 7}

None of the above

10 What is the result in Output Array after the following code has executed?

a 1-D Array of {4, 3, 0}

a 1-D Array of {2, 4}

a 1-D Array of {2, 5, 1}

a 1-D Array of {5, 3}

11 What is the data type of the Indicator that will be present at the Index Array output after the following
code has executed?

A
B
C
D

Integer (I32)
Array of Integers (I32)
Double
Array of Doubles

12 DAQmx channels and virtual channels are a collection of property settings that include all of the
following, EXCEPT:

A
B
C
D

type of measurement.
base I/O address.
physical channel.
scaling information.

13 The DAQ Assistant can perform all of the following operations, EXCEPT:

A
B
C

Frequency Measurement.
Arbitrary Waveform Generation.
Digital Input.

Analog Input.

14 All of the following are traditional debugging features used to help find errors in a VI, EXCEPT:

A
B
C
D

Single Stepping.
Stop Values.
Breakpoints.
Highlight Execution.

15 Which of the following statements is true?

A
B
C
D

The default setting for a tunnel into or out of a For Loop has auto-indexing enabled if the data
being passed is an array.
The default setting for a tunnel into or out of a While Loop has auto-indexing disabled if the data
being passed is an array.
Both A. and B.
None of the above.

16 All of the following statements regarding SubVIs are true, EXCEPT:

A
B
C
D

They require less memory.


They allow for easier debugging.
They allow you to use the same code for many future applications.
All of the above statements are true.

17 You can create a 1-D Array using any of the following methods, EXCEPT:

A
B
C
D
E

Place an Array Shell on the Front Panel and drag a Control into the shell.
Wire a 1-D Array to the Index Array function and specify an index.
Use a single For Loop with auto-indexing enabled.
Right-click on an existing 2-D Array on the Front Panel and select Remove Dimension.
All of the above are ways to create a 1-D Array.

18 Which of the following statements is true regarding the execution of the following code?

A
B
C
D
E

The string "Hello World" will be written into a new file named by the user.
If the user selects an already existing file, the old data will be overwritten by the new data.
If the user selects an already existing file, the VI will produce an error and stop execution.
Both A. and C.
Both A. and B.

19 Which combination of words correctly completes the following statement?


Unlike _____, which display only the most recent array of values written to them, _____ update
periodically and maintain a history of the past data.

A
B
C
D

graphs; charts
charts; plots
plots; graphs
None of the above

20 What is the value in X after the following code has executed?

A
B
C
D

9
10
11
None of the above

21 Which of the following statements about the Connector Pane is true?

A
B
C
D

It only shows terminals available for transfer to the SubVI.


It only shows terminals available for transfer from the SubVI.
Outputs must be placed on the left, and inputs must be placed on the right.
None of the above.

22 If Number equals -49, then what is the result in Square Root Value after the following code has
executed?

A
B
C
D

-7
An error will occur and the code will not execute because Number is negative.
-99999, and a dialog box with an error message will display
7

23 Which of the following statements is true regarding the code in the loop shown below?

The loop will execute once and the iteration terminal,

The loop will not execute and the iteration terminal,

, will output a value of 1.


, will return a null value.

The loop will execute infinitely and the program will have to be aborted.

The loop will execute once and the iteration terminal,

, will output a value of 0.

24 Which chart update mode plots new data from left to right, then clears the chart and plots the newer
data?

A
B
C
D

Step Chart
Sweep Chart
Scope Chart
Strip Chart

25 What are the results in max value and max index(es) respectively, after the following code has
executed?

A
B
C
D

7, 4
6, 0
1, 5
7, 3

26 In the figure below, item G is a(n):

Shift register

B
C
D

Selector terminal
Iteration terminal
Tunnel

27 Description and help information for a VI may be placed:

A
B
C
D

on the Block Diagram or Front Panel.


in File VI Properties Documentation.
Both A. and B.
None of the above

28 Which of the following Block Diagrams could produce this result in Waveform Graph?

29 What is the value in Result after the following code has executed?

A
B
C
D

VOLTS DC +2
50
250
VOLTS DC +2.

30 The main disadvantage(s) of using the VI architecture shown below is:

A
B
C
D

there is no way of shutting down the VI during execution.


you cannot use wires to pass data between case structures.
the block diagram can become very large and hard to read, edit, and debug.
All of the above

31 All of the following statements regarding the index of Arrays are true, EXCEPT:

A
B
C
D

The index is used to access a particular element of an Array.


The index ranges from 1 to n, where n is the number of elements in the Array.
A 2-D Array has both a column index and a row index.
All of the above statements are true.

32 VI Templates reduce programming time by:

A
B
C
D
E

providing a starting point for several common VI types.


automatically generating code for the user.
allowing the user to save portions of their own code for use in later applications.
Both A. and B.
Both A. and C.

33 Clicking in which areas on the following figure allows you to move the cursor on the plot?

A
B
C
D

B&D
A&C
C&D
A&D

34 Which of the following will allow you to have multiple plots on a Waveform Graph?

A
B
C
D
E

Bundle two 1D arrays of X and Y data together for each plot. Then build an array of these clusters
and wire it to the Waveform Graph indicator.
Build an n-dimensional array of data with each plot in a separate row (or column) in the array, then
wire the array to the Waveform Graph indicator.
Bundle the elements of each waveform into a cluster and build an array of these clusters, then
wire the array to the Waveform Graph indicator.
Both B. and C.
Both A. and C.

35 Which of the following could generate the following Waveform Graph?

36 To operate a series of frames in a set order you would use a(n):

A
B
C
D

Event Structure.
Case Structure.
Formula Node.
Sequence Structure.

37 Which of the following statements is not true regarding the figure below?

A
B
C
D
E

It is not necessary to wire the count (N) terminal because auto-indexing is enabled.
Elements of Input Array enter the loop one at a time.
Output Array is the same size as Input Array.
If you disable auto-indexing on the right side of the For Loop, the output is still a 1-D Array.
All of the above statements are true

38 In the figure below, the value at item G during the fourth iteration is:

A
B
C
D

5
2
4
3

39 Which of the following could have produced this Waveform Chart?

40 For best performance when programming a sequence of functions or calculations, you should use a:

A
B
C

Stacked Sequence structure.


Flat Sequence structure.
Both A. and B. have the same performance.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

B
A
F
C
B
A
D
D
B
A
C
B
B
C
C
B
B
D
A
C

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40

D
C
D
C
D
D
C
D
B
C
B
E
A
E
A
D
D
B
D
A

Das könnte Ihnen auch gefallen