C# is here Variable of reference type store the memory address of other variables in a Stack.
System.Diagnostics
System.Web
System.IO
System.Net
Rate this question:
UnBoxing
Boxing
Rate this question:
Properties
Fields
Rate this question:
True
False
Rate this question:
System.Net
System.Web
System.Data
Rate this question:
True
False
Rate this question:
System.Console.Convert
System.Convert
Rate this question:
True
False
Rate this question:
Out
This
Ref
Rate this question:
True
False
Rate this question:
True
False
Rate this question:
Rectangular Array.
Jagged Array.
Rate this question:
Multi- dimensional Array
Single- dimensional Array
Rectangular Array
Jagged Array
Rate this question:
True
False
Rate this question:
Protected
Public
Internal
Rate this question:
Override
Virtual
Rate this question:
Fields
Properties
Methods
Rate this question:
Boxing
UnBoxing
Rate this question:
True
Fasle
Rate this question:
Seales
Sealed
Prevents
Out
Virtual
Rate this question:
System.Diagnostics
System.Io / System.Net
System.Data
System.Collections.
System.Web
Rate this question:
Explicit
Implicit
Rate this question:
Public variable
Protect variable
Static variable
Final
Rate this question:
System-level Exceptions
Application-level Exceptions.
Rate this question:
True
False
Internal
Protected
Private
Rate this question:
Selection statement
Iteration statement
Jump Statement
Fixed Statement
Lock Statement
Rate this question:
True
False
Rate this question:
1-2-3-4
1-3-4-2
3-1-2-4
3-1-4-2
Rate this question:
Public delegate int Add_Dele(int t1, int t2); class Delegate_Event { //public Add_Dele event dele_Event; public int add(int a,int b) { return (a+b); } public void Main(string[] args) { int v1 = 5; int v2 = 10; Add_Dele objDel = new Add_Dele(add); objDel(v1,v2); Console.WriteLine("Value1 + Value2 = " +objDel(v1,v2)); } }
Public delegate int Add_Dele(int t1, int t2); class Delegate_Event { //public Add_Dele event dele_Event; static int add(int a,int b) { return (a+b); } static void Main(string[] args) { int v1 = 5; int v2 = 10; Add_Dele objDel = new Add_Dele(add); objDel(v1,v2); Console.WriteLine("Value1 + Value2 = " +objDel(v1,v2)); } }
Rate this question:
Array
New
Array class
Rate this question:
Jump Statement
Lock statement
Fixed Statement
Check ed and Unchecked Statement
Rate this question:
System.Data
System.Diagnostics
System.Io / System.Net
System.Web
Rate this question:
Encapsulation
Inheritance
Polymorphism
Abstraction
Rate this question:
System.Collections.
System.Data
System.namespaces
System.Io / System.Net
System.Diagnostics
Rate this question:
Public delegates Delagate_Name(int parameter1,int parameter2){}
Public delegates Delagates_Name(int parameter1,int parameter2);
Public delegate int Delagates_Name(int parameter1,int parameter2);
Public delegate float Delagate_Name(int parameter1,int parameter2){}
Rate this question:
True
False
Rate this question:
ICollection
IDictipnary
IEnumerator
Rate this question:
Args
Ref
Reg
This
Out
Rate this question:
Public string property_Name(int parameter) { // body }
Public string Property_Name { //body. }
Public string this[int Property_name] { // body }
Public delegate Property_Name(typeData parameter1, typeData parameter2);
Public string property_Name() { //body }
Rate this question:
Properties
Methods.
Fields
Rate this question:
System.ArithmaticException
System.InvalidCastException
System.OverflowException
System.FormatException
Rate this question:
Encapsulation
Inheritance
Abstraction
Polymorphism
Rate this question:
System.Web
System.Collections.
System.Diagnostics
System.Io / System.Net
System.Data
Rate this question:
Rectangular Array
Single- dimensional Array
Jagged Array
Multi- dimensional Array
Rate this question:
Class
Object
Delegate
Array , Interface
String
Rate this question:
Public string [int index]() { //body }
Public string int[int index] { //body }
Public string this[int index]() { //body }
Public string this[int index] { //body }
Rate this question:
Message
StrackTrace
InnerException
Rate this question:
Quiz Review Timeline (Updated): Feb 20, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.