java programming Flashcards

1
Q

Class body

A

public class classname {
public static void main(String[] args) {
System.out.println(“welcome to java”);
}
}

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

Type conversions

A

byte < short < int < long < float < double

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

float and double

A

float a = 22.5f;
double a = 22.5;

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

Type Casting

A

double myDobule = 3.6
int myInt = (int)myDouble; // = 3

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

Array declaration

A

int[] studentmarks = new int[6]; // holds 6
boolean[] attendance = new boolean[12]
attendance.length // gets length of array

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

Mult dimensional arrays

A

int[][] rating = new int[3][4]; // 3 rows, 4 columns

char[][] hellos = new char[2][];
hellos[0] = new char[]{‘H’, ‘e’, ‘l’, ‘l’, ‘o’};
hellos[1] = new char[]{‘H’, ‘i’};

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

if else statement shorthand

A

(condition) ? expression1 : expression2;

e.g
String result = (marks >=40) ? “Pass” : “Fail”;

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

for each loop

A

int[] numbers = new int[]{5,100,2000}

for(int number : numbers) {
System.out.println(number);
}

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

Methods

A

public static int Calculatemin(int num1, int num2){
return result
}

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