Java Programming Lab Viva Questions
Java Programming Lab Viva Questions
A subclass is a class which inherits from another class called super class. Subclass can access
all public and protected methods and fields of its super class.
Q2. What are the various access specifiers for Java classes?
Ans:- In Java, access specifiers are the keywords used before a class name which defines the
access scope.
● Protected:- Method, field can be accessed from the same class to which they belong
or from the sub-classes, and from the class of the same package, but not from outside.
● Default:- Method,Field,class can be accessed only from the same package and not
from outside of its native package.
● Private:- Method, field can be accessed from the same class to which they belong.
The best example of singleton usage scenario is when there is a limit of having only one
connection to a database due to some driver limitations or because of any licensing issues.
Q6. What are Loops in Java? What are three types of loops?
Ans:- Looping is used in programming to execute a statement or a block of statement
repeatedly.
● For Loop:- For loops are used in java to execute statements repeatedly for a given
number of times. For loops are used when the number of times to execute the
statements is known to the programmer.
● While Loop:- While loop is used when certain statements need to be executed
repeatedly until a condition is fulfilled. In while loops, condition is checked first
before execution of statements.
● Do While Loop:- Do While Loop is same as While loop with only difference that
condition is checked after execution of block of statements. Hence in case of do while
loop, statements are executed at least once.
Example:-
for (counter = 0; counter & lt; 10; counter++)
system.out.println(counter);
if (counter == 4) {
break;
}
}
In the below example when counter reaches 4, loop jumps to next iteration and any
statements after the continue keyword are skipped for current iteration.
Example:-
for (counter = 0; counter < 10; counter++)
system.out.println(counter);
if (counter == 4) {
continue;
}
system.out.println("This will not get printed when counter is 4");
}
Q9. What is the difference between double and float variables in Java?
Ans:- In java, float takes 4 bytes in memory while double takes 8 bytes in memory. Float is a
single precision floating point decimal number while Double is double precision decimal
number.
In below example, a constant with the name const_val is declared and assigned a value:
When a method is declared as final, it can NOT be overridden by the subclasses. This method
is faster than any other method, because they are resolved at compile time.
When a class is declared as final, it cannot be subclassed. Example String, Integer and other
wrapper classes.
In the below example, if rank is 1, status is assigned a value of “Done” else “Pending”.
Example:-
public class conditionTest {
public static void main(String args[]) {
String status;
int rank = 3;
status = (rank == 1) ? "Done" : "Pending";
System.out.println(status);
}
}
Q12. How can you generate random numbers in Java?
Ans:-
● Math.random():- Using this, you can generate random numbers in the range
greater than or equal to 0.1 and less than 1.0
In the below example, when the score is not 1 or 2, the default case is used.
Example:-
public class switchExample {
int score = 4;
public static void main(String args[]) {
switch (score) {
case 1:
system.out.println("Score is 1");
break;
case 2:
system.out.println("Score is 2");
break;
default:
system.out.println("Default Case");
}
}
}
Q14. What’s the base class in Java from which all classes are derived?
Ans:- java.lang.object.
Q17. Can we declare a class as Abstract without having any abstract method?
Ans:- Yes we can create an abstract class by using abstract keyword before class name even
if it doesn’t have any abstract method. However, if a class has even one abstract method, it
must be declared as abstract otherwise it will give an error.
Q18. What’s the difference between an Abstract Class and Interface in Java?
Ans:- The primary difference between an abstract class and interface is that an interface can
only possess declaration of public static methods with no concrete implementation while an
abstract class can have members with any access specifiers (public, private etc) with or
without concrete implementation.
Another key difference in the use of abstract classes and interfaces is that a class which
implements an interface must implement all the methods of the interface while a class which
inherits from an abstract class doesn’t require implementation of all the methods of its super
class.
A class can implement multiple interfaces but it can extend only one abstract class.
Q19. What are the performance implications of Interfaces over abstract classes?
Ans:- Interfaces are slower in performance as compared to abstract classes as extra
indirections are required for interfaces. Another key factor for developers to take into
consideration is that any class can extend only one abstract class while a class can implement
many interfaces.
Use of interfaces also puts an extra burden on the developers as any time an interface is
implemented in a class; developer is forced to implement each and every method of
interface.
For example, if a developer imports a package university. All classes in the package named
university are loaded but no classes from the sub-package are loaded. To load the classes
from its sub-package (say department), developer has to import it explicitly as follows:
Import university.department.*
Q25. Is it compulsory for a Try Block to be followed by a Catch Block in Java for
Exception handling?
Ans:- Try block needs to be followed by either Catch block or Finally block or both. Any
exception thrown from the try block needs to be either caught in the catch block or else any
specific tasks to be performed before code abortion are put in the finally block.
Q26. Is there any way to skip Finally block of exception even if some exception
occurs in the exception block?
Ans:- If an exception is raised in Try block, control passes to catch block if it exists otherwise
to finally block. Finally block is always executed when an exception occurs and the only way
to avoid execution of any statements in Finally block is by aborting the code forcibly by
writing following line of code at the end of try block:
System.exit(0);
For example, in the following class two objects are created using a new keyword and hence,
the constructor is invoked two times.
const_example() {
system.out.println("Inside constructor");
}
public static void main(String args[]) {
super.displayResult();
obj.displayResult();
Q32. In the below example, how many String Objects are created?
Ans:- In the above example, two objects of Java.Lang.String class are created. s1 and s3 are
references to the same object.
In the below example, reference str refers to a string object having value “Value one”.
When a new value is assigned to it, a new String object gets created and the reference is
moved to the new object.
str="New Value";
Q38. When a lot of changes are required in data, which one should be a
preference to be used? String or StringBuffer?
Ans:- Since StringBuffers are dynamic in nature and we can change the values of
StringBuffer objects unlike String which is immutable, it’s always a good choice to use
StringBuffer when data is being changed too much. If we use String in such a case, for every
data change a new String object will be created which will be an extra overhead.
Q39. What’s the purpose of using Break in each case of Switch Statement?
Ans:- Break is used after each case (except the last one) in a switch so that code breaks after
the valid case and doesn’t flow in the proceeding cases too.
If break isn’t used after each case, all cases after the valid case also get executed resulting in
wrong results.
Q41. How can we execute any code even before the main method?
Ans:- If we want to execute any statements before even creation of objects at load time of
class, we can use a static block of code in the class. Any statements inside this static block of
code will get executed once at the time of loading the class even before creation of objects in
the main method.
Q42. Can a class be a super class and a sub-class at the same time? Give an
example.
Ans:- If there is a hierarchy of inheritance used, a class can be a super class for another class
and a sub-class for another one at the same time.
In the example below, continent class is sub class of world class and it's a super class of
country class.
..........
}
public class continenet extends world {
............
}
public class country extends continent {
......................
Q43) How objects of a class are created if no constructor is defined in the class?
Ans:- Even if no explicit constructor is defined in a java class, objects get created
successfully as a default constructor is implicitly used for object creation. This constructor
has no parameters.
Q45. Can we call the constructor of a class more than once for an object?
Ans:- Constructor is called automatically when we create an object using a new keyword. It’s
called only once for an object at the time of object creation and hence, we can’t invoke the
constructor again for an object after its creation.
Q46. There are two classes named class A and class B. Both classes are in the
same package. Can a private member of class A can be accessed by an object of
class B?
Ans:- Private members of a class aren’t accessible outside the scope of that class and any
other class even in the same package can’t access them.
Q47. Can we have two methods in a class with the same name?
Ans:- We can define two methods in a class with the same name but with different numbe or
type of parameters. Which method is to get invoked will depend upon the parameters passed.
For example in the class below we have two print methods with the same name but different
parameters. Depending upon the parameters, appropriate one will be called:
}
public static void main(String args[]) {
obj1.print();
obj1.print("xx");
Q50. What’s the default access specifier for variables and methods of a class?
Ans:- Default access specifier for variables and method is package protected i.e variables
and class is available to any other class but in the same package, not outside the package.
Q52. How can we restrict inheritance for a class so that no class can be
inherited from it?
Ans:- If we want a class not to be extended further by any class, we can use the keyword
Final with the class name.
● Dead:- A thread which has gone dead after execution is in dead state.
Q59. Can we override a method by using the same method name and arguments
but different return types?
Ans:- The basic condition of method overriding is that method name, arguments as well as
return type must be exactly the same as that of the method being overridden. Hence using a
different return type doesn’t override a method.
int x = 4;
system.out.println(x++);
}
}
Ans:- In this case, postfix ++ operator is used which first returns the value and then
increments. Hence it’s output will be 4.
Q61. A person says that he compiled a java class successfully without even
having a main method in it? Is it possible?
Ans:- Main method is an entry point of Java class and is required for execution of the
program however; a class gets compiled successfully even if it doesn’t have a main method. It
can’t be run though.
Q63. What are the two environment variables that must be set in order to run
any Java programs?
Ans:- Java programs can be executed in a machine only once following two environment
variables have been properly set:
● PATH variable
● CLASSPATH variable.
Q65. Can a class in Java be inherited from more than one class?
Ans:- In Java, a class can be derived from only one class and not from multiple classes.
Multiple inheritance is not supported by Java.
Q66. Can a constructor have a different name than a Class name in Java?
Ans:- Constructors in java must have the same name as the class name and if the name is
different, it doesn’t act as a constructor and the compiler thinks of it as a normal method.
Ans:- The above class declaration is incorrect as an abstract class can’t be declared as Final.
Q71. Is the Java Development Kit (J.D.K) required on each machine to run a
Java program?
Ans:- JDK is development Kit of Java and is required for development only and to run a
Java program on a machine, JDK isn’t required. Only JRE is required.
Q72. What’s the difference between comparison done by equals method and ==
operator?
Ans:- In Java, equals() method is used to compare the contents of two string objects and
returns true if the two have the same value while the == operator compares the references of
two string objects.
In the following example, equals() returns true as the two string objects have the same
values. However == operator returns false as both string objects are referencing to different
objects:
if (str1.equals(str2))
if (str1 == str2) {
Q78. Is it correct to say that due to garbage collection feature in Java, a java
program never goes out of memory?
Ans:- Even though automatic garbage collection is provided by Java, it doesn’t ensure that a
Java program will not go out of memory as there is a possibility that creation of Java objects
is being done at a faster pace compared to garbage collection resulting in filling of all the
available memory resources.
So, garbage collection helps in reducing the chances of a program going out of memory but it
doesn’t ensure that.
Q79. Can we have any other return type than void for main method?
Ans:- No, Java class main method can have only void return type for the program to get
successfully executed.
Nonetheless , if you absolutely must return a value at the completion of the main method ,
you can use System.exit(int status).
Q80. I want to re-reach and use an object once it has been garbage collected.
How is it possible?
Ans:- Once an object has been destroyed by a garbage collector, it no longer exists on the
heap and it can’t be accessed again. There is no way to reference it again.
Q81. In Java thread programming, which method is a must implement for all
threads?
Ans:- Run() is a method of runnable interface that must be implemented by all threads.
Q82. I want to control database connections in my program and want only one
thread to be able to make database connections at a time. How can I implement
this logic?
Ans:- This can be implemented by use of the concept of synchronization. Database related
code can be placed in a method which has a synchronized keyword so that only one thread
can access it at a time.
Q84. I want my class to be developed in such a way that no other class (even
derived class) can create its objects. How can I do so?
Ans:- If we declare the constructor of a class as private, it will not be accessible by any other
class and hence, no other class will be able to instantiate it and formation of its object will be
limited to itself only.
Q86. How can we find the actual size of an object on the heap?
Ans:- In java, there is no way to find out the exact size of an object on the heap.
Q87. Which of the following classes will have more memory allocated?
Ans:- Memory isn’t allocated before creation of objects. Since for both classes, there are no
objects created so no memory is allocated on heap for any class.
For example, in below code we have defined an anonymous class in one line of code:
@Override
return false;
}
@Override
return null;
Q91. Is there a way to increase the size of an array after its declaration?
Ans:- Arrays are static and once we have specified its size, we can’t change it. If we want to
use such collections where we may require a change of size (no of items), we should prefer
vector over array.
Q92. If an application has multiple classes in it, is it okay to have a main method
in more than one class?
Ans:- If there is a main method in more than one class in a java application, it won’t cause
any issue as the entry point for any application will be a specific class and code will start from
the main method of that particular class only.
Q93. I want to persist data of objects for later use. What’s the best approach to
do so?
Ans:- The best way to persist data for future use is to use the concept of serialization.
Q95. String and StringBuffer both represent String objects. Can we compare
String and StringBuffer in Java?
Ans:- Although String and StringBuffer both represent String objects, we can’t compare
them with each other and if we try to compare them, we get an error.
Q97. Can we cast any other type to Boolean Type with type casting?
Ans:- No, we can neither cast any other primitive type to Boolean data type nor can cast
Boolean data type to any other primitive data type.
Q98. Can we use different return types for methods when overridden?
Ans:- The basic requirement of method overriding in Java is that the overridden method
should have the same name, and parameters.But a method can be overridden with a different
return type as long as the new return type extends the original.
Class B extends A {
A method(int x) {
//original method
B method(int x) {
//overridden method