What are the 2 types of data types available in c#?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Sharp Interview Questions

Method1() { int a=0, b=0, c=0; Monitor.Enter(this) c = 12; b = 3; a = c/b Moniter.Exit(this) } Method1() { int a=0, b=0, c=0; c = 12; b = 3; lock(this){ a = c/b } } Choose correct answer. a. Upon completion, Method1 and Method2 release the lock b. Upon Comletion, Method1 release the lcok and Method2 not. c. Upon Completion, Method2 release the lock and Method1 not. d. Upon Completion, neither Method1 or Method to release the lock.

1 Answers  


What is multicast delegate explain with example?

0 Answers  


Value Type and Reference Type Data type in C#?

0 Answers   HCL,


Is ram a heap?

0 Answers  


What are the different generaions of Garbage Collection and how do they work

4 Answers  






What is multiple interface in c#?

0 Answers  


What is the property of a class in c#?

0 Answers  


What is the difference between properties and indexer in c#?

0 Answers  


Explain the difference between a namespace and assembly name in .net?

0 Answers  


What is a partial class. Give an example?

0 Answers  


What are the advantages of using partial classes?

0 Answers  


Write a program to find the angle between the hours and minutes in a clock

0 Answers  


Categories