What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)?
a) 6
b) 38
c) An unlimited number
No Answer is Posted For this Question
Be the First to Post Answer
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
What is the benefit of encapsulation?
Which of the following is evaluated first: a) && b) || c) !
What is binary search in c++?
What is the difference between reference type and pointers.
int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30
What is difference between rand () and srand ()?
Can notepad ++ run c++?
What is while loops?
What is linked list in c++?
What are the data types in c++?
Explain the benefits of proper inheritance.