programming languages Online Quiz - 94
Description: programming languages Online Quiz - 94 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
how can we provide authetication in Windows Service, So that it will not ask for user credentials at the time of installation
Which contract is used in WCF Service for Exceptions
Which of the following statements is incorrect for MVC
how can we provide authetication in Windows Service, So that it will not ask for user credentials at the time of installation
Which contract is used in WCF Service for Exceptions
How can we manage loss of unhandled packets / Requests in any application
class A { public void main(String args[]) { System.out.println("Hello World!"); } } What is the output of the program?
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?
int[] a,b[] and int a[],b[] are same??
Which one of these are true regarding inheritance in java??
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()+"-"); }
Consider the following code snippet String s1="Hello"; String s2=s1; s1.concat("World"); System.out.println(s1+"---"+s2); What is the output??
Which one of these are legal combinations when used with a method??
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??
Inode contains the following fields?
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?
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.
The fork() system call is used for the following process management