Identification Flashcards
What are the 3 steps when creating an object class
Declaration
Instantiation
Initialization
What are the 6 types of java operators
Arithmetic operators
Relational operators
Logical operators
Assignment operators
Mic operators
Give at least 4 java that support the following fundamental concepts such as
Inheritance
Method
Object
Classes
What are the 3types of loop controls
For loop
While loop
Do while loop
Give at least 4number methods
XxxValue()
ToString()
Equal()
Compare()
What are the 4 types of decision making
If statement
If else statement
Switch statement
Nested if statement
What are the 2 ArrayTypes
Primitive data type
Object data type
Give at least 3string manipulation that involves in various operation
Concatenation
Sub String Extraction
Case Conversion
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).
Encapsulation
is the mechanism by which one class (subclass or derived class) can inherit properties and behaviors from another class (superclass or base class)
Inheritance
Is the ability of a class to take on multiple forms.
Polymorphism
Java is ____ which means identifier hello and hello would have different meaning in java
Case sensitive
Java is possible to write programs that can perform many tasks simultaneously
Multi treaded