Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
- Choose the correct option (any seven) :
Which of the following is a valid declaration of an object of class Box?
Which operator is used to invert all the digits in a binary representation of a number?
Which of these cannot be declared static?
Which polymorphism concept is applied to inheritance relationship in Java programming?
Which of the following operators can operate on a Boolean variable?
- &&
- --
- ?:
- +=
Which of these is a process of converting a simple data type into a class?
Which of these methods of thread class is used to suspend a thread for a period of time?
Which of these functions is called to display the output of an applet?
Which of the following is the advantage of using PreparedStatement in Java?
Which of the following is a method of JDBC batch process?
Q.2
What are the drawbacks of procedural languages? Explain the need of object-oriented programming with suitable program.
What are the wrapper classes? Write a Java program to find the GCD of two numbers.
Q.3
Write an iterative Java program to reverse digits of a number.
Write a Java program to check whether a given number is a happy number or unhappy number. Happy number : Starting with any positive integer, replace the number by the sum of the squares of its digits and repeat the process until the number equals 1, or it loops endlessly in a cycle which does not include 1. Unhappy number : A number that is not happy. The first few unhappy numbers are 2, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 20.
Q.4
With suitable code segments, illustrate various uses of 'super' keyword.
Write a Java program to demonstrate working of Arrays.equals() for user-defined objects.
Q.5
What is constructor? Write a Java program to find the area of the circle using constructor.
Write a Java program to find the maximum occurring character in a string. The given string is "test string".
Q.6
What is JVM? Write the functionality of each component with the help of block diagram. [Note: Question text reconstructed/partially unreadable]
Discuss about polymorphism. Explain run-time polymorphism with a program.
Q.7
Write the differences between method overloading and method overriding with suitable example of each.
Write a Java program to demonstrate example of hierarchical inheritance to get square and cube of a number.
Q.8
Design an abstract class named Vegetable with three subclasses named Potato, Brinjal and Tomato. Use appropriate data members and member functions to display the output of each vegetable. [Note: Question text reconstructed/partially unreadable]
Q.9
Write a JDBC program to update the amount balance in an account after every withdrawal. Assume the necessary database table.
Write an Applet to draw a smiley picture that accepts user name as a parameter and displays 'welcome' message.
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Q.1 Answer/Fill in the blank/Choose the correct option (any
seven):
Java is an example of ________ language.
The mother tongue of a computer is:
You have the following code in a file called Test.java:
class Base{
public static void main(String[] args){
System.out.println("Hello");
}
}
public class Test extends Base{}
What will happen if you try to compile and run this?Which of the following are valid declarations? (Note: None of the literals used here contain the character O, they are all zeroes.)
What is the result of trying to compile and run this program?
public class Test{
public static void main(String[] args){
int[] a = {1};
Test t = new Test();
t.increment(a);
System.out.println(a[a.length-1]);
}
void increment(int[] i){
i[i.length - 1]++;
}
}
Is this legal?
long longArr[];
int intArr[] = {7, 8, 9};
longArr = intArr;
What is the result of attempting to compile and run this?
interface A{
void aMethod();
}
public class Test implements A{
void aMethod(){
System.out.println("hello");
}
public static void main(String[] args){
Test t = new Test();
t.aMethod();
}
}
What are the class variables?
Explain the following code sample:result = someCondition ? value1 : value2;
Character strings are represented by the class java.lang.String.
Q.2 Solve both questions :
Why is Java called machine independent language? Explain the functionality of JVM.
What is the main difference between an application and applet?
Q.3 Solve both questions :
What are the wrapper classes? Explain their uses.
What does a dynamic Billboard Applet do? What are the three main classes that the applet contain?
Q.4 Solve both questions :
What is the difference between process-based and thread-based multitasking? Give the two ways by which a thread can be created using Java.
What is RMI? What is the difference between Naming.bind and Naming.rebind methods? Write a short code to invoke a remote method using Java RMI.
Q.5 Solve this question :
Write an Applet (Use swings) to display the outputs:

