Write a Java Program to demonstrate a Generic Class.
Write a Java Program to demonstrate Generic Methods.
Write a Java Program to demonstrate Generic Method –part 2
Write Program in java to understand the use of unbound wildcards
Write Program in java to understand the use of upper bound wildcards
Write a Java program to create List containing list of items of type String and use for-each loop to print the items of the list.
Write a Java program to create List containing list of items and use ListIterator interface to print items present in the list. Also print the list in reverse/ backward `direction.
Write a Java program to create a Set containing list of items of type String and printthe items in the list using Iterator interface. Also print the list in reverse/ backward direction.
Write a Java program using Set interface containing list of items and perform the following operations:
a.Add items in the set.
b.Insert items of one set in to other set.
c.Remove items from the set
d.Search the specified item in the set
Write a Java program using Map interface containing list of items having keys andassociated values and perform the following operations:
a.Add items in the map.
b.Remove items from the map
c.Search specific key from the map
d.Get value of the specified key
e.Insert map elements of one map in to other map.
f.Print all keys and values of the map.
Write a Java program using Lambda Expression to print “Hello World”.
Write a Java program using Lambda Expression with single parameters.
Write a Java program using Lambda Expression with multiple parameters to add twonumbers.
Write a Java program using Lambda Expression to calculate the following:
a.Convert Fahrenheit to Celcius
b.Convert Kilometers to Miles.
Write a Java program using Lambda Expression with or without return keyword.
Write a Java program using Lambda Expression to concatenate two strings.
Create a Telephone directory using JSP and store all the information within adatabase, so that later could be retrieved as per the requirement. Make your own assumptions.
Write a JSP page to display the Registration form (Make your own assumptions)
Write a JSP program to add, delete and display the records from StudentMaster (RollNo, Name, Semester, Course) table
Design loan calculator using JSP which accepts Period of Time (in years) and Principal Loan Amount. Display the payment amount for each loan and then list the loan balance and interest paid for each payment over the term of the loan for the following time period and interest rate:
a.1 to 7 year at 5.35%
b.8 to 15 year at 5.5%
c.16 to 30 year at 5.75%
Write a program using JSP that displays a webpage consisting Application form for change of Study Center which can be filled by any student who wants to change his/her study center. Make necessary assumptions
Write a JSP program to add, delete and display the records from StudentMaste r(RollNo, Name, Semester, Course) table.
Write a JSP program that demonstrates the use of JSP declaration, scriptlet,directives, expression, header and footer.
Write a program to print “Hello World” using spring framework.
Write a program to demonstrate dependency injection via setter method.
Write a program to demonstrate dependency injection via setter method.
Write a program to demonstrate dependency injection via Constructor.
Write a program to demonstrate Spring AOP –All
Write a program to demonstrate Spring AOP – before advice.
Write a program to demonstrate Spring AOP – after advice
Write a program to demonstrate Spring AOP – around advice.
Write a program to demonstrate Spring AOP – after returning advice.
Write a program to demonstrate Spring AOP – after throwing advice.
Write a program to demonstrate Spring AOP – pointcuts.
Write a program to insert, update and delete records from the given table.
Write a program to demonstrate PreparedStatement in Spring JdbcTemplate
Write a program in Spring JDBC to demonstrate ResultSetExtractor Interface
Write a program to demonstrate RowMapper interface to fetch the records from thedatabase.
Write a program to create a simple Spring Boot application that prints a message.
Write a program to demonstrate RESTful Web Services with spring boot.