This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Best Top 101 Java Interview Questions and Answers for freshers and experienced

Best Top 101 Java Interview Questions and Answers for freshers and experienced The idea of this post Best Top 101 Java Interview Questions and Answers for freshers and experienced is to give an idea of questions to viewers of this post.  Best Top 101 Java Interview Questions and Answers for freshers and experienced are beneficial for students as well as candidates appearing for interviews. What is Java technology ? What are the benefits of OOPS? What is Java Development Kit (JDK) ? What are the Major Features of Java Technology...

Write a C Program to Reverse a Number using while loop

Write a C Program to Reverse a Number using while loop In this post we will discuss Program to Reverse a Number using while loop. In this program, we will supply an integer value, in the output we will get the reverse of the entered number. Suppose you enter a number as 3246 then the output of the program will be 6423 main() { int n, s; printf("Enter Number "); scanf("%d",&n); s = 0; while(n > 0) { s = s*10; s = s + (n%10); n = n...

Write a program to sum the digits of a number in C Language

Write a program to sum the digits of a number in C Language. program to sum the digits of a number  main() { int n, s=0, m; printf("Enter the Number"); scanf("%d",&n); while(n>0) { m=n%10; s=s+m; n=n/10; } printf("Sum of digits = %d",s); } ...

Write a program to calculate factorial of a number in C language usingfor loop

Write a program to calculate factorial of a number in C language using for loop This is a famous C language program while learning C language programming. Many times factorial of a number program is asked in exams at board levels and university levels. factorial of a number  Factorial of a number can be calculated mathematically by multiplying all the natural numbers starting from 1 up to the number, whose factorial is to be calculated. For...

write a program to generate the Fibonacci series in c language

Write a Program to Generate the Fibonacci Series in C Language Fibonacci series program is one the popular program among learners of any programming language. In fibonacci series we have terms as :   1        1        2        3       5      8   and so on. Program to Generate the Fibonacci Series The first two terms are one, and third term...

Top 10 Best Winter Vacation Spots in the World

Top 10 Best Winter Vacation Spots in the World Everyone Plans to visit Hill stations in Summer. What are the Top 10 Best Winter Vacation Spots in the World ? We have tried to mention Top 10 Best Winter Vacation Spots in the World  in this post as per our point of view. Mussoorie Mussoorie is Famous Hill station in Summer. It is in the state of Uttarakhand, in Dehradoon District. Mussoorie is more popular by the name  Queen of Hills. Mussoorie is at a distance of 34 kms from Dehradun...