Q.6 Solve both questions :
What are the characteristics of JDBC? What are the various steps for using JDBC? Write a program to demonstrate these steps.
What is the main purpose of a container component in swing?
Q.7 Solve this question :
Design a class named Fan to represent a fan. The class contains:
• Three constants named SLOW, MEDIUM and FAST with values 1, 2 and 3 to denote the fan
speed.
• A private int data field named speed that specifies the speed of the fan (default SLOW).
• A private boolean data field named on that specifies whether the fan is on (default
false).
• A private double data field named radius that specifies the radius of the fan (default 5).
• A string data field named colour that specifies the colour of the fan (default blue).
• The accessor and mutator methods for all four data fields.
• A no-arg constructor that creates a default fan.
• A method named toString() that returns a string description for the fan. If the fan is on, the
method returns the fan speed, colour, and radius in one combined string. If the fan is not on,
the
method returns fan colour and radius along with the string "fan is off" in one combined
string.
Implement the class. Write a test program that creates two Fan objects. Assign maximum speed,
radius
10, colour yellow, and turn it onto the first object. Assign medium speed, radius 5, colour
blue,
and turn it off to the second object. Display the objects by invoking their toString method.
Q.8 Solve this question :
Write a program in Java to demonstrate communication using TCP/IP i.e., using sockets. Write a separate code for a server and client program. The program should display the contents of the file specified in a server onto the client.
Q.9 Write short notes on the following:
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Q.1 Answer/Fill in the blank/Choose the correct option (any
seven):
Java is an example of ________ language.
The mother tongue of a computer is:
You have the following code in a file called Test.java:
class Base{
public static void main(String[] args){
System.out.println("Hello");
}
}
public class Test extends Base{}
What will happen if you try to compile and run this?Which of the following are valid declarations? (Note: None of the literals used here contain the character O, they are all zeroes.)
What is the result of trying to compile and run this program?
public class Test{
public static void main(String[] args){
int[] a = {1};
Test t = new Test();
t.increment(a);
System.out.println(a[a.length-1]);
}
void increment(int[] i){
i[i.length - 1]++;
}
}
Is this legal?
long longArr[];
int intArr[] = {7, 8, 9};
longArr = intArr;
What is the result of attempting to compile and run this?
interface A{
void aMethod();
}
public class Test implements A{
void aMethod(){
System.out.println("hello");
}
public static void main(String[] args){
Test t = new Test();
t.aMethod();
}
}
What are the class variables?
Explain the following code sample:result = someCondition ? value1 : value2;
Character strings are represented by the class java.lang.String.
Q.2 Solve both questions :
Why is Java called machine independent language? Explain the functionality of JVM.
What is the main difference between an application and applet?
Q.3 Solve both questions :
What are the wrapper classes? Explain their uses.
What does a dynamic Billboard Applet do? What are the three main classes that the applet contain?
Q.4 Solve both questions :
What is the difference between process-based and thread-based multitasking? Give the two ways by which a thread can be created using Java.
What is RMI? What is the difference between Naming.bind and Naming.rebind methods? Write a short code to invoke a remote method using Java RMI.
Q.5 Solve this question :
Write an Applet (Use swings) to display the outputs:

