programming languages Online Quiz - 171
Description: programming languages Online Quiz - 171 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
which of this command is used for starting a window application thru batch files?
Which of this command is used for prompting the user to press any key to continue in batch files?
which of this command is used to run another batch file within a batch file?
which of this is used to prevent any of the commands in the batch file from being displayed?
Variables in the interface must be initialized and are static & final.
Analyze the following code: boolean even = false; if (even = true) { System.out.println("It is even!"); }
Analyze the following program fragment: int x; double d = 1.5; switch (d) { case 1.0: x = 1; case 1.5: x = 2; case 2.0: x = 3; }
Analyze the following code. public class Test { public static void main(String[] args) { System.out.println(max(1, 2)); } public static double max(int num1, double num2) { System.out.println("max(int, double) is invoked"); if (num1 > num2) return num1; else return num2; } public static double max(double num1, int num2) { System.out.println("max(double, int) is invoked"); if (num1 > num2) return num1; else return num2; } }
What is sum after the following loop terminates? int sum = 0; int item = 0; do { item++; sum += item; if (sum > 4) break; } while (item < 5);
Which of the following abbreviations is incorrectly expanded?
Which of the following statements is false about Windows Communication Framework (WCF)
Which of the following features was first introduced with .Net 2.0
Windows Presentation Foundation - the new user interface system was introduced with
Which of the following statements is false about Common Language Runtime
What attribute must be set on a validator control for the validation to work ?