which of the function operator cannot be over loaded

a) <=
b)?:
c)==
d)*

Answers were Sorted based on User's Feedback



which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / ravi

answer is b. that is ?:

Is This Answer Correct ?    73 Yes 3 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / lucky

b is the correct answer

Is This Answer Correct ?    28 Yes 2 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / ruchi

Overloading is the concept of c++
In c++ ?: cant be overloaded

Is This Answer Correct ?    11 Yes 1 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / muthu bharathi

There are 5 operators which cannot be overloaded. They are:

.* - class member access operator
:: - scope resolution operator
. - dot operator
?:: - conditional operator
Sizeof() - operator


answer: b

Is This Answer Correct ?    10 Yes 1 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / guest

b and d

Is This Answer Correct ?    12 Yes 6 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / anas

In 'C' there is no concept of overloading.
If we talks about C++ then TRINARY operator (? : ) cant be over loaded.
So, only the option (b) is correct.

Is This Answer Correct ?    3 Yes 0 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / balu

i think b and d can't support overloading concept..

Is This Answer Correct ?    2 Yes 1 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / shruti

In C we do not have the operator overloading concept.

Is This Answer Correct ?    7 Yes 8 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / sahithya

overload concept will face in C++ i.e., if we declare a
same function with different times .
In c we dont have any overloadind concept .
ofcourse by seing the options we can say easily that
options will need of 3 or 2 operands compulsory.so
overloading does not occur

Is This Answer Correct ?    0 Yes 5 No

which of the function operator cannot be over loaded a) <= b)?: c)== d)* ..

Answer / guest

c)==

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More C Interview Questions

The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

0 Answers   Microsoft,


What is difference between main and void main?

0 Answers  


Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]

2 Answers  


Is return a keyword in c?

0 Answers  


Explain what is a pragma?

0 Answers  






What are the types of i/o functions?

0 Answers  


hi, which software companys will take,if d candidate's % is jst 55%?

0 Answers  


What is include directive in c?

0 Answers  


explain how do you use macro?

0 Answers  


what is the difference b/w compiler and debugger?

2 Answers   Assurgent,


wat are the two methods for swapping two numbers without using temp variable??

2 Answers  


Why Modern OS are interrupt driven?Give an example

3 Answers  


Categories