Bitwise Complement Operator Class 28 || What is use of Bitwise ~ NOT operator in Java

preview_player
Показать описание
Bitwise Complement Operator Class 28 || What is use of Bitwise ~ NOT operator in Java
#bitwisecomplement #bitwise~ #bitwisenot
#Bitwisexor #BitwiseXOR #bitwise^
#bitwiseor #Bitwiseoroperator #bitwise
#binary #binarynumber #binarynumbersystem
#logic #logicgates #computercircuits
#bitwise #bitwiseand #bitwiseandoperator
#tarnary #tarnaryoperator #tarnaryoperatorinjava
#logicalor #logicalnotoperator #logical!
#logicalor #logicaloroperator #logical|
#logicaland #logicalandoperator #logical&
#equal #equalto #equaltooperator
#unsigned #rightshift #negative
#rightshiftoperator
#arithmetic #operator #java
#unaryoperator #operator #java
#datatypes #primitive #nonprimitives
#varibale #staticvariable #instancevariable
#localvariable #Java #completejavaclass
#automation #selenium #WedDriver
#penetrationtesting #vulnerability #threats
#functionaltesting #smoketesting #sanitytesting #unittesting #integrationtesting #adhoctesting
#PerformanceTesting #priority #bug
#loadtesting #endurancetesting
#SmokeTesting #SanityTesting
#FunctionalTesting #RegressionTesting #ManualTesting #Telecom #Automation
#UATTesting #AdHocTesting
#WhatIsBSS #WhatIsOSS #WhatIsCRM #DifferentBetweenBSSAndOSS
#BSS #OSS #CRM #Telecom #IT
#UATTesting #UATTools #smokeTesting
#Sanitytesting #UnitTesting #IntegrationTesting #SystemTesting #FuncrionalTesting #RegressionTesting
#AdhocTesting #LoadTesting #agile
#waterfall #bss #oss #billingsystem
#php #NonFunctionalTesting
#oops

👉Download Eclipse for Java

Video contains all about Java Complete Class

Class 28

What is Bitwise Complement
What is Use of Complement
What is need of Complement
Why we need of Complement
How to use Complement



To Learn Java watch completely and
Religiously All the Videos in Playlist

Note : Next Video Will Upload Soon

----------More Things to be Know Below----------

👉Know about Online Charging System OCS in details

👉Know about Non-Functional Testing in details

👉Know about How QA Team Testing Perform in details

👉Know about STLC in details

👉Know about How QA Team Testing Perform in details

👉Know about UAT in details

👉Know about Smoke Testing in details

👉Know about Billing System in details

👉Know about #BSS , #OSS , #CRM in details

👉Know about Bug Life Cycle in details

👉Know more about CRM

👉Know more about UAT

--------------------------------------------------------------------

All the contains in this video are my original experience .

Put Your Doughts and Queries .

🤗🤗 Have a Good Day Guys 🤗🤗
Рекомендации по теме
Комментарии
Автор

I think this one is the best explanation on the YouTube

ramanjangu
Автор

Thanks after watching 10 videos now finally my doubt clear

madhumalik
Автор

Hi, You have explained it very well . I have one doubt. When you converted the binary 1111 0101 to decimal number then we got value as -11, if we convert the decimal number -11 to binary then will we get result as 1111 0101 ?

SravanKumar-sutr
Автор

now i know the reason why the number go to negative and increase one number when use (~number)

// Tilde Operator in Java

int i = ~42;

System.out.print(i); // i = -43

/*
~i == (-i)-1

0 0 1 0 1 0 1 0 = 42
1 1 0 1 0 1 0 1 = 213
128 64 32 16 8 4 2 1 = Binary place value table

Binary place value table = convert decimal number to binary number.

128 = 2^7
64 = 2^6
32 = 2^5
16 = 2^4
8 = 2^3
4 = 2^2
2 = 2^1
1 = 2^0

from 2^0 to 2^6

~42 in java = (-64)+16+4+1 == > -43

*/

teachkhmerbinary
Автор

Java ek bahut hi badbudaar language hai

pinin