what are bitwise shift operators?

Answers were Sorted based on User's Feedback



what are bitwise shift operators?..

Answer / rina

bitwise shift operators
&,|,^,<<,>>

Is This Answer Correct ?    7 Yes 4 No

what are bitwise shift operators?..

Answer / vadivel t

To Rina answer:

&, |, ^ are not bit wise shift operator.
just they are unary bit wise operators thats it. Bitwise
shift operators are only >> and <<.

--
VEL

Is This Answer Correct ?    2 Yes 0 No

what are bitwise shift operators?..

Answer / sagar

bitwise shift operators are >>,<<

Is This Answer Correct ?    2 Yes 0 No

what are bitwise shift operators?..

Answer / bhupende r singh

The bitwise shift operators move the bit values of a binary
object.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C Interview Questions

Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

0 Answers  


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

0 Answers  


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,


what are bit fields? What is the use of bit fields in a structure declaration?

0 Answers   Flextronics, TISL, Virtusa,


What are pointers? What are stacks and queues?

0 Answers   Hexaware,


Is int a keyword in c?

0 Answers  


What functions are in conio h?

0 Answers  


When is a “switch” statement preferable over an “if” statement?

0 Answers  


WAP to convert text into its ASCII Code and also write a function to decode the text given?

2 Answers  


#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }

1 Answers  


write a program in c to read array check element is present or not?

1 Answers  


In which area global, external variables are stored?

3 Answers  


Categories