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
In dynamic link library, which api is used for load library?
What is console write in c#?
How many types of serialization are there in c#?
Is there a way to force garbage collection?
What is final keyword in c#?
Why delegates are required?
What is meant by enumerable in c#?
Can we extend static class in c#?
Explain how to use an extender provider in the project.
What is c# windows form application?
How to put assembly in gac?
What is an icollection in c#?
Can we make a class private in c#?
If multiple interfaces are inherited and they have conflicting method names; What will happen ?
What is access specifier in c#?