Tag: programming languages
Questions Related to programming languages
The assigned port at the server can be obtained in the client side by
Which one of the following is not marker interface?
Which algorithm is used in thread scheduling?
Which modifier tells JVM to avoid object persistence during serialization?
Main is the only thread that runs when a Java program is started?
Which of the following does not guarantee the order of data storage will be constant over a period of time?
What is the result of compiling and running the following program? import java.util.Formatter; class Format2 { public static void main(String[] args) { String s="hello123"; Formatter f=new Formatter(); f.format("%S",s); System.out.println(f); } }