Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

0 Answers  


what is virtual function?

3 Answers  


why the argument is passed by reference to a copy constructor?example?

2 Answers  


why c++ is a highlevel language

3 Answers   Satyam, Tech Mahindra,


what is virtual function in c++

6 Answers  


What is virtual function?where and when is it used?

2 Answers   Sitel,


When not to use object oriented programming?

0 Answers  


What are virtual classes?

0 Answers  


How is class defined?

0 Answers  


What is the default size allocated for array in the statement if size not specified " int a[] "

4 Answers   CTS,


How would you stop a class from class from being derived or inherited.

18 Answers   Ness Technologies,


Which is better struts or spring?

0 Answers  


Categories