Lab Assignmts MCA IV Java
Lab Assignmts MCA IV Java
ASSIGNMENT LIST SUBJECT: JAVA Prof. Sachin Patil, Prof. Haridini Pandav and Prof. Sheetal U. CLASS: MCA (IV)
Sr. No
1
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
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?