Fundamentals Flashcards

1
Q

What does syntax refer to?

A

Refers to how the vocabulary of a language can be used to form statements

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

What does semantics refer to?

A

Defines the meaning of statements

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

What is stepwise refinement?

A

When you go through the algorithm and refine the code

Makes it more concrete

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

Name primitive data types

8 types

A
  • Byte
  • Short
  • Int
  • Long
  • Float
  • Double
  • Chat
  • Boolean
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you declare the constant:
int age = 34;

A

final int age = 34;

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

Describe the difference between / and %

A
  • / means divide
  • % returns the modulus

modulus = remainder

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

How is a if / if-else layed out?

A

if ( condition )
statement1;
else
statement2;

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

What is a nested statement?

A

A statement within a statement

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

What is the order of precedence?

A

()
* / %
+ -
!
&&
||

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

What is printed if P is the input?

System.out.print (“Enter a grade (A - E): “);
char grade = Console.getChar();
switch (grade) {
case ‘E’: System.out.print (“V. Poor. “);
case ‘D’: System.out.println (“See the lecturer.”);
break;
case ‘C’: System.out.println (“Could do better.”);
break;
case ‘B’: System.out.println (“Good result.”);
break;
case ‘A’: System.out.println (“Excellent.”);
break;
default: System.out.println (“invalid!”);
}

A

Invalid

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

Name 3 data conversions

A

Assignment conversion
Arithmetic promotion
Casting

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

Describe assignment conversion

A

When you widen a variable type to fit in another

Only can be widened, not the other way

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

What data conversion is this:
byte b = 29;
int i = b;

A

Assignment converion

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

What type of data converstion happens automatically?

A

Arithmetic promotion

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

What data conversion is this:
int i = 34;
double x = i / 1.2

A

Arithmetic promotion

int 34 is promoted to double 34.0

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

In arithmetic promotion

When is the other operand promoted to double?

A

When the other operand is double

17
Q

In arithmetic promotion

When is the other operand promoted to int

A

When both operands are less than an int

18
Q

In arithmetic promotion

When is the other operand promoted to float?

A

When one operand is a double & the other isn’t a double

19
Q

In arithmetic promotion

When is the other operand promoted to long

A

When one operand is long & the other isnt double | float

20
Q

In casting

How do we change:
int total = 34, count = 6;
float result = total / count;
so that total & count are float?

A

float result = (float)total / (float)count;

Put the wanted type in (…) & then the variable follows

21
Q

What are the names for:
1. ++count
2. count++

A

Increment Operators
1. Prefix
2. Postfix

22
Q

What are the names for:
1. –count
2. count–

A

Dencrement Operators
1. Prefix
2. Postfix

23
Q

What is result?
What is count?
int count = 5;
int result = count++;

A

Result = 5
Count = 6

result = count
count + 1

24
Q

What is result?
What is count?
int count = 5;
int result = ++count;

A

Result = 6
Count = 6

count + 1
result = count

25
Q

What is:
num = num + count;
the same as?

A

num += count;

26
Q

What are these the same as?

A

These are called assignment operators

27
Q

How is a While Loop layed out & how does it work?

A

Will repeatedly execute until condition is false

28
Q

When is a While Loop used?

A

For 0 or more times

29
Q

How is a For Loop layed out?

30
Q

When is a For Loop used?

A

When we know when we want the loop to stop

31
Q

How is a Do-While Loop layed out & how does it work?

A

It will execute first & then evaluate if it should execute again

32
Q

When is a Do-While loop used?

A

When you want it to execute 1 or more times

33
Q

How do we declare & instantiate an array with a size of 10?

A

int[] scores = new int [10]

34
Q

What are the bounds in an array?

35
Q

Make an initialier list from 1-6

A

int[] score = {1, 2, 3, 4, 5, 6}