Java Flashcards
What is the lifecycle of a java program
Source code -> Compiler -> Output -> JVM (Java virtual machine
name the primitive variables in java
short, bit, int, float, long, boolean, byte, double
What is a local variable
defined in method, constructor, or block
what is an instance variable
non-static variables defined in a class outside of a method or any block
what is a static OR class variable
a variable declared using the static keyword in a class outside of any method
what are the differences between a static variable and an instance variable?
an instance variable is unique to the object that defines it. there is only one class variable for all the instance of a class, if the class variable is changed it effects all the instances of the class
What are primary OOP concepts in java
abstraction, encapsulation, polymorphism, inheritance
What is abstraction?
The process of identifying the essential details to be known and ignoring the non essential details from the perspective of the system
What is encapsulation?
controlling the read and write access of classes, it provides the ability to hide data and methods from other classes
What is an access modifier?
Key words that define the accessibility for a class, method, or attribute.
What are the access modifier keywords
private, default, protected, public
What is polymorphism?
Poly: many, Morph: forms
using a method with the same name to perform different tasks
What is an example of polymorphism?
Method overloading or Method overridding
What are the two types of polymorphism that java supports?
Static and Dynamic
What is static polymorphism?
Allows you to implement multiple methods within the same class with the same name.
How would you implement method overloading? 3 answers
- Have a different number of parameters
- The types of the parameters are different
- The order of the parameters are different
What is method overriding?
Using inheritance to customize or completely replace the behavior of a method defined in the parent class.
What is inheritance?
Deriving a class from a class or hierarchy of classes that share a set of attributes and methods
What is an interface?
A completely abstract class that contains:
Only abstract methods
AND / OR
Default methods and final variables
How does another class implement an interface?
By using the keyword implements: public class MyClass implements MyInterface { }
What is a functional Interface?
An interface that has only one abstract method.
A class can implement multiple interfaces?
TRUE
A class can extend multiple classes?
FALSE
If a method in an interface has an implementation, what access modifier must it have?
default OR static
Interface variables are what by definition?
public static and final, visibility cannot be changed
if an interface is implemented by a non abstract class, what must the class do?
override all of the interfaces abstract methods
What are Lambda expressions?
functional constructs without classes.
they can be passed like objects and executed as required.
they also make the modifiers, return type and parameter types completely optional.
What is the purpose of a Lambda function?
implementation logic for a functional interface.
What is the syntax of a Lambda expression?
- (arguments)
- arrow ->
- body: single statement or code block
(x, y) -> x + y;
What is the syntax for a method reference?
User::getUserId
When can method reference be user?
In a lambda expression when you are calling a method already defined with a name.
What is the lifecycle of a Stream?
Stream -> intermediate operation -> terminal operation -> result
Stream intermediate operations are Lazy, explain what that means and how it could help performance.
Because the operation is Lazy it does not perform any processing until the terminal operation is called in the stream.
Can a non static variable be accessed in a static method or block?
No, but a static variable can be accessed in a non static method
How many times and when can a final variable be initialized?
Once, either at the time of declaration or in the constructor.
When does class that implements an interface not have to implement all of its undefined methods.
When the class implementing the interface is abstract.
Does an abstract class contain only abstract methods?
No it can contain either abstract or defined methods.
Can an abstract method be private?
No, abstract methods must be implemented by child classes. Therefor it may not be private.
What is Java
Java is a High-Level, Object Oriented, General-Purpose programming language.
What is the file extension for the Byte Code after source code has been compiled?
.class
What are the components of the JVM?
Class Loader, Byte Code Verifier, Interpreter, Jit Compiler, Runtime
What is the purpose of the Class Loader?
It loads all the .class files needed for execution.
What is the Byte Code verifier?
Checks code fragments for illegal code.
What is the Interpreter?
Converts byte code instruction to machine code.
What is the JIT compiler?
Compiles reusable byte code to machine code
What is Runtime?
Assists in the overall execution of the program.
Is the JVM platform independent?
No, Java as a whole is platform independent. The JVM is OS specific.
What will the output be if a main method has private access modifier?
Runtime Exception
What are some rules for naming identifiers?
- Case-Sensitive
- Should not start with a number
- Can start with letter, $ or _
- Should not have spaces
- Should not be a keyword or literal
- No length restriction
What are Non-Primitive data types?
String, user defined class, enum
What is the order of data types, by size?
short -> int -> long -> float -> double
What are the two ways an array can be declared?
int[] arr;
int arr[];
What are all the constants in an Enum set?
Implicitly static and final
What are some constraints of an abstract class?
An abstract class cannot be instantiated using the new keyword. The subclass of an abstract class can be only instantiated if it provides the implementation for all the abstract methods. If a class has at least one abstract method, then the class must be declared as abstract. If the subclass does not implement all the abstract methods, then the subclass must also be declared as abstract. An abstract class can also have concrete methods i.e. methods with implementation. An abstract class reference can be assigned an object of its subclass, thereby achieving run-time polymorphism.
What are some characteristics of an interface?
An interface defines a contract for a class. Objects can't be created for interface and an interface cannot have private or protected members. In an interface, all methods are implicitly public and abstract and variables are implicitly public, static, and final. The class which implements the interface has to provide definitions for all abstract methods. If at least one abstract method of the interface has not been overridden by the class that implemented the interface, make it abstract. Inheritance is possible in an interface and it supports multiple inheritance.
When can the extends key word be used on an interface?
When an interface is extending another interface.
An interface can extend multiple interfaces.
What is a package?
A grouping mechanism in Java that contains all related classes and interfaces.
What class is at the top of the hierarchy for all java classes?
Object
What does Object.equals(obj) do when called?
Uses memory address to compare objects.
What is a wrapper class? What is a common implementation of one?
Wrapper classes are used to represent primitive data types as Objects.
Java collections cannot store primitives, they can only store Objects.
Integer, Long, Boolean, Float…
What is a String?
An immutable sequence of characters in the form of an Object
What is the difference between:
- String username = “David”;
- String username = new String(“David”);
1: is represented as a String literal.
2: is represented as a String Object.
What is the difference between a String literal and a String Object?
String literals are created in a pool section of the heap memory. I.E two strings with the same characters both point to the same literal in the pool.
String Objects with the same characters point to 2 different objects in memory.
String literals are not eligible for garbage collection. String Objects are.
When referring to Strings what is the difference between == and .equals() ?
== compares the memory address of the two strings
.equals() compares the content of the two strings
What class is the superclass of all exceptions? and what class does it extend?
Exception, extends Throwable.
What is the difference between an Exception and an error? What is a similarity?
Error represents a serious abnormal condition that should not be caught.
Exceptions can be caught.
They are both subclasses of the Throwable class.
What is the difference between checked and unchecked exceptions?
Checked exceptions occur at compile time and should be handled
Unchecked exceptions occur at runtime and do not need to be handled
What must a try block be followed by?
Either a/several catch block(s) OR A finally block OR both
What are the difference and similarities of ArrayList and LinkedList?
ArrayList: Is an array implementation that allows random access when retrieving list items, Addition and removal of elements requires iteration.
LinkedList: Is a Doubly Linked List that requires iteration over the list to retrieve an item, while addition and removal of elements is faster.
They both implement the List interface