Prime number is a number which is not having any factors except 1 & itself. Java Program to Print Prime
Continue readingJava Program to Calculate Area And Circumference of Circle
In this java program we are going to calculate area and circumference of a circle. For this we will use
Continue readingJava program to count the occurrence of each character in a string
In this Java program, we will have to count the frequency of the occurrence of each character of a string
Continue readingJava Program to reverse words in a String
In this java program going to reverse the every words of string and display the reversed string as an output.
Continue readingJava program to generate random number
Program to generate random numbers import java.util.*; class GenerateRandom { public static void main(String[] args) { int count; Random rand_number
Continue readingJava Program to Swap two numbers using Bitwise Operator
Below java program going to swap two numbers using bitwise XOR operator. A bitwise XOR operator comparing bits of two
Continue readingAttempt to fetch logical page (1:64920) in database 2 failed
when executing certain SP get following error:- Error Msg 605, Level 21, State 3 attempt to fetch logical page (1:64920)
Continue readingThe server principal already exists – Msg 15025
When we tried to creating login from SSMS then getting error saying “The server principal already exists”. I thought that
Continue readingJava Program to Convert Fahrenheit into Celsius
We are going to use below formula to Write a Program to Convert Fahrenheit to Celsius in Java Formula to
Continue readingJava – How to Convert Local Time To GMT In Java
Converting Local Time to GMT timezone or any other timezone in Java is easy because java JDK provide class java.util.Timezone
Continue reading