What is boolean keyword in java?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

How many bytes is a string java?

0 Answers  


Explain about transient variables in java?

0 Answers  


What causes memory leak in java?

0 Answers  


What best practices should you follow while writing multithreaded code in java?

0 Answers  


List two java ide’s?

0 Answers  


What is the best definition for data?

0 Answers  


What happens when heap memory is full?

0 Answers  


What is Java Annotations?

0 Answers  


How to make a read-only class in java?

0 Answers  


Explain creating threads by extending thread class ?

0 Answers  


How many unicode characters are there?

0 Answers  


Is it possible to write JAVA program without including any of the packages,such as "import java.io.*"; bcoz I instantly wrote a code without "import..." statement and runned the program on command Line & it worked. the code is: class Person { String name; int age; Person(String s,int a) { name = s; age = a; } accept() { System.out.println(name+"Hi!!!!!"); System.out.println(age); } } class Demo { public static void main(Strings args[])throws IOException { String name = args[0]; int age = Integer.parseInt(args[1]); Person p = new Person(name,age); p.accept(); } }

3 Answers  


Categories