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
Which is better python or c#?
What is difference between write and writeline?
How do I do a case-insensitive string comparison?
Why is lazy loading?
How do I move from one form to another in c#?
What is toint32 c#?
How many constructors can a class have c#?
How do you create dlls in .NET
Is c# a backend language?
What is gac? How to put assembly in gac?
What are Indexers in C#?
What is writeline?
Is equal in c#?
What is iqueryable?
What is the difference between inheritance and abstract class?