JSP Programs
1) Write a JSP program to accept number and display table and factorial of number Html <%@ page language=”java” contentType=”text/html; charset=ISO-8859-1″ pageEncoding=”ISO-8859-1″%> <!DOCTYPE html> <html> <head> <meta charset=”ISO-8859-1″>...
JDBC Programs
Here are examples based on JDBC. I have used Eclipse IDE and MySQL database. Video Tutorial is also available, here is the playlist link: JDBC VIDEO TUTORIAL Q1)...
Java Interview Questions
Do you have what it takes to ace a Java Interview? We are here to help you in consolidating your knowledge and concepts in Java. The following article...
Core Java Programming Questions
WAP program to calculate Simple Interest. WAP program to find Largest of Three Numbers. Write a program to accept the initial letter of the name...
CORE JAVA MCQs with Answer
What is the range of short data type in Java? a) -128 to 127 b) -32768 to 32767 c) -2147483648 to 2147483647 d) -5000 TO 5000 ...
Brick Breaker Game in Java
In this blog tutorial, we will create a simple game clone using Java 2D and event handling. In this game, we have one paddle, one ball, and 18...
Basic Java Programs
1. WAP to swap two numbers without using temp variable. package assignments; import java.util.Scanner; public class Swap2NumbersWithoutTemp { public static void main(String args[]) { Scanner sc = new...
20 Different Java Pattern Programs (Number Pattern)
Write a program in Java to display the following pattern: 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 public class...
