Identification Flashcards

1
Q

What are the 3 steps when creating an object class

A

Declaration
Instantiation
Initialization

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

What are the 6 types of java operators

A

Arithmetic operators
Relational operators
Logical operators
Assignment operators
Mic operators

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

Give at least 4 java that support the following fundamental concepts such as

A

Inheritance
Method
Object
Classes

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

What are the 3types of loop controls

A

For loop
While loop
Do while loop

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

Give at least 4number methods

A

XxxValue()
ToString()
Equal()
Compare()

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

What are the 4 types of decision making

A

If statement
If else statement
Switch statement
Nested if statement

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

What are the 2 ArrayTypes

A

Primitive data type
Object data type

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

Give at least 3string manipulation that involves in various operation

A

Concatenation
Sub String Extraction
Case Conversion

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

is the concept of bundling data (attributes) and methods (behaviors) together within a class and controlling access to them using access modifiers (e.g., public, private, protected).

A

Encapsulation

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

is the mechanism by which one class (subclass or derived class) can inherit properties and behaviors from another class (superclass or base class)

A

Inheritance

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

Is the ability of a class to take on multiple forms.

A

Polymorphism

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

Java is ____ which means identifier hello and hello would have different meaning in java

A

Case sensitive

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

Java is possible to write programs that can perform many tasks simultaneously

A

Multi treaded

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