What is a unary operator?

Answers were Sorted based on User's Feedback



What is a unary operator?..

Answer / ajay yadav

Unary operators are those...which operate on only one
operand.
For eg. a++(only one operand is present) as we are
incrementing the value for a.

Is This Answer Correct ?    7 Yes 0 No

What is a unary operator?..

Answer / ayesha

!
Logical NOT

&
Address-of

~
One's complement

*
Pointer dereference

+
Unary plus

++
Increment


Unary negation

––
Decrement

conversion operators
conversion operators


Of the operators shown in preceding table, the postfix
increment and decrement operators (++ and ––) are treated
separately in Increment and Decrement.

Is This Answer Correct ?    5 Yes 0 No

What is a unary operator?..

Answer / sujatha

unary operator is an type of operator which have only one
operand.

ex : 1)unary plus or minus (to change the sign of variable)
2)increment or decrement ( increase or decrease the
value of variable)


unary plus or minus :

ex :

#inclucde<iostream.h>
void main()
{
int a=-10;
cout<<"a="<<(-a);
int b=20;
cout<<"b="<<++b;
}

out put :

a=10
b=21

Is This Answer Correct ?    2 Yes 0 No

What is a unary operator?..

Answer / mahesh

unary operators r much useful in writting less code but much complex programms as they work on only one operator.

Is This Answer Correct ?    0 Yes 0 No

What is a unary operator?..

Answer / vishal sharma

++,--,+,- these are the unary operators.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is interface? When and where is it used?

0 Answers  


What is overriding in oop?

0 Answers  


What are the benefits of interface?

0 Answers  


what is difference between objects and function

3 Answers  


what is the difference between containership and inheritence?

1 Answers  






Why do we use class?

0 Answers  


write a program for function overloading?

14 Answers   HCL, InfoCity, TATA,


Can we have a private virtual method ?

8 Answers   Ness Technologies,


what are the characteristics of oops?

7 Answers   NIIT,


What is oops?what is its use in software engineering?

0 Answers  


what is the technical or oop name of object?

1 Answers  


How to overload new operator in c++

2 Answers  


Categories