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

Tell me with an example the self-referential structure?

0 Answers  


How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?

1 Answers  


What is period operator in c?

3 Answers   Wipro,


How do you initialize pointer variables?

0 Answers  


Explain which function in c can be used to append a string to another string?

0 Answers  






plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.

1 Answers  


IS Doon college of Engn.. has good faculty

1 Answers  


wite a programme in c to linear search a data using flag and without using flags?

3 Answers   TCS,


Can we use any name in place of argv and argc as command line arguments?

0 Answers  


What is main void in c?

1 Answers  


write a program to find the number of even integers and odd integers in a given array in c language

13 Answers   IAI Cameroun, NIIT, Olive Tech, QIS,


C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

6 Answers   TCS, Wipro,


Categories