1)which of following operator can't be overloaded.
a)== b)++ c)?! d)<=

Answers were Sorted based on User's Feedback



1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / richa gupta

c) ?!

Is This Answer Correct ?    0 Yes 0 No

1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / b.dinesh reddy

Option 'C' will be the answer as we cant overload the
operator '?!' whereas remaining can be overloaded in oop
languages.

Is This Answer Correct ?    0 Yes 0 No

1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / vani

d

Is This Answer Correct ?    14 Yes 15 No

1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / umamaheswari

a

Is This Answer Correct ?    6 Yes 7 No

1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / vivek

Answer is (d).

Is This Answer Correct ?    2 Yes 7 No

1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=..

Answer / manu

a

Is This Answer Correct ?    4 Yes 12 No

Post New Answer

More C Interview Questions

What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }

1 Answers   Google,


What is the -> in c?

0 Answers  


player is good if the following conditions are satisfied: He is either from “India”, “Japan” or “Korea” He has a minimum of 3 years of experience He has won at least 3 major tournaments, and one of them must be "World Championship Tournament". He must know more than 10 techniques. (but see next question) If he knows less than 10 techniques, then he must be a world champion. His name contains at least 3 words. For example "Sachin Tendulkar" will not meet this condition. Write a method: boolean isGoodPlayer(String name, String country, int yearsExperience, String[] majorTournamentsWon, String[] techniques, boolean isWorldChampion) name country yearsExperience majorTournamentsWon techniques isWorldChampion

1 Answers  


Why is extern used in c?

0 Answers  


How the c program is executed?

0 Answers  






What is ## preprocessor operator in c?

0 Answers  


Why main function is special give two reasons?

0 Answers  


Is an array parameter is always "by reference" ?

1 Answers  


Why we not create function inside function.

0 Answers  


what is the difference between auto and static keywords

1 Answers   cDot, College School Exams Tests, TCS,


Differentiate between #include<...> and #include '...'

0 Answers  


Write an interactive c program that will encode or decode a line of text. To encode a line of text, proceed as follows: Convert each character, including blank spaces, to its ASCII equivalent. Generate a positive random integer. Add this integer to the ASCII equivalent of each character. The same random integer will be used for the entire line of text. Suppose that N1 represents the lowest permissible value in the ASCII code, and N2 represents the highest permissible value. If the number obtained in step 2 above exceeds N2, then subtract the largest possible multiple of N2 from this number, and add the remainder to N1. Hence the encoded number will always fall between N1 and N2, and will therefore always represent some ASCII character. Display the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text. Be certain, however, that the same random number is used in decoding as was used in encoding.

1 Answers   Amazon, CSJM, HCL, Microsoft, TCS, Wipro,


Categories