Basic Flashcards
T or F
In inheritance, private methods are final.
True.
All compilers will treat private methods as final. The compiler will not allow any private method to be overridden. Likewise, all compilers will prevent subclasses from overriding final methods.
Protected members are accessible within a package and inherited classes outside the package.
T or F
True
T or F
We cannot override private metods
True
What’s another word for an object?
Instance
What’s another word for an instance?
Object
House blueHouse = new House("blue") House anotherHouse = blueHouse;
System.out.println(blueHouse.getColor);
System.out.println(anotherHouse.getColor);
What color will print? and why?
Blue and blue
Because there are two references to the same objects.
https: //www.udemy.com/course/java-the-complete-java-developer-course/learn/lecture/9331916#notes
2: 29
T or F
The call super() must be the first statement in each constructor.
True
Can a constructor have both, a call to super() or this()?
False. Can’t have both
Can a constructor have both, a call to super() or this()?
False. Can’t have both
T o F
Can I use the “this” keyword in a getter?
True. In the getters there are no parameters, so the “this” keyword is optional.
What is the super keyword in Java?
Super keyword in java is a reference variable which is referred immediate parent or super class object. In other words, Super keyword is used to access the members of the parent class.
Super keyword point to immediate parent class object. It works with objects only of the parent class.
Write some points about super keyword in java?
There are some use of super keyword in java. Super keyword can be used to refer parent class instance variables. Super keyword can be used to invoke parent class method. Super keyword can be used to invoke parent class constructor.
Can we access parent class variables in child class by using super keyword?
Yes.
class Parent { int a = 20; }
class Child extends Parent { int a = 30;
void show() { System.out.println(a);//print child class value of a System.out.println(super.a);//print parent class value of a }
public static void main(String args[]) { Child c = new Child(); c.show(); } }
Output:30
20
Can we use both “this” and “super” in constructor?
No, because both this and super should be the first statement.
What is the difference between this() and super()?
There are some differences between java this() constructor and super() constructor.
Java this() It is used to access the current class constructor. It can be used inside another constructor of the same class. It can be used to remove ambiguity errors when we have data members and local are the same name.
Can we use super keyword in the static method of a subclass for calling the parent class method?
No, We cannot use super keyword in static methods because it belongs to the immediate parent object and static belongs to the class level.
Difference Between this() and super() ?
Super keyword is always pointing to base class features and this keyword is always pointing to current class features.
T or F
Overloading does not have anything to do with polymorphism.
True.
But Java developers often refer to overloading as Compile Time Polymorphism.
What is the difference between Overloading andOverriding?
- Overloading is about same function have different signatures.
- Overriding is about same function, same signature but different classes connected through inheritance.
Is this overriding or overloading?
By extending the parent class, the child class gets all the methods defined in the parent class.
Overriding
____ means defining a method in a child class that already exists in the parent class with the same signature (same name, same arguments).
Overriding
Is this overriding or overloading?
The compiler decides which method is going to be called based on the method name, return type and argument list.
Overloading
Why is overloading very handy?
Because it reduces duplicated code and we don’t have to remember multiple method names.
Methods will be considered overloaded if both follow the following two rules… what are those two rules?
- Methods must have the same method name
2. Methods must have different parameters
If methods follow the two rules, then they may or may not …
- Have different return types
- Have different access modifiers
- Throw different checked or unchecked exceptions
Method overriding is also known as _______.
Runtime Polymorphism and Dynamic Method Dispatch.
Method overriding is also known as Runtime Polymorphism and Dynamic Method Dispatch because …
Because the method that is going to be called is decided at runtime by the JVM.
When overriding, what annotation is recommended to put above the method definition? and why?
@Override
Because the @Override annotation is what the compiler reads and will then show us an error if we don’t follow overriding rules correctly.
Can you override static methods? and why?
Y or N
No.
No, we cannot override static methods because method overriding is based on dynamic binding at runtime and the static methods are bonded using static binding at compile time. So, we cannot override static methods.
Can you override instance methods?
T or F
True
Name 3 rules that will be considered methods to be overridden:
- It must have the same name and same arguments
- Return type can be a subclass of the return type in the parent class.
- It can’t have a lower access modifier
For example, if the parent method is protected then using private in the child is not allowed, but using public in the child would be allowed.
T or F
Only inherited methods can be overridden.
True
Methods can be overridden only in child classes.
T or F
Constructors and private methods cannot be overridden.
True
Methods that are final cannot be overridden
True
T or F A subclass can use super.methodName() to call the superclass version of an overridden method.
True
In a static method can you use the “this” keyword?
Y or N
No. Because static methods can’t access instance methods and instance variables directly.
The “this” keyword is the current instance of a class.
Whenever you see a method that does not use instance variables that method should be declared as a static method.
Y or N
Yes.
For example,
Main is a static method and it is called by the JVM when it starts an application.
Static methods are called as ClassName.____Name() or ______Name(), only if in the same class.
ClassName.methodName() or methodName(), but ONLY if in the same class.
class Calculator { public static void printSum(int a, int b) { System.out.print("sum= " + (a + b); } {
public class Main {
public static void main(String[] args) {
Calculator.printSum(5, 10);
printHello();
}
public static void printHello() { System.out.print("Hello"); } }
Do instance methods belong to an instance of a class?
Y or N.
Yes.
To use an instance method we have to instantiate the class first, usually by sing the ____ keyword.
new
Can instance methods access instance methods and instance variables directly?
Yes
Can instance methods access static methods and static variables directly?
Yes
class Dog {
public void bark() { System.out.print("woof"); } }
public class Main {
public static void main(String[] args) { Dog rex = new Dog(); // create instance rex.bark(); // call instance method } }
With what word do you declare a static variable?
with the keyword “static”
Do every instance of a class shares the same static variable?
Y or N
Yes
If changes are made to a static variable, will all other instances see the effect of the change?
Yes.
OUTPUT:
fluffy
fluffy
Explanation: Remember that static variables are shared between instances. In other words, once we change the static variable… all instances will see that change we made.
https://www.udemy.com/course/java-the-complete-java-developer-course/learn/lecture/10576974#notes 2:10
class Dog {
private static String name;
public Dog(String name) { Dog.name = name; }
public void printName() {
System.out.print(“name = “ + name);
}
}
public class Main {
public static void main(String[] args) { Dog rex = new Dog("rex"); // create instance rex Dog fluffy = new Dog("fluffy"); // instance fluffy rex.printName(); // print fluffy fluffy.printName(); // print fluffy } }
Fact About Static Variables:
Static variables are not used very often but can sometimes be very useful.
Example:
When reading input using Scanner, we will declare scanner a static variable.
You are doing great :) keep up the great work!
Do instance variables use the “static” keyword?
No
Name two other ways instance variables are called:
1.
2.
- fields
2. member variables
Do instance variables belong to an instance of a class?
Yes
Which ones are true?
- Every instance has its own copy of an instance variable
- Every instance can have a different value (state).
- Instance variables represent the state of an instance
All 3 are correct
OUTPUT:
rex
fluffy
Explanation: The output will be Rex and Fluffy because we are using instance variables and each instance of the class has its own state or own value.
In other words, each dog has its own copy of the variable name,
class Dog {
private String name;
public Dog(String name) { this.name = name; }
public void printName() {
System.out.print(“name = “ + name);
}
}
public class Main {
public static void main(String[] args) { Dog rex = new Dog("rex"); // create instance rex Dog fluffy = new Dog("fluffy"); // instance fluffy rex.printName(); // print fluffy fluffy.printName(); // print fluffy } }
What does encapsulation mean?
The meaning of Encapsulation is to make sure that “sensitive” data is hidden from users.
What are two things you should do to achieve encapsulation?
To achieve encapsulation, you must:
- Declare class variables/attributes as private
- Provide public get and set methods to access and update the value of a private variable
byte, short, int, long, float, double, boolean and char are called:
______ types
Primitive types
Convert the value of txt to upper case.
String txt = “Hello”;
System.out.println(.***);
text.toUpperCase()
The class below should not be inherited by other classes. Add the correct modifier:
____ class myClass
final
True or False The subclass of abstract class in java must implement all the abstract methods unless the subclass is also an abstract class.
True