Developing Software: Introduction Flashcards

1
Q

What is a boolean data type used for?

A

Boolean data type is used to store a true or false value

it is used to store the result of equations which use relational operators == , != , > , < , >= , <=.

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

Name the three types of errors!

A

Syntax Errors
Logical Errors
Runtime Errors

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

What is a Syntax error?

A

Syntax errors: Syntax errors represent grammar errors in the use of the programming language.
Examples:
Misspelled variable and function names
Missing semicolons

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

What is a Logical error?

A

Logical errors: A statement with logical error may produce unexpected and wrong results in the program. Logic errors are the hardest to find and fix.
Examples:
Multiplying when you should be dividing
Displaying the wrong message

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

What is a Runtime error?

A

Runtime errors A type of error that occurs during the execution of a program is known as run-time error
Trying to divide by a variable that contains a value of zero
Trying to open a file that does not exist

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

What is the objective of testing?

A

Executing a program with the intent of finding errors/faults.
To check if the system meets the requirements and be executed successfully in the Intended environment.
To check if the system is “ Fit for purpose”.

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

Name some good programming practice

A

Proper naming conventions - camel case and using underscores
Aligning matching curly brackets together in a straight line.
Indentation and White Space
Internal Commentary - clarifying complex code for idiots, locations - top of file ( author, date, when it was edited and how etc ), above methods, above complex code.
Indentations
Following companies style guide

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

Why should you bother with good coding practice?

A

To make it look fabulous af
Also programmers build on top of each others code all the time, more time is spent on maintenance than writing new code. You shouldn’t waste time deciphering what a method does, just read its comment.

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

What is a variable?

A

Holds data/information while the program is running

These storage locations can be referred to by their names

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

What are the properties of a variable?

A

Name - reference to the location -cannot be changed
Value - the information that is stored - can be changed during program execution, hence the name “variable”
Data Type - the type of information that can be stored - cannot be changed

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

What is a global variable?

A

Global variable
Can be read or changed from any task or function in your code.
Its value can be seen/read globally.

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

What is a local variable?

A

Local variable
Belongs only to the task or function in which it was created
Value can only be read or changed from within that task or function
Value can only be seen/read locally
Generally the type of variable you’ll want to use

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

What is the scope of a variable ?

A

Variables can have either a “global” or a “local” scope.
This relates to how and by what the variable is able to be used by.
Global variables can be used/accessed/changed anywhere in the program.
Local variables can only be used/accessed/changed within the method in which they were created in.

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

What is the size and range of the byte data type?

A

8 Bits

-128 to 127

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

What is the size and range of the short data type?

A

16 Bits

-32,768 to 32,767

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

What is the size and range of the int data type?

A

32 bits
-2,147,483,648 to 2,147,483,647
aka 2 to the 32 minus 1
(this value is split in half by the negative and positive side equally)

17
Q

What is the size and range of the long data type?

A
64 bits	
-9,223,372,036,854,775,808
to
9,223,372,036,854,775,807
fuck remembering that shit
aka 2 to the power of 64 minus 1.
(this value is split in half by the negative and positive side equally)