Some Viva Questions and Answers:
What is OOP?
A: Object-oriented programming (OOP) is a
programming paradigm that represents concepts as “objects” that have
data fields (attributes that describe the object) and associated
procedures known as methods.
Is Java an Object Oriented language?
A: Yes.
What is significance of import java.io.* in your program?
A: The line imports all the classes of the java.io package into the current program.
Give some examples of packages.
A: java.util, java.lang etc.
Why did you write java.util package? (only if you use classes like Scanner or StringTokenizer)
A: To include the functions of the Scanner or StringTokenizer class from the java.util package.
What is a class?
A: A class is a blueprint or prototype from which objects are created.
What is an object?
A: An object is an instance of a class.
How to create an object?
A: Objects of a class can be created as by declaring it and then instantiating it using the ‘new’ operator as follows:
class-name object-name = new class-name();
Example: Point ob = new Point();
The above line creates an object of the Point class.
class-name object-name = new class-name();
Example: Point ob = new Point();
The above line creates an object of the Point class.
Why do you write BufferedReader br = new ……. ?
A: To activate the Buffer memory for efficient input and output operations. ‘br’ is an object of the BufferedReader class.
What is a Buffer and what is its use?
A: Buffer is a temporary memory used for efficient input and output operations.
What is the function of readLine() method?
A: readLine() method reads a line of text (which you input) and returns the result in the form of a String.
Why do we have main() function?
A: The execution of the program begins from the main() method.
Why is the main method public?
A: So that it be accessible to the JVM which begins to execute the program from outside of the class.
Why is the main method static?
A: So that it be available for execution without the need of any object.
Is it compulsory to write String args[] when running a program in BlueJ?
A: No it is not compulsory when we are
running it in BlueJ. But normally (in all other cases) it is always
better to have it, as the JVM looks for the main method with a String
array as a parameter.
What is the use of out in System.out.println()?
A: ‘out’ is an object of the
‘PrintStream class and a static data member of the’System’ class which
is calling the println() function.
What is the difference between print() and println() methods?
A: The print() functions prints a line
and the control remains on the same line, whereas, the println()
function prints a line and the control moves on to the next line.
Can a package be called as a class?
A: Yes, Package is actually a class present in java.lang package.
Why do you write ‘throws IOEXception’?
A: For handling any input/output exceptions.
What are exceptions?
A: Exceptions are runtime errors which prevent the program from working normally.
Mention the two types of exceptions?
A: Checked Exceptions – Exceptions which are checked (handled) during compile time.
Example: IOException.
Example: IOException.
Unchecked Exceptions – Exceptions which are not checked during compile time.
Example: ArrayIndexOutOfBound.
Example: ArrayIndexOutOfBound.
Mention other ways in which java handles exceptions.
A: Java can handle exception using the try-catch block, throws keyword and throw keyword.
What is the difference between throws and throw?
A: Using throws keyword, we can give
system defined error message if any error occurs, while using throw
keyword, we can force an exception and give user-defined error messages.
What is try-catch block?
A: try-catch block is a way to handle
exceptions in Java. try contains a block of statements to check for any
error. If any error occurs within the try block, it is trapped. Further a
report is passed to the exception handler about the error, which is
done by the catch block.
What is finally block?
A: finally block contains statements
which are to be executed irrespective of any errors. It is used along
with the try-catch block.
Which keyword is used to raise an exception?
A: throw keyword.
State any two IOException classes.
A: EOFException and FileNotFoundException.
Name the primitive data-types in java.
A: byte, short, int, long, float, double, char and boolean
What are comments? Name the different types.
A: Comments are statements which enhances the readability and understanding of the program. They are not part of the program.
The different types are: single line (//….), multiple line (/* … */) and documenting comment (/**….*/).
Why is the ‘S’ of System.out.println() function capital?
A: System is the name of a class present
in java,lang package and hence it begins with a capital letter as is
the convention for class names.
Why is the ‘S’ of String capital?
A: Since String is a class.
What is a variable?
A: A variable is a named memory location whose value can change.
What is a constant?
A: A constant is a literal which cannot be changed.
How do you make a variable into a constant?
A: By adding the keyword ‘final’ before a variable declarations. Example: final int a = 5;
What are postfix and prefix operators?
A: Both postfix and prefix operators
change (increase or decrease) the value of a variable by 1. In postfix,
the old value of the variable is first used and then the variable is
updated to the new value, whereas in prefix, the value of the variable
is first updated to the new value and then this new value is used.
What is the use of final keyword?
A: Final can be used in three scenarios:
a) final before a variable makes it a constant.
b) final before a function declaration prevents it from being overridden.
c) final before a class declaration prevents it from being inherited.
a) final before a variable makes it a constant.
b) final before a function declaration prevents it from being overridden.
c) final before a class declaration prevents it from being inherited.
What is a class variable?
A: Instance variables having the keyword
‘static’ before it is a class variable. For every object there is just
one copy of the variable made.
What does System.in.read() return?
A: It returns the number of bytes read from the Input Stream as an integer.
Why do you write ‘Integer.parseInt(br.readLine())’?
A: The inputs in a java program comes in
the form of String objects which are read using the br.readLine()
function. Now if we want the input in integer form, we have to convert
it into integer using the parseInt() function of the Integer wrapper
class.
What are wrapper class?
A wrapper class is a class which wraps
(encloses) around a data type and gives it an object appearance.
Wherever, the data type is required as an object, this object can be
used.
What is type conversion? Name its types.
A: Converting a value of a particular data type into another data-type is called type conversion. It is of two types:
(a) Implicit Type Conversion: When the conversion takes place on its own without the programmer’s intervention.
(b) Explicit Type Conversion: When the conversion takes place with the programmer’s intervention.
(b) Explicit Type Conversion: When the conversion takes place with the programmer’s intervention.
What is the difference between casting and coercion?
A: Type Casting refers to Explicit type conversion i.e. When the conversion takes place with the programmer’s intervention, whereas, Coercion refers to Implicit type conversion i.e. When the conversion takes place on its own without the programmer’s intervention.
What is the difference between if and switch?
A:
(a) if can compare conditions for all data types whereas, switch can only check integers and characters.
(b) all kinds of relations can be checked using if whereas only equality relation can be checked using switch.
(a) if can compare conditions for all data types whereas, switch can only check integers and characters.
(b) all kinds of relations can be checked using if whereas only equality relation can be checked using switch.
What is the difference between for and while?
A: The difference lies in the way they
are commonly used. for loop is commonly used when the number of
iterations are known whereas, while loop is commonly used when the
number of iterations are not known.
What is the difference between do-while and while?
A: do-while lop is exit controlled (i.e.
condition is checked at the exit) and runs at least once even if the
condition is false whereas, while loop is entry controlled (i.e.
condition is checked at the entry) and does not run even once if the
condition is false.
What is recursion?
A: It is a process in which a function calls itself repeatedly until some base condition is satisfied.
What is the difference between recursion and iteration?
A: Recursion is usually slower than
iteration due to overhead of maintaining stack, whereas, Iteration does
not use stack so it’s faster than recursion.
Recursion uses more memory than iteration, whereas, Iteration consume less memory.
Recursion makes code smaller, whereas, Iteration makes code longer.
What is the use of return keyword?
A: return keyword is used to return any value from a function. It denotes the end of a function.
Can there be multiple return statements in a function?
A: Yes, but only one of them is executed.
Can two functions have the same name? Give examples.
A: Yes. In function overloading and function overriding.
What is the difference between function overloading and function overriding?
A: In function overloading only the
function name is same but function signature (list of parameters) is
different, whereas, in function overriding both the function name as
well as function signature are same
Function overloading takes place within the same class, whereas, function overriding takes place in a child and a parent class.
Function overloading is an example of static polymorphism, whereas, function overriding is an example of dynamic polymorphism.
What is a constructor?
A: It is a member function with the same
name as that of a class and is automatically called for initializing
the variables of an object.
What is the default access specifier?
A: friendly
What is a modifier?
A: A modifier is a keyword placed in a
class, method or variable declaration that changes how it operates.
Examples of modifiers are: abstract, final, static etc.
What is the default java package?
A: java.lang
What is the use of ‘new’ keyword?
A: It is used for dynamic memory allocation to reference data types.
What is the use of ‘this’ keyword?
A: It is used to refer to the current object (the object which calls the function).
What are arrays?
A: Arrays are a collection of variables of the same data-type referenced by a common name.
What is the significance of arrays?
A: It helps to group similar variables under a common name, hence reducing the number of names of variables we have to remember.
What is StringTokenizer or Scanner and examples of similar classes (if you used it)
A: StringTokenizer or Scanner is a class which splits up any given string into tokens separated by delimiters.
Name some function of StringTokenizer class.
A: nextToken(), countToken(), hasMoreTokens() etc.
Name some function of Scanner class.
A: next(), nextInt(), hasNextInt() etc.
Name some other concepts related to Scanner/StringTokenizer
A: Scanner class, StringTokenizer class, split() function.
What is split() function?
A: split() function is a function of the
String class and it breaks up any String into tokens and outputs the
result in the form of an array.
What is the use of charAt() function?
A: This function is used to extract characters at any given index from a String.
What is the difference between length() and length?
A: length() function is used to find the
number of characters present in a String, whereas, length keyword is
used to find the number if cells in an array.
What is the difference between break and continue?
A: break keyword stops the complete loop
and takes the control out of the loop, whereas, the continue keyword
just stops the current iteration and takes the control to the next
iteration.
What is the difference between selection sort and bubble sort?
A: In selection sort, successive rounds
are executed to select the element which is required to be placed in
their sorted position, whereas, in bubble sort, every consecutive pairs
of elements are compared and interchanged as required to place them in
their sorted position.
If we are arranging an array is
ascending order, then in selection sort, we get the smallest element at
every pass, whereas, in bubble sort we get the largest element in every
pass.
What is the drawback of an array?
A: Its size cannot be changed.
When does Binary search fail?
A: When the array is not sorted.
What is the difference between linear and binary search?
A: Linear search does not require the array to be sorted, whereas, binary search requires that the array be sorted.
Linear search checks for the search item
in a linear fashion from the beginning cell till the end, whereas,
Binary search repeatedly dividing the array into halves and the search
takes place in one of the halves. The element is searched in the middle
cell of every half.
The Examiner may ask you to explain in brief the logic used you to solve the program.
You know what you have written so just give a brief summary of the logic used by you.
The Examiner may ask you to tell what is control variable in your loop.
So if your loop is for(int i = 1; i <= 5; i++) then the control variable is ‘i’.
The Examiner may ask you to tell what is the return type of a function you used.
So if your function is boolean isPrime(int n) then the return type is ‘boolean’.
What is a queue? Give a real life example.
A: It is a linear data structure which follows the FIFO (First In First out) pattern.
Real life example: Queue at the ticket counter
What is a stack? State it’s application.
A: It is a linear data structure which follows the LIFO (Last In First out) pattern. Stack memory is used in recursion.
Application: It can be used for reversing strings, for evaluating postfix expressions.
What is an abstract class?
A: An abstract class is a class that is
declared abstract—it may or may not include abstract methods. Abstract
classes cannot be instantiated, but they can be subclassed.
What is an abstract method?
A: An abstract method is a method that
is declared without an implementation (without braces, and followed by a
semicolon), like this:
abstract void point(double x, double y);
abstract void point(double x, double y);
What is the difference between keywords and reserved words?
A: Keywords have a special meaning in a language, and are part of the syntax.
Reserved words are words that cannot be used as identifiers (variables, functions, etc.), because they are reserved by the language.
Example: In Java, goto is a reserved word but not a keyword (as a consequence, you cannot use it at all)
Reserved words are words that cannot be used as identifiers (variables, functions, etc.), because they are reserved by the language.
Example: In Java, goto is a reserved word but not a keyword (as a consequence, you cannot use it at all)
What is the similarity between a method and a constructor?
A: Below are some of the similarities:
1) Both of them are member methods of any class.
2) Both can be parameterised or non-parameterised.
3) Both can be overloaded.
1) Both of them are member methods of any class.
2) Both can be parameterised or non-parameterised.
3) Both can be overloaded.
What is the difference between naming conventions and naming rules?
A: Violating naming rules will result in a syntax error, whereas, violating naming conventions will not result in any error.
What error will be generated if a
space is given between the logical AND operator (&&)? Will it be
a compile-time or a run-time error?
Example: if(5>2 & & 6<9)
Example: if(5>2 & & 6<9)
A: It will give an “Illegal start of expression” error. It will be a compile time error.
Comments
Post a Comment
Post Your Valuable Comments