What is java Buzzwords? Write a java program to find simple interest. Use command line argument to take input.
What are uses of super keyword? Write a java program to create base class Fruit which hasname, taste and size as its attributes and method called eat() which describe name and its taste.Inherit the same in two other class Apple and Orange and override the eat() method to representeach fruit taste.
What is difference between String and StringBuffer class? Write a java program to identify the input string is palindrome or not?
Why we need file handling in java? Write java program to read file into a variable and then write a variable's content into another file.
What is the purpose of valueof() method in Wrapper classes? Write a java program to generate random integer, double and bytes.
What is internal frames? Write a java program that display two internal frame within some parentframe.
What is JDBC? Write java program to connect database College and display all studentinformation (Roll, Name, Address and Program) from Student table.
Attempt any TWO questions
[2x10=20]What is Constructor overloading? Write a class Distance containing private variable feet of type int and inches of type int, suitable constructors and three methods addDistance, subtractDistanceand display Distance for adding, subtracting and displaying objects. Write a separate classMyDistance containing main method to create, add, subtract and display distance objects.
a) What is difference between checked and unchecked exception? Write a java program that willread college name from keyboard and display it on screen. The program should throw an exception when length of college name is more than 50.
b) What are methods used for inter-thread communication? Write a java program to create twothreads so that one thread prints even number and other thread prints odd number between 100 and 200.
What is MVC design pattern? Write a GUI program using swing components to calculatesum and difference of two numbers. Use two text fields for input and pre-built dialog box forutput. Your program should display sum if Add button and difference if subtract button isclicked.