Monday, 31 July 2017
Write a Java program to print numbers between 1 to 100 which are divisible by 3, 5 and by both.
What's Related?

Write a Java program to create and display unique three-digit number using 1, 2, 3, 4. Also count how many three-digit numbers are there.

Write a Java program to count the letters, spaces, numbers and other characters of an input string.

Write a Java program to reverse a string.

Write a Java program to compute the distance between two points on the surface of earth. Distance between the two points [ (x1,y1) & (x2,y2)] d = radius * arccos(sin(x1) * sin(x2) + cos(x1) * cos(x2) * cos(y1 - y2)) Radius of the earth r = 6371.01 Kilometers
UGC NET COMPUTER SCIENCE SOLVED QUESTION PAPER - 1 - JULY 2016 / PART-1
Write a Java program to accept a number and check the number is even or not. Prints 1 if the number is even or 0 if the number is odd.
Home