Can you explain the concept of Bitwise?

Asked by Last Modified  

Follow 7
Answer

Please enter your answer

IT Professional and Carnatic Violin Instructor with 10+ years of teaching experience

The manipulation of binary numerals or individual bits is called Bitwise operations. Bitwise operators are used in applications for device drivers, cryptographic software, video decoding software, memory allocators, compression software and graphics, etc. and for different functions in the chip and...
read more
The manipulation of binary numerals or individual bits is called Bitwise operations. Bitwise operators are used in applications for device drivers, cryptographic software, video decoding software, memory allocators, compression software and graphics, etc. and for different functions in the chip and individual bits of hardware registers of embedded microcontrollers. read less
1 Comments

Expert in Maths and Computer Science

Bitwise:- It is a type of operation which works on bit only like 0/1.Every operation is performed bit by bit, for example, AND, NOT, OR all operation are performed bitwise.Example:- AND Bitwise 1*1=1 1*0=0 0*1=0 0*0=0
Comments

I Can teach Programming Languages also

Hello,In the Programming world, Bitwise will play a major role, and especially in the embedded domain, it's very important because it helps in using the memory in an efficient manner.
Comments

I Can teach Programming Languages also

Bit-wise operator are use in various ways: I am explaining in context to embedded systems and C language: Let’s find out whether a number is even/ odd using bit-wise operator, simply if(number & 0x01) // here number is inputted by the user and 0x01 for checking // the status of LSB only In...
read more
Bit-wise operator are use in various ways: I am explaining in context to embedded systems and C language: Let’s find out whether a number is even/ odd using bit-wise operator, simply if(number & 0x01) // here number is inputted by the user and 0x01 for checking // the status of LSB only In embedded programming: P1 = 0x00; P1 | = 0x01 ; // to set a particular bit P1 = 0xff; P1 & = ~(0x01) ; // to clear a particular bit P1 = a & 0xf0; // masking upper nibble read less
Comments

View 2 more Answers

Related Questions

Is it possible to write big safe programs in C++?
yes. C++ is generally used to write system software. For example windows operating system are writeen in C++. Most of the operating system, device driver and antivirus programs are written by using C++.
Sapna
0 0
6
What are the toughest topics in C language?
1. pointer 2. dynamic memory allocation 3. File handling
Lokayya
0 0
5
What is the actual size of INT in the C language, 2 or 4 bytes?
The actual size to int is determined by the compiler as the program runs. But theoretically the size is 2 bytes. You can increase the size by adding keyword long infront of it to make the size 4 bytes. Eg int a; // 2 bytes Long int b; // 4 bytes
Kunal
Are C Programmers currently in demand?
Ofcourse, C is alwasy in demand. In the beginning a lot of the big project developed in C language. Now a days, there are a lot of language in market and speciallity is growing in IT field. For a big organization...
Harsha

please tell me about basic of c language.

C language is a general-purpose, high-level programming language developed by Dennis Ritchie. It was initially used for system development work (Operating Systems, Language Compilers, Assemblers, Text...
Stalin
0 0
5

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Is It Fine To Write “void main()” Or “main()” In C/C++?
The definition: void main() { /* ... */ } Is not and never has been C++, nor has it even been C. See the ISO C++ standard 3.6.1 or the ISO C standard 5.1.2.2.1. A conforming...

Let Us C for the Beginners // WAP to Print Hello World on Screen 
// Sample program in C // Standard Library/Header files #include #include // Main function (Program execution starts here) Int main() { // Function for cleaning screen clrscr(); // Function...

C program for Beginners
A Program to print 2 integer value. #include<stdio.h> #include<conio.h> main() int a,b,add; a=5; b=3; add=a+b; printf(“ Addition=%d”,&add); getch(); Brief description...
P

C Programming Introduction
Beginners: C Programming is the base of all programming languages we learn. This Page will help you to understand all difficulties you may face in writing a simple program. What to remember while...
N

Namrata Y.

0 0
0

// Use of Const Keyword in C Programming
#include #include void main() { float rad; const float pi=3.1412f; const char newline='\n'; float area_circle,circum_circle; clrscr(); printf("Enter radius of a circle:"); scanf("%f",&rad); area_circle=pi*rad*rad; printf("Area...

Recommended Articles

Quality education does not only help children to get a successful career and life, but it also hugely contributes to society. The formal education of every child starts from school. Although there are numerous schools, parents find it challenging to choose the right one that would fit their child. It is difficult for them...

Read full article >

Learning for every child starts from a very young age. While the formal methods include school curriculums and private lessons, the informal methods include dancing, music, drawing, and various fun-filling activities. Playing games and practising these types of activities helps the children get out of boredom and...

Read full article >

Once over with the tenth board exams, a heavy percentage of students remain confused between the three academic streams they have to choose from - science, arts or commerce. Some are confident enough to take a call on this much in advance. But there is no worry if as a student you take time to make choice between - science,...

Read full article >

With the current trend of the world going digital, electronic renaissance is a new movement that is welcomed by the new generation as it helps makes the lives of millions of people easier and convenient. Along with this rapidly changing movement and gaining popularity of Internet, e-Learning is a new tool that emerging...

Read full article >

Looking for BCA Tuition ?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you