public void A() {
int x;
x = 8;
x *= 4 + 8 / 2;
}
Given the above code, what is the value of "x"?
Answer Posted / nitin
x=8;
x=12/2*8;
x=6*8;
x=48;
The Anwere is 48
| Is This Answer Correct ? | 0 Yes | 16 No |
Post New Answer View All Answers
What is lazy keyword in c#?
Why do we use Design Pattern in C#?
What are the uses of namespaces?
How does one compare strings in c#?
What is typeof undefined?
What do you understand by 'access specifiers' in C#?
how dot net compiled code will become platform independent?
What are the steps to create an assembly and add it to the gac?
Why delegates are type safe in c#?
Name some string escape sequences in c#.
What is session variable in c#?
What is default value of decimal c#?
Can firstordefault return null?
What is an expression in c#?
Is xamarin free?