What is an object?

Answer Posted / deepak saini

Object is runtime representation of class in memory.

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

670


write a program to find the given number is prime or not

3849


please explain every phase in the "SDLC" in the dotnet.

2182


What are the Advantages of using macro

688


What is a union?

613






When should a type cast not be used?

627


Is it better to bitshift a value than to multiply by 2?

663


Explain what is wrong with this program statement? Void = 10;

768


Does c have enums?

604


What is the difference between local variable and global variable in c?

693


Why is a semicolon (;) put at the end of every program statement?

631


Is javascript based on c?

596


What does typeof return in c?

640


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1317


What is ambagious result in C? explain with an example.

2059