int a = '3' + '4';
char n = (char)a;
What will be answer of n?
Answer Posted / lourdhu raja. d
value of n = 'g'
Value of a here is 103 ('3' = 51; '4' = 52)
so (char)a = 'g'
Is This Answer Correct ? | 21 Yes | 0 No |
Post New Answer View All Answers
What is a delegate? How can it works?
can multiple catch blocks be executed for a single try statement?
Describe the types of comments in c#?
Describe ways of cleaning up objects in c#.
Why static constructor is parameterless in c#?
Is concurrent queue thread safe?
What exactly is serverless?
Explain the difference between a namespace and assembly name in .net?
How do I do implement a assert?
What is the difference between private and protected in c#?
What is mvc in c#?
Different between method overriding and method overloading?
Explain the difference between user control and custom control. Also, explain their use.
how can one use hcl and c sharp together?
if a method is marked as protected internal who can access it?