Welcome To The World Of Java

This site will teach you the basics of Java. It is not necessary to have any prior programming experience.

Write a java program to obtain constructors of a class?

7:24:00 AM | Comments (0)

class ConsInfo { public static void main(String[] args) {  if (args.length == 0) {   System.out.println("PLEASE PASS THE CLASS NAME..!");  } else {   try...

Read more

Identifiers in Java

8:48:00 PM | Comments (0)

A name in the program is an identifier it may be class name or method name, variable name or label name.Rules for defining...

Read more

Print Sum of Series 1/1^2 + 1/2^2 + 1/3^2 …………1/n^2 in Java.

12:21:00 PM | Comments (0)

import java.util.Scanner; public class Series  {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   System.out.println("Enter the no of terms...

Read more

Print Sum of series 1+ (1+2) + (1+2+3)……. (1+2+3+…….n) in Java

12:06:00 PM | Comments (5)

import java.util.Scanner; public class Series   {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   System.out.println("Enter the no of...

Read more

Print sum of series 1/1^3 – 1/2^3 + 1/3^3…….1/n^3 in Java.

11:47:00 AM | Comments (0)

import java.util.Scanner; public class  Series  {  public static void main(String[] args)   {   Scanner sc = new Scanner(System.in);   double sum = 0;...

Read more

Print Series 1, 11, 111, 1111……..n terms in Java.

11:45:00 AM | Comments (17)

import java.util.Scanner; public class Series   {  public static void main(String args[])  {   Scanner sc = new Scanner(System.in);   System.out.print("Enter the number of terms:...

Read more

Print Series 1, 12, 123, 1234, …………n in Java.

11:36:00 AM | Comments (11)

import java.util.Scanner; public class Series  {  public static void main(String args[])   {   Scanner sc = new Scanner(System.in);   System.out.print("Enter the number of terms:...

Read more

Print Series 1, -3, 5, -7, …………n terms in Java.

11:26:00 AM | Comments (1)

import java.util.Scanner;public class OddSeries { public static void main(String args[])   {  Scanner sc = new Scanner(System.in);  System.out.print("Enter the number of terms: ");  int n...

Read more

Print Series 2, -4, 6, -8,………n terms in Java

6:28:00 AM | Comments (0)

import java.util.Scanner;public class Series { public static void main(String args[]) {  Scanner sc = new Scanner(System.in);  int c, i = 2, n;    ...

Read more

Page 1 of 6123456Next