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

enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?

4 Answers   TCS,


Explain what are run-time errors?

0 Answers  


What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?

1 Answers   Excel,


How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.

0 Answers  


An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above

0 Answers  


Explain data types & how many data types supported by c?

0 Answers  


which is faster execution: loops or recursion?

3 Answers  


how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.

3 Answers   Google,


get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement

3 Answers  


1 1 1 1 2 1 1 3 3 1 1 4 6 4 1

3 Answers  


What is maximum size of array in c?

0 Answers  


write a c program to store and print name,address,roll.no of a student using structures?

7 Answers  


Categories