Course Code JAVA Programming LTP J C CSE1007 3 0 2 0 4 Pre-Requisite - Syllabus Version v. 1.00 Course Objectives
Course Code JAVA Programming LTP J C CSE1007 3 0 2 0 4 Pre-Requisite - Syllabus Version v. 1.00 Course Objectives
CSE1007 3 0 2 0 4
Pre-requisite - Syllabus version
v. 1.00
Course Objectives:
To understand the core language features of Java and its Application Programming Interfaces (API) for
implementing threads, exceptions, database connections, file management and development of dynamic web
applications using JavaFX GUI , Servlets and Java Server Pages
Text Book(s)
1. Herbert Schildt , The Complete Reference -Java, Tata McGraw-Hill publisher, 10th Edition, 2017.
Reference Books
1. Y. Daniel Liang, Introduction to Java programming -comprehensive version-11th Edition, Pearson publisher,
2017
2. Cay Horstmann, Big Java , 4th edition, John Wiley & Sons publisher, 5th edition, 2015
3. E.Balagurusamy, Programming with Java , Tata McGraw-Hill publishers, 5rd edition, 2014.
4. Paul J. Deitel, Harvey Deitel ,Java SE8 for Programmers (Deitel Developer Series) Prentice Hall publisher, 3rd
Edition, 2014
Mode of Evaluation:
2. Write a program to demonstrate the knowledge of students in String handling. Eg., Write a
program to read a chemical equation and find out the count of the reactants and the
products. Also display the count of the number of molecules of each reactant and product.
Eg., For the equation, 2NaOH + H2SO4 -> Na2SO4+ 2H2O, the O/P should be as
follows.
Reactants are 2 moles of NaOH, 1 mole of H2SO4.
Products are 1 mole of Na2SO4 and 2 moles of H2O.
3. Write a program to demonstrate the knowledge of students in Inheritance.
Eg: Assume that a bank maintains two kinds of accounts for customers, one called as
savings account and the other as current account. The savings account provides compound
interest and withdrawal facilities but no cheque book facility. The current account provides
cheque book facility but no interest. Current account holders should maintain a minimum
balance and if the balance falls below this level, a service charge is imposed.
Create a class account that stores customer name, account number and type of account.
From this derive the classes cur_acct and sav_acct to make them more specific to their
requirements. Include necessary member functions in order to achieve the following tasks :
a) Accept deposit from a customer and update the balance.
b) Display the balance
c) Compute and deposit interest.
d) Permit withdrawal and update the balance.
e) Check for the minimum balance, impose penalty, necessary, and update the balance.
4. Write a program to demonstrate the knowledge of students in working with user-defined
packages and sub-packages.
Eg., Within the package named ‗primespackage‘, define a class Primes
which includes a method checkForPrime() for checking if the given number is prime or
not. Define another class named TwinPrimes outside of this package which will display all
the pairs of prime numbers whose difference is 2. (Eg, within the range 1 to 10, all possible
twin prime numbers are (3,5), (5,7)). The TwinPrimes class should make use of the
checkForPrime() method in the Primes class.
5. Write a program to demonstrate the knowledge of students in Java Exception handling.
Eg., Read the Register Number and Mobile Number of a student. If the Register Number
does not contain exactly 9 characters or if the Mobile Number does not contain exactly 10
characters, throw an IllegalArgumentException. If the Mobile Number contains any
character other than a digit, raise a NumberFormatException. If the Register Number
contains any character other than digits and alphabets, throw a NoSuchElementException.
If they are valid, print the message ‗valid‘ else ‗invalid‘
6. Write a program to demonstrate the knowledge of students in multithreading. Eg., Three
students A, B and C of B.Tech- II year contest for the PR election. With the total strength
of 240 students in II year, simulate the vote casting by generating 240 random numbers (1
for student A, 2 for B and 3 for C) and store them in an array. Create four threads to
equally share the task of counting the number of votes cast for all the three candidates. Use
synchronized method or synchronized block to update the three count variables. The main
thread should receive the final vote count for all three contestants and hence decide the PR
based on the values received.
7. Write a program to demonstrate the knowledge of students in File handling. Eg., Define a
class ‗Donor‘ to store the below mentioned details of a blood donor. Name, age, Address,
Contact number, blood group, date of last donation Create ‗n‘ objects of this class for all
the regular donors at Vellore. Write these objects to a file. Read these objects from the file
and display only those donors‘ details whose blood group is ‗A+ve‘ and had not donated
for the recent six months.
8. Write a program to demonstrate the knowledge of students in working with Java collection
framework. Eg., Assume only a maximum of 3 courses can be registered by a student for
week end semester classes. Create a hashmap ‗h1‘ with ‗n‘ key-value pairs where keys are
the names of students and values are the courses registered by them. Create another
hashmap ‗h2‘ with ‗m‘key-value pairs where keys are the names of courses offered for
B.Tech and values are the names of faculty handling the courses. Write appropriate code to
- Add or remove a student from h1 - Iterate over the maps and display the key-value pairs
stored in them - Given a student name, fetch the names of all those who teach him/her. Eg:,
if the elements of h1 are
Stud Name Courses Registered
A Python, Maths, C
B C, C++
C C++, Physics, Chemistry
And if the elements of h2 are