programming languages Online Quiz - 213
Description: programming languages Online Quiz - 213 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
What is the keyword used in overriding
class test : Form {}
In the body of a method, C# uses the variable named_____to refer to the current object whose method is being invoked.
Which method would be used to invoke a delegate type asynchronously in C#?
Which of the following datatype is not a reference type?
Which element of a document's source code defines how the markup processor should interpret the tags in the source?
Which of the following tells a markup language processor which rules to use to interpret a document?
Which of the following is the purpose of a metamarkup language?
Which of the following can be defined using a markup language?
Which of the following are actual uses for XML?
You can write a Console Application or a Windows Application in C#, without using Visual Studio.
The Intellisense feature of Visual Studio interactively guesses, and lists all the types, methods etc. as you go on typing. How does it work?
When you write using System, at the beginning of a C# Program, the meaning of System is
Which of the following is correct way to compile a C# program file.cs, and add a reference to an external assembly Vehicle.dll?
Which of the following is not true?
When you write a program in C#, it is compiled to
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?
How do you define a pointer to a function that returns a character pointer and receives another pointer to function that neithers takes an argument nor returns anything.
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); } } }