Lesson 1: Octave (GUI) Flashcards

1
Q

________________ is a high-level programming language primarily intended for scientific computing and numerical computation.

A

GNU Octave

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

____________ helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with MATLAB.

A

Octave

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

It may also be used as a batch-oriented language. As part of the GNU Project, it is free software under the terms of the GNU General Public License

A

GNU Octave

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Octave is written in _____ using the C++ standard library

A

C++

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Octave includes a ____________________________ in addition to the traditional Command Line Interface (CLI)

A

Graphical User Interface (GUI)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The ________________ is an interpreted programming language. It is a structured programming language (similar to C) and supports many common C standard library functions, and also certain UNIX system calls and functions.

A

Octave language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Octave Windows

Main Window, enters variables, runs program

A

Command Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Octave Windows

Contains output from graphic commands.

A

Figure Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Octave Windows

Creates and delays script and function files.

A

Editor Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Octave Windows

Provides help info.

A

Help Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Octave Windows

Logs commands entered in the command window.

A

Command History Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Octave Windows

Provides information about the variables used.

A

Workspace Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Octave Windows

Shows the files in the current folder.

A

Current Folder Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Rules About Variable Names

It must begin with a letter

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Rules About Variable Names

Can be up to 63 characters.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Rules About Variable Names

Can contains letters, digits, underscore.

17
Q

Rules About Variable Names

Cannot contain punctuation characters (period, comma, semicolon)

18
Q

Rules About Variable Names

MATLAB is case sensitive: it distinguishes uppercase and lowercase letters

19
Q

Rules About Variable Names

No spaces are allowed between characters (use underscore where space is desired).

20
Q

Rules About Variable Names

Avoid using the name of built-in function for a variable (using cos, sin, exp, sqrt)