How many types of variables are there in c#?


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

Post New Answer

More C Sharp Interview Questions

Define encapsulation?

0 Answers   Siebel,


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  


How do you remove white spaces from a string?

0 Answers  


What is a data set in c#?

0 Answers  


Did a generic class can be inherited by a normal class?

1 Answers   TCS,






how can i get this 123456789 1234 6789 123 789 12 89 1 9

1 Answers   Excel,


What kind of the information stored inside the assembly?

0 Answers   CitiusTech,


Explain the difference between a struct and a class?

0 Answers  


Can you declare the override method static while the original method is non-static?

2 Answers   Mind Tree,


What are anonymous types in c#?

0 Answers  


What does Dispose method do with the connection object?

2 Answers  


What is the difference between webgarden and webfarm?

1 Answers   Mphasis,


Categories