Java interview questions and answers Top 20 Frequently asked Interview questions in Core Java Here we have list of important questions with answers for Core java interview. Free online study material for IT companies Interview. 1. When do you override Read More …
Tag: Java
Java Free Online Test Quiz 4
Core Java Free Online Test Quiz 3
Java Online Test Series Quiz 2
Java Free Online Test Series
Java Free Online Test series for Jobs in Top Private Companies and Government jobs in India. We have all type of Quizzes for upcoming Government and Private Jobs. There are 20 questions in this test 10 mins to solve attempt Read More …
Program to check Prime Numbers in Java (Java Code)
package flizz; /** * * @author Abhay */ public class CheckPrime { public static void main(String args[]){ int i,m=0,flag=0; int n=17;//it is the number to be checked m=n/2; for(i=2;i<=m;i++){ if(n%i==0){ System.out.println(“Number is not prime”); flag=1; break; } } if(flag==0) System.out.println(“Number Read More …
What is Java Virtual Machine (JVM) ?
JVM stands for Java Virtual Machine . JVM is an abstract computing machine that enables a computer to run a Java program. JVM perform following main tasks : Loads Code Verifies Code Executes Code Provides runtime environment A specification where working Read More …