Is void a return type?
No Answer is Posted For this Question
Be the First to Post Answer
Write a java program to count the number of words present in a string?
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(); } }
Add a value x to array from index l to r where 0 <= l <= r <= n-1
Can we extend immutable class?
can we Connect Applet to Data Base ? with Discriptiom. and also What is Diff. from Applet & Servlet?
Hi friends am new to java. I read jar file means collection of java files. For executing struts application what are the necessary jar files. " struts.jar " file contains what. can u explain
What is mean by encoding?
How do you write a scanner class in java?
Explain parallel processing in java8?
What is a short in java?
What is the purpose of encapsulation?
Do you know how to reverse string in java?