Description: programming languages Online Quiz - 94 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
The fork() system call is used for the following process management
How can I forward all the arguments given to my script to another command? Here Command is the name of the command to be execute.
In a crontab the job to be executed is scheduled as follows . 10 06 * 8 6 Job to be scheduled Which of the following statement is true?
Inode contains the following fields?
class A { public void add(int,int) { System.out.println("Normal"); } public void add(int... a) { System.out.println("Varargs"); } public static void main(String... args) { new A().add(9,9); } } what is the output??
Which one of these are legal combinations when used with a method??
Consider the following code snippet String s1="Hello"; String s2=s1; s1.concat("World"); System.out.println(s1+"---"+s2); What is the output??
Given a part of code tell the output(Assume that the code is perfect ie no compiler error or runtime exceptions) Pattern p=Pattern.compile("\d+"); Matcher m=p.matcher("345678"); while(m.find()) { System.out.print("-"+m.group()+"-"); }
Which one of these are true regarding inheritance in java??
Which one of these are JVM thrown exceptions??
int[] a,b[] and int a[],b[] are same??
class A { public static void main(String args[]) { System.out.println(args.length); } } what is the output if the code is run using command line invocation java A
Consider this as a part of a code which has no compilation errors or runtime exceptions 21.Integer i1=1000; 22.Integer i2=1000; 23.System.out.println(i1==i2); what is the output?
class A { public void main(String args[]) { System.out.println("Hello World!"); } } What is the output of the program?
How can we manage loss of unhandled packets / Requests in any application
Which contract is used in WCF Service for Exceptions
how can we provide authetication in Windows Service, So that it will not ask for user credentials at the time of installation
Which of the following statements is incorrect for MVC
Which contract is used in WCF Service for Exceptions
how can we provide authetication in Windows Service, So that it will not ask for user credentials at the time of installation