Q.6 Solve both questions :
What are the characteristics of JDBC? What are the various steps for using JDBC? Write a program to demonstrate these steps.
What is the main purpose of a container component in swing?
Q.7 Solve this question :
Design a class named Fan to represent a fan. The class contains:
• Three constants named SLOW, MEDIUM and FAST with values 1, 2 and 3 to denote the fan
speed.
• A private int data field named speed that specifies the speed of the fan (default SLOW).
• A private boolean data field named on that specifies whether the fan is on (default
false).
• A private double data field named radius that specifies the radius of the fan (default 5).
• A string data field named colour that specifies the colour of the fan (default blue).
• The accessor and mutator methods for all four data fields.
• A no-arg constructor that creates a default fan.
• A method named toString() that returns a string description for the fan. If the fan is on, the
method returns the fan speed, colour, and radius in one combined string. If the fan is not on,
the
method returns fan colour and radius along with the string "fan is off" in one combined
string.
Implement the class. Write a test program that creates two Fan objects. Assign maximum speed,
radius
10, colour yellow, and turn it onto the first object. Assign medium speed, radius 5, colour
blue,
and turn it off to the second object. Display the objects by invoking their toString method.
Q.8 Solve this question :
Write a program in Java to demonstrate communication using TCP/IP i.e., using sockets. Write a separate code for a server and client program. The program should display the contents of the file specified in a server onto the client.
Q.9 Write short notes on the following:
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Q.1 Choose the correct answer of any seven of the following:
Size (in bytes) of float and double in Java is:
Which of the following operators is used to allocate memory to array variable in Java?
Which of the following is an incorrect array declaration?
Which of the following is used as default for a member of a class if no access specifier is used for it?
Which of the following methods of string class is used to obtain character at specified index?
What does AWT stand for?
Which of the following keywords is used to prevent the content of a variable from being modified?
Which of the following functions is used to perform some actions when the object is to be destroyed?
What is the order of precedence (highest to lowest) of the following operators?
1. &&
2.
==
3. ?:
Which of the following classes is related to all the exceptions that can be caught by using catch?
Q.2 Solve both questions :
What are the various access specifiers for JAVA classes? Discuss the various types of inheritance supported by JAVA.
Discuss the different types of operators in JAVA along with their precedence relationship.
Q.3 Solve both questions :
What is JDBC connection? Explain the types of JAVA drivers available for database connectivity. List the advantages and disadvantages of each of the mentioned JAVA drivers.
What is the difference between final, finally and finalize in JAVA? Compare and contrast between 'throw' and 'throws'.
Q.4 Solve both questions :
What is a thread? Explain the different states in which a thread can exist. Why does a dead thread occur? What are the actions that can occur when a thread enters blocked state?
Explain the various OOPs concepts in JAVA.
Q.5 Solve both questions :
What is an immutable class? How to create an immutable class?
What is an abstract class? Explain with example. Differentiate between abstract class and interfaces. What are the advantages of interfaces over abstract classes?
Q.6 Solve both questions :
What are applets? Which package contains the applet class? Explain the applet life cycle methods.
What is the difference between swing and applet? How is a frame created and closed in an applet?
Q.7 Solve both questions :
How can we restrict inheritance for a class? Does JAVA support multiple inheritance? Justify your answer.
Write a program to insert an element at the last index of an array in JAVA.
Q.8 Solve both questions :
Explain the concept of static methods with suitable examples.
What is event handling? What are the steps involved in event handling?
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Q.1 Choose the correct answer of any seven of the following:
Size (in bytes) of float and double in Java is:
Which of the following operators is used to allocate memory to array variable in Java?
Which of the following is an incorrect array declaration?
Which of the following is used as default for a member of a class if no access specifier is used for it?
Which of the following methods of string class is used to obtain character at specified index?
What does AWT stand for?
Which of the following keywords is used to prevent the content of a variable from being modified?
Which of the following functions is used to perform some actions when the object is to be destroyed?
What is the order of precedence (highest to lowest) of the following operators?
1. &&
2.
==
3. ?:
Which of the following classes is related to all the exceptions that can be caught by using catch?
Q.2 Solve both questions :
What are the various access specifiers for JAVA classes? Discuss the various types of inheritance supported by JAVA.
Discuss the different types of operators in JAVA along with their precedence relationship.
Q.3 Solve both questions :
What is JDBC connection? Explain the types of JAVA drivers available for database connectivity. List the advantages and disadvantages of each of the mentioned JAVA drivers.
What is the difference between final, finally and finalize in JAVA? Compare and contrast between 'throw' and 'throws'.
Q.4 Solve both questions :
What is a thread? Explain the different states in which a thread can exist. Why does a dead thread occur? What are the actions that can occur when a thread enters blocked state?
Explain the various OOPs concepts in JAVA.
Q.5 Solve both questions :
What is an immutable class? How to create an immutable class?
What is an abstract class? Explain with example. Differentiate between abstract class and interfaces. What are the advantages of interfaces over abstract classes?
Q.6 Solve both questions :
What are applets? Which package contains the applet class? Explain the applet life cycle methods.
What is the difference between swing and applet? How is a frame created and closed in an applet?
Q.7 Solve both questions :
How can we restrict inheritance for a class? Does JAVA support multiple inheritance? Justify your answer.
Write a program to insert an element at the last index of an array in JAVA.
Q.8 Solve both questions :
Explain the concept of static methods with suitable examples.
What is event handling? What are the steps involved in event handling?
Instructions:
- There are Nine Questions in this Paper.
- Attempt five questions in all.
- Question No. 1 is Compulsory.
- The questions are of equal value.
Q.1 Choose the correct answer of the following (any seven)
What is the output of this program?
Which of these have highest precedence?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the default value of Boolean variable?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the output of this program?
Q.2 Solve both questions :
What is the difference between the C, C++ and Java?
Write a program that reads an integer and check whether it is prime number or not.
Q.3 Solve both questions :
What do you understand by polymorphism? Explain with examples.
What do you understand by precedence and Associativity? Explain with examples.
Q.4 Solve both questions :
What is a constructor? Give its properties. How do we declare/define it? Can they be overloaded? Explain types of constructors with example.
What is exception-handling? What are the statements used for it? Show an example.
Q.5 Solve both questions :
Give the definition (1-2 Lines) and an example of the following: i. Thread Class, ii. AWT, iii. JDBC, iv. JVM.
Difference between the following with example: i. Break and continue, ii. Abstract class and interface.
Q.6 Solve both questions :
What is exception-handling? What are the statements used for it? Show an example.
What is inheritance in java? Explain different types of inheritance.
Q.7 Solve both questions :
Create an abstract class Discount Policy. It should have a single abstract method compute Discount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Write a program to find largest and second largest element in an array.
Q.8 Solve both questions :
Write a program to design a class account using the inheritance and static keyword that shows all function of bank (withdrawal, deposit).
Write a program to create a thread that Implement the Runnable interface.
Q.9 Solve both questions :
Write a program to create a Simple class to find out the Area and perimeter of rectangle and box using super and this keyword.
Write a program to find the factorial of a given number using Recursion.
Instructions:
- There are Nine Questions in this Paper.
- Attempt five questions in all.
- Question No. 1 is Compulsory.
- The questions are of equal value.
Q.1 Choose the correct answer of the following (any seven)
What is the output of this program?
Which of these have highest precedence?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the default value of Boolean variable?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the output of this program?
Q.2 Solve both questions :
What is the difference between the C, C++ and Java?
Write a program that reads an integer and check whether it is prime number or not.
Q.3 Solve both questions :
What do you understand by polymorphism? Explain with examples.
What do you understand by precedence and Associativity? Explain with examples.
Q.4 Solve both questions :
What is a constructor? Give its properties. How do we declare/define it? Can they be overloaded? Explain types of constructors with example.
What is exception-handling? What are the statements used for it? Show an example.
Q.5 Solve both questions :
Give the definition (1-2 Lines) and an example of the following: i. Thread Class, ii. AWT, iii. JDBC, iv. JVM.
Difference between the following with example: i. Break and continue, ii. Abstract class and interface.
Q.6 Solve both questions :
What is exception-handling? What are the statements used for it? Show an example.
What is inheritance in java? Explain different types of inheritance.
Q.7 Solve both questions :
Create an abstract class Discount Policy. It should have a single abstract method compute Discount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Write a program to find largest and second largest element in an array.
Q.8 Solve both questions :
Write a program to design a class account using the inheritance and static keyword that shows all function of bank (withdrawal, deposit).
Write a program to create a thread that Implement the Runnable interface.
Q.9 Solve both questions :
Write a program to create a Simple class to find out the Area and perimeter of rectangle and box using super and this keyword.
Write a program to find the factorial of a given number using Recursion.
Instructions:
- There are Nine Questions in this Paper.
- Attempt five questions in all.
- Question No. 1 is Compulsory.
- The questions are of equal value.
Q.1 Choose the correct answer of the following (any seven)
What is the output of this program?
Which of these have highest precedence?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the default value of Boolean variable?
What is the output of this program?
What is the output of this program?
What is the output of this program?
What is the output of this program?
Q.2 Solve both questions :
What is the difference between the C, C++ and Java?
Write a program that reads an integer and check whether it is prime number or not.
Q.3 Solve both questions :
What do you understand by polymorphism? Explain with examples.
What do you understand by precedence and Associativity? Explain with examples.
Q.4 Solve both questions :
What is a constructor? Give its properties. How do we declare/define it? Can they be overloaded? Explain types of constructors with example.
What is exception-handling? What are the statements used for it? Show an example.
Q.5 Solve both questions :
Give the definition (1-2 Lines) and an example of the following: i. Thread Class, ii. AWT, iii. JDBC, iv. JVM.
Difference between the following with example: i. Break and continue, ii. Abstract class and interface.
Q.6 Solve both questions :
What is exception-handling? What are the statements used for it? Show an example.
What is inheritance in java? Explain different types of inheritance.
Q.7 Solve both questions :
Create an abstract class Discount Policy. It should have a single abstract method compute Discount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Write a program to find largest and second largest element in an array.
Q.8 Solve both questions :
Write a program to design a class account using the inheritance and static keyword that shows all function of bank (withdrawal, deposit).
Write a program to create a thread that Implement the Runnable interface.
Q.9 Solve both questions :
Write a program to create a Simple class to find out the Area and perimeter of rectangle and box using super and this keyword.
Write a program to find the factorial of a given number using Recursion.
Instructions:
- There are Nine Questions in this Paper.
- Attempt five questions in all.
- Question No. 1 is Compulsory.
- The questions are of equal value.
Q.1 Choose the correct answer of the following (any seven)
What is the output of this program?
class bitwise_operator {
public static void main (String args[]) {
int var1 = 42;
int var2 = ~var1;
System.out.print(var1 + " " + var2);
}
}
Which of these have highest precedence?
What is the output of this program?
class operators {
public static void main(String args[]) {
int var1 = 5;
int var2 = 6;
int var3;
var3 = ++var2 * var1 / var2 + var2;
System.out.print(var3);
}
}
What is the output of this program?
class output {
public static void main(String args[]) {
int x, y;
x = 10;
x++;
--x;
y = x++;
System.out.println(x + " " + y);
}
}
What is the output of this program?
class conversion {
public static void main(String args[]) {
double a = 295.04;
int b = 300;
byte c = (byte) a;
byte d = (byte) b;
System.out.println(c + " " + d);
}
}
What is the default value of Boolean variable?
What is the output of this program?
class array_output {
public static void main(String args[]) {
char array_variable[] = new char[10];
for (int i=0; i<10; ++i) {
array_variable[i] = '1';
System.out.print(array_variable[i] + " ");
i++;
}
}
}
What is the output of this program?
class exception_handling {
public static void main(String args[]) {
try {
System.out.print("Hello" + " " + 1/0);
} catch (ArithmeticException e) {
System.out.print("World");
}
}
}
What is the output of this program?
class overload {
int y;
int x;
void add(int a) {
x = a + 1;
}
void add(int a, int b) {
x = a + 2;
}
}
class overload_methods {
public static void main(String args[]) {
overload obj = new overload();
int a = 0;
obj.add(6, 7);
System.out.println(obj.x);
}
}
What is the output of this program?
class A {
public int i;
private int j;
}
class B extends A {
void display() {
super.j = super.i + 1;
System.out.println(super.i + " " + super.j);
}
}
class inheritance {
public static void main(String args[]) {
B obj = new B();
obj.i = 1;
obj.j = 2;
obj.display();
}
}
Q.2 Solve both questions :
What is the difference between the C, C++ and Java?
Write a program that reads an integer and check whether it is prime number or not.
Q.3 Solve both questions :
What do you understand by polymorphism? Explain with examples.
What do you understand by precedence and Associativity? Explain with examples.
Q.4 Solve both questions :
What is a constructor? Give its properties. How do we declare/define it? Can they be overloaded? Explain types of constructors with example.
What is exception-handling? What are the statements used for it? Show an example.
Q.5 Solve both questions :
Give the definition (1-2 Lines) and an example of the following: i. Thread Class, ii. AWT, iii. JDBC, iv. JVM.
Difference between the following with example: i. Break and continue, ii. Abstract class and interface.
Q.6 Solve both questions :
What is exception-handling? What are the statements used for it? Show an example.
What is inheritance in java? Explain different types of inheritance.
Q.7 Solve both questions :
Create an abstract class Discount Policy. It should have a single abstract method compute Discount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Write a program to find largest and second largest element in an array.
Q.8 Solve both questions :
Write a program to design a class account using the inheritance and static keyword that shows all function of bank (withdrawal, deposit).
Write a program to create a thread that Implement the Runnable interface.
Q.9 Solve both questions :
Write a program to create a Simple class to find out the Area and perimeter of rectangle and box using super and this keyword.
Write a program to find the factorial of a given number using Recursion.
Instructions:
- There are Nine Questions in this Paper.
- Attempt five questions in all.
- Question No. 1 is Compulsory.
- The questions are of equal value.
Q.1 Choose the correct answer of the following (any seven)
What is the output of this program?
class bitwise_operator {
public static void main (String args[]) {
int var1 = 42;
int var2 = ~var1;
System.out.print(var1 + " " + var2);
}
}
Which of these have highest precedence?
What is the output of this program?
class operators {
public static void main(String args[]) {
int var1 = 5;
int var2 = 6;
int var3;
var3 = ++var2 * var1 / var2 + var2;
System.out.print(var3);
}
}
What is the output of this program?
class output {
public static void main(String args[]) {
int x, y;
x = 10;
x++;
--x;
y = x++;
System.out.println(x + " " + y);
}
}
What is the output of this program?
class conversion {
public static void main(String args[]) {
double a = 295.04;
int b = 300;
byte c = (byte) a;
byte d = (byte) b;
System.out.println(c + " " + d);
}
}
What is the default value of Boolean variable?
What is the output of this program?
class array_output {
public static void main(String args[]) {
char array_variable[] = new char[10];
for (int i=0; i<10; ++i) {
array_variable[i] = '1';
System.out.print(array_variable[i] + " ");
i++;
}
}
}
What is the output of this program?
class exception_handling {
public static void main(String args[]) {
try {
System.out.print("Hello" + " " + 1/0);
} catch (ArithmeticException e) {
System.out.print("World");
}
}
}
What is the output of this program?
class overload {
int y;
int x;
void add(int a) {
x = a + 1;
}
void add(int a, int b) {
x = a + 2;
}
}
class overload_methods {
public static void main(String args[]) {
overload obj = new overload();
int a = 0;
obj.add(6, 7);
System.out.println(obj.x);
}
}
What is the output of this program?
class A {
public int i;
private int j;
}
class B extends A {
void display() {
super.j = super.i + 1;
System.out.println(super.i + " " + super.j);
}
}
class inheritance {
public static void main(String args[]) {
B obj = new B();
obj.i = 1;
obj.j = 2;
obj.display();
}
}
Q.2 Solve both questions :
What is the difference between the C, C++ and Java?
Write a program that reads an integer and check whether it is prime number or not.
Q.3 Solve both questions :
What do you understand by polymorphism? Explain with examples.
What do you understand by precedence and Associativity? Explain with examples.
Q.4 Solve both questions :
What is a constructor? Give its properties. How do we declare/define it? Can they be overloaded? Explain types of constructors with example.
What is exception-handling? What are the statements used for it? Show an example.
Q.5 Solve both questions :
Give the definition (1-2 Lines) and an example of the following: i. Thread Class, ii. AWT, iii. JDBC, iv. JVM.
Difference between the following with example: i. Break and continue, ii. Abstract class and interface.
Q.6 Solve both questions :
What is exception-handling? What are the statements used for it? Show an example.
What is inheritance in java? Explain different types of inheritance.
Q.7 Solve both questions :
Create an abstract class Discount Policy. It should have a single abstract method compute Discount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.
Write a program to find largest and second largest element in an array.
Q.8 Solve both questions :
Write a program to design a class account using the inheritance and static keyword that shows all function of bank (withdrawal, deposit).
Write a program to create a thread that Implement the Runnable interface.
Q.9 Solve both questions :
Write a program to create a Simple class to find out the Area and perimeter of rectangle and box using super and this keyword.
Write a program to find the factorial of a given number using Recursion.
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Questions
Answer any seven of the following questions :
Define hardware and software.
What is the JVM?
What are the input and output of a Java compiler?
What are the benefits of using constants?
Can different types of numeric values be used together in computation?
List six comparison operators.
Write an if statement that assigns 1 to , if is greater than 0.
What are the differences between a while loop and a do-while loop?
How do you access elements of an array?
How do you determine whether a character is alphanumeric?
Answer the following:
Write a Java Programming that displays 'Welcome to Java' five times.
Describe the history of Java. Can Java run on any machine?
Answer the following:
Describe syntax errors, runtime errors and logic errors.
Write a program that reads an integer and check. Whether it is even?
Answer the following:
Write a program that displays a random uppercase letter.
Write a program to sum the following series : $\frac{1}{3} + \frac{3}{5} + \frac{5}{7} + \frac{7}{9} + \frac{9}{11} + \frac{11}{13} + \dots + \frac{95}{97} + \frac{97}{99}$
Answer the following:
Explain method abstraction and stepwise refinement.
Declare and create a 4-by-5 int matrix.
Answer the following:
Write a program that reads in eleven numbers and displays duplicate numbers.
How does a scanner work? Explain.
Answer the following:
Write a program that removes all the occurrences of a specified string from a text file.
Explain the protected data and methods.
Answer the following:
What is encapsulation? What are the benefits of data field encapsulation?
Describe the
Write short notes on any four of the following :
JDBC
Thread communication
Polymorphism
Factory methods
AWT components
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Questions
Answer any seven questions :
Which of the following functions is performed by a constructor?
Which of the following factors supports the statement that reusability is a desirable feature of a language?
Which will legally declare, construct and initialize an array?
What is the numerical range of a char?
Public class Test {} What is the prototype of the default constructor?
Which of the following provides a reuse mechanism?
Which is not a valid comment style in Java?
What is the correct signature of the main method?
Which of the following statements is correct?
Which keyword is used to inherit class?
Answer the following:
Explain the main features of object-oriented programming language.
List the eight basic data types used in Java. Give examples.
Answer the following:
Discuss the Java error handling mechanism. What is the difference between runtime (unchecked) exceptions and checked exceptions? What is the implication of catching all the exceptions with the type 'Exception'?
Explain abstract class with a program. What is the Java virtual machine?
Answer the following:
What is an applet?
Write a Java program for applet to reverse a user inputted string.
Answer the following:
What is the main difference between pass-by-reference and pass-by-value?
What are access modifiers? Explain each of the access modifiers in Java.
Answer the following:
What is AWT? What are the different AWT components in Java?
Write a program in Java to create and close a frame.
Answer the following:
What is the major difference between an interface and a class?
Write a program to multiply two matrices A and B. (Assume A and B are two-dimensional matrices.)
Answer the following:
Explain interface in a package.
Create an applet which contains a Jpopup-Menu with the following items : New, Open, Cut, Copy, Paste. Display an appropriate message while clicking the respective menu items and print the output to the console.
Answer the following:
Explain deadlock in threads with the help of a program.
Write a program in Java to multiply two 2-dimensional matrices inputted from user.
Instructions:
- The marks are indicated in the right-hand margin.
- There are NINE questions in this paper.
- Attempt FIVE questions in all.
- Question No. 1 is compulsory.
Questions
Answer any seven questions :
Which of the following functions is performed by a constructor?
Which of the following factors supports the statement that reusability is a desirable feature of a language?
Which will legally declare, construct and initialize an array?
What is the numerical range of a char?
Public class Test {} What is the prototype of the default constructor?
Which of the following provides a reuse mechanism?
Which is not a valid comment style in Java?
What is the correct signature of the main method?
Which of the following statements is correct?
Which keyword is used to inherit class?
Answer the following:
Explain the main features of object-oriented programming language.
List the eight basic data types used in Java. Give examples.
Answer the following:
Discuss the Java error handling mechanism. What is the difference between runtime (unchecked) exceptions and checked exceptions? What is the implication of catching all the exceptions with the type 'Exception'?
Explain abstract class with a program. What is the Java virtual machine?
Answer the following:
What is an applet?
Write a Java program for applet to reverse a user inputted string.
Answer the following:
What is the main difference between pass-by-reference and pass-by-value?
What are access modifiers? Explain each of the access modifiers in Java.
Answer the following:
What is AWT? What are the different AWT components in Java?
Write a program in Java to create and close a frame.
Answer the following:
What is the major difference between an interface and a class?
Write a program to multiply two matrices A and B. (Assume A and B are two-dimensional matrices.)
Answer the following:
Explain interface in a package.
Create an applet which contains a Jpopup-Menu with the following items : New, Open, Cut, Copy, Paste. Display an appropriate message while clicking the respective menu items and print the output to the console.
Answer the following:
Explain deadlock in threads with the help of a program.
Write a program in Java to multiply two 2-dimensional matrices inputted from user.