What will happen when the following code is run:
int x;
while(x<100)
{
cout<<x;
x++;
}
1) The computer will output "0123...99"
2) The computer will output "0123...100"
3) The output is undefined
Answers were Sorted based on User's Feedback
Answer / nk
Output is undefined because initially variable 'x' is not
initialized and may contain some garbage value.
However if we initialize 'x' to 0 then choice#1 is correct.
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / d n gavade
The Answer is 3)The Output is undefined because x is not
initialised and its datatype is auto int so that its inital
value will be garbage.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / deepanker aggarwal
the answer is 3 because x is not initialised and it may
contain any garbage value
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rakesh
the output is undefined
because c++ do not implicitly initialised the varible. it
gives garbage value for uninitialized variables
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ibrazileasum
The initial value of x is not defined to '0' hence the complier will not start from 0 as initial value. This is a garbage error to the compiler
Is This Answer Correct ? | 0 Yes | 0 No |
What are the benefits of oop?
What is encapsulation and abstraction? How are they implemented in C++?
0 Answers Agilent, ZS Associates,
Have you ever used threads?
what type of questions
i had specified the access specifier for abstarct class member like (pure virtual function) as private.But it can be accessed by the derived class.How the private member of one class is accessed by other class.if any body face this problem and found the solution plz reply to me.
What do you mean by binding of data and functions?
just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.
Can we have a private constructor ?
12 Answers HSBC, Ness Technologies, TCS, Wipro,
Difference between realloc() and free?
Who invented oop?
why oops need in programming
what is the new version of oops