C# is here Variable of reference type store the memory address of other variables in a Stack. Take this quiz and learn more about it!
UnBoxing
Boxing
Rate this question:
Explicit
Implicit
Rate this question:
Properties
Fields
Rate this question:
System.Diagnostics
System.Web
System.IO
System.Net
Rate this question:
Boxing
UnBoxing
Rate this question:
Rectangular Array.
Jagged Array.
Rate this question:
True
Fasle
True
False
Rate this question:
System.Diagnostics
System.Io / System.Net
System.Data
System.Collections.
System.Web
Rate this question:
Value Type
Reference Type.
Rate this question:
Out
This
Ref
Rate this question:
True
False
Rate this question:
Multi- dimensional Array
Single- dimensional Array
Rectangular Array
Jagged Array
Rate this question:
Fields
Properties
Methods
Rate this question:
Protected
Public
Internal
Rate this question:
Seales
Sealed
Prevents
Out
Virtual
Rate this question:
True
False
Rate this question:
True
False
Rate this question:
True
False
Rate this question:
Selection statement
Iteration statement
Jump Statement
Fixed Statement
Lock Statement
Rate this question:
True
False
Rate this question:
Encapsulation
Inheritance
Polymorphism
Abstraction
Rate this question:
Internal
Protected
Private
Rate this question:
True
False
Rate this question:
System-level Exceptions
Application-level Exceptions.
Rate this question:
Message
StrackTrace
InnerException
Rate this question:
True
False
Rate this question:
Override
Virtual
Rate this question:
Public variable
Protect variable
Static variable
Final
Rate this question:
Iterators use the yield break statement to end th iteration process.
Iterators return a fixed number of values that cannot be changed
Rate this question:
ICollection
IDictipnary
IEnumerator
Rate this question:
System.Net
System.Web
System.Data
Rate this question:
Encapsulation
Inheritance
Abstraction
Polymorphism
Rate this question:
Rectangular Array
Single- dimensional Array
Jagged Array
Multi- dimensional Array
Rate this question:
System.ArithmaticException
System.InvalidCastException
System.OverflowException
System.FormatException
Rate this question:
Event can be declared in an Interface.
Events can are declared as Abstract or Sealed
Properties
Methods.
Fields
Rate this question:
True
False
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:
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:
IList
IDictionary
ICollection
IEnumerator
Rate this question:
Int,float
String,Object
Class , interface
Byte, bit
Array , Delegate
Rate this question:
Array
New
Array class
Rate this question:
1-2-3-4
1-3-4-2
3-1-2-4
3-1-4-2
Rate this question:
System.Data
System.Diagnostics
System.Io / System.Net
System.Web
Rate this question:
Generics are used to work with multiple data type simultaneously.
Generics are verified at run-time.
Generics are declared with or without a type parameter
Generics can be implemented without a need for explicit or implicit casting.
Rate this question:
Quiz Review Timeline (Updated): Mar 22, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.