programming languages Online Quiz - 213
Description: programming languages Online Quiz - 213 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Which element of a document's source code defines how the markup processor should interpret the tags in the source?
The Intellisense feature of Visual Studio interactively guesses, and lists all the types, methods etc. as you go on typing. How does it work?
Which of the following is correct way to compile a C# program file.cs, and add a reference to an external assembly Vehicle.dll?
How do you make a .NET Assembly public/universally visible to all applications, so that they can share it?
Consider 3 classes A,B,C. A's child class is B, B's child class is C. Inheritance hierarchy is A->B->C. You write in Main(), C obj = new C(); In what order are the constructors called?
Given: class Scoop { static int thrower() throws Exception { return 42; } public static void main(String [] args) { try { int x = thrower(); } catch (Exception e) { X++; } finally { System.out.printIn("x = " + ++x); } } }