C++ Programming and Technical Programming Technical

Data members is also called?

Options
1) Attribute
2) Method
3) Class
4) Object

Read Solution (Total 2)

C++ Other Question

What will be the output of following program?

main()
{
int i=1;
for(;i<=32768;i++)
printf("%d",i);
}

Options
1) 32767
2) infinite loop
3) 32768
4) None of the above
What is a conversion constructor?