0% found this document useful (0 votes)
234 views3 pages

Lab Assignmts MCA IV Java

The document provides a list of 38 lab assignments for a Java programming class. The assignments cover a range of Java topics including object oriented concepts, applets and AWT, multithreading, I/O packages, networking, JDBC, RMI, and Java beans. Students are asked to write programs demonstrating their understanding of topics like exception handling, classes, interfaces, file I/O, sockets, database connectivity, remote method invocation, and more.

Uploaded by

pradip86
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
Download as doc, pdf, or txt
0% found this document useful (0 votes)
234 views3 pages

Lab Assignmts MCA IV Java

The document provides a list of 38 lab assignments for a Java programming class. The assignments cover a range of Java topics including object oriented concepts, applets and AWT, multithreading, I/O packages, networking, JDBC, RMI, and Java beans. Students are asked to write programs demonstrating their understanding of topics like exception handling, classes, interfaces, file I/O, sockets, database connectivity, remote method invocation, and more.

Uploaded by

pradip86
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1/ 3

ASMs IBMR

ASSIGNMENT LIST SUBJECT: JAVA Prof. Sachin Patil, Prof. Haridini Pandav and Prof. Sheetal U. CLASS: MCA (IV)

Sr. No
1

Lab Assignment Questions


Object Oriented Concepts 1) Write a JAVA program to accept age of senior citizen from user, if age is < 60
throw In valid age exception. 2) Write a book class with attributes bookno, title, author, book availability status. Write 3 constructors and a method to check availability of given book. 3) Write a Java program to print the following pattern : 12345 1234 123 12 1 4) Write a Java program that accepts a string of characters and prints distinct character with number of occurrences. 5) Write a class Rectangle having two instance variables length and breadth and two methods area and perimeter. It accepts values from the user and prints area perimeter of the Rectangle. 6) Write a Java program to find out maximum of array elements and check for array limit. (Use exception handling) 7) Write a program in Java which accepts two strings using command line argument. Concatenate these strings without using standard method. 8) Create a package vehicle which will have 2 classes as class two-wheeler and four-wheeler. Two-wheeler with method disp. (cc,price), Four-wheeler with method show (regno., regyear).

Applet & AWT 9) Write AWT program to display ball at the center of the window. When user
presses arrow keys, ball should move in respective direction (left, right, up and down) 10) Write applet which will display 3 scrollbars and when scrollbar value is changed, set background color accordingly. 11) Design an Applet to accept details of food places from user, like Name of Restaurant, location, phone No., Type of food, famous food item and display them in proper format. 12) Write a program to add two numbers using two text fields to take user input and display result in third text field.

Multithreading
13) Write a JAVA program to create following threads : (a) Thread A printing cumulative sum of natural numbers

ASMs IBMR
ASSIGNMENT LIST SUBJECT: JAVA Prof. Sachin Patil, Prof. Haridini Pandav and Prof. Sheetal U. CLASS: MCA (IV)

(b) Thread B printing alternative characters a, c, e........ 14) Write a Java program which will display name and priority of current Thread. Change name of Thread on My Thread and set the priority to 2 and display it on screen. 4

I/O Package
15) Write a Java program to read contents of file, encrypt contents and display. 16) Write a program that reads data from one file and write that data in another file in reverse order. 17) Write a program to accept filename and a word from user. Count the occurrence of given word in file and display the total number using character stream.

Networking
18) Write short notes on i) java.net.URL ii)java.net.URLConnection iii)java.net.Socket iv)java.net.ServerSocket v)java.net.InetAddress 19) Write a program to download yahoo index page using URL and URLConnection classes. 20) Write a program echo strings from server to client. 21) Write a program to create Application for Client and Server communication(ChatServer application and ChatClient application) 22)Write a program to accept file name from a client and server will send all the file contents to client.(Write both Client as well as Server application) 23) Write a Java Socket program that runs on Client and sends a messge to server at port 2000. The program should display message returned by server. b) Write a Java Socket program that runs on server at port 2000, which accepts a message from client and sends the encrypted message to client.

JDBC
24) Write a note on JDBC Drivers. 25) Write short notes on i) java.sql.DriverManager ii) java.sql.Connection iii) java. sql.Statement iv) java. sql.PreparedStatement

ASMs IBMR
ASSIGNMENT LIST SUBJECT: JAVA Prof. Sachin Patil, Prof. Haridini Pandav and Prof. Sheetal U.
v) java. sql.CallableStatement vi) java.sql.ResultSet vii) java.sql.ResultSetMetaData 26) Write a program to create a table(ex. Student(studid,name,dob,marks)) using statement interface. 27) Write a program to insert record in the above created table. 28) Write a program to search the record and display the same on console given the student id. 29) Write a program to display all column names of above table. 30) Write a program to update the name of student by accepting studentid. Use PreparedStatement. 31) Explain the concept of Connection pooling. 32) Write a program to create a procedure in oracle and our application should execute that procedure using CallableStatement. 33) Write a JDBC program, to display city wise vendor details from vendor table. Assume suitable structure. 34) Write JDBC program that inserts following details to employee table :empno empname, empsal 7

CLASS: MCA (IV)

RMI
35) What is RMI? 36) Explain Stub and Skeleton concepts. 37) Explain RMI Architecture with suitable diagram. 38) Write short note on a. Java.rmi.Naming b. Java.rmi.UnicastRemoteObject c. Java.rmi.Registry d. Java.rmi.server package e. Java.rmi.RMISecurityManager Write methods from each of these classes/interfaces. 39) Write RMI program to invoke Simple Interest calculation method from client side after accepting principle amount, rate of interest, number of years.

Java Beans
40) Explain: a. What is Java Bean? b. What is a JAR file?

You might also like