Java Bangla Tutorials 35 : Bitwise operator

preview_player
Показать описание
➡️ In this video, I will introduce you to Bitwise operators in java.
⭐️ Video Contents ⭐️
⌨️ (00:00) Intro
⌨️ (00:12) bitwise operators in java
⌨️ (06:47) outro

🛑 Web development? Checkout following playlists :

🛑 Programming languages? Check out the following playlists:

🛑 Android development? Check out the following playlists:

🛑 HSC Students? Are you worried about ICT? I have created 377 videos for you. check out the following playlists-

🛑 CSE Students? Checkout following playlists :

🛑 MS Office? Trying to learn MS office to improve your skill? Checkout following playlists :

#java #anisul_islam #java_bangla_tutorial #web_development #bangla_web_development #andorid #javaprogramming #javatutorial #bangla_tutorial #java_anisul_islam
Рекомендации по теме
Комментарии
Автор

There are plenty of java tutorial videos in english, hindi and many other languages.
But in bangla it's very few, some of them have very poor video or sound quality .

But this channel is a gem for bangla beginner coder . Whoever gets help from this channel try to respect his effort by pressing the like, subscribe button & leave some nice words.

rupa
Автор

Your teaching style is above all praise. May Allah bless you!

mahanazakter
Автор

Assalamualaikum sir,
apnar video theke ami onek kichu shikhte perechi, Java fx ar opor toturial korar onorodh roilo

foridadrian
Автор

I love the way you're teaching the nation! Hats off Sir

marufju
Автор

Biswash korun ami apnar fan hoe gechi. ae videogulo apnar student life er bujhte parchi. apni atto organized vabe videogulo baniechen j sotyoi prosongsonio.. Ami apnar kach theke java sekhar sathe sathe kikore code ke organize korte hoy setao sikhe nicchi.. osonkhyo dhonnobad . apnar osamanyo effort ke somman janai.
Respect from West Bengal.

debasreetenyson
Автор

thank you vai <3 ... apne raat din jege video banan :O, ,,, obak lage ajibon ae video amader next genaration dekhbe :) & tader upokare o asbeh

adnansami
Автор

🔴 আসসালামু আলাইকুম স্যার...!
আমি অষ্টম শ্রেনিতে পড়ি। YouTube এ বিভিন্ন বিষয়ের উপর অনেক টিউটোরিয়াল দেছেছি। কিন্তু আপনার টিউটোরিয়ালগুলো খুবই ভালো লাগে। আপনি খুব ভালো করে বুঝাতে পারেন।🥰😍
আপনার এই ভিডিওটা আমার ক্লাসের অনুপাতে একটু বড় ক্লাসের লেভেলের। তাই আপনার কথামতো HSC এর ICT playlist থেকে এই রিলেটেড ভিডিওগুলো দেখে খুব উপকৃত হলাম।🥰
আশা করি আপনি আমাদের আরো আনেক ভলো ভালো ভিডিও উপহার দিবেন। দোয়া করিয়েন যাতে ভালো করে Programming শিখে দেশকে কিছু উপহার দিতে পারি।

Thank you so much...❤️❤️❤️

mdturzo
Автор

outstanding .great teaching skill . really for begginers. appreciate.

RaziaSultana-xvfl
Автор

outstanding great video.bitwise ta clear.thank you for making and uploading video.Appreciate it

mosfeqanik
Автор

thanks sir. apnar c ar sobgula tutorial deksi and note korsi..onek opokrito hoysi...abar o thanks

NahidHasan-hjpx
Автор

sir java advance tutorials বানান আনেক উপকার হবে কোথাও পাই আপনার মত teacher

ঘুড়াঘুড়িটইটই
Автор

nice video....Sir ICT video er link dile valo hoto....

mitumondol
Автор

Vi Tuotorial Tah Joss Hoce..Onk Sundor Kore Bujisen Bujchio bt majhe majhe apnr dike takaile dekhi apni hastesen..bujlam nah bepar tah???

nurmohammadrayhan
Автор

Sir, please give us a little task after every tutorial

soulspeaks
Автор

Bhy if we used a = 54 ; a>>3 then the result c= 6 but calculated result 6.75
i used c float number.

md.saddamhossain
Автор

vhai 12 er binary number ta correct na..

rubelahmed
Автор

amr j 45 hoy kano?

sir amr ki kothyo vull ase..

uzzalcontact
Автор

ভাই এতগুলো ক্লাস এর সব তো পরে মনে থাকে না। কীভাবে কী করবো বুঝতাছি না

nrhas
Автор

import java.util.Scanner ;
class HelloWorld {
public static void main(String[] args) {

Scanner input = new Scanner (System.in);
int a, c ;

System.out.print("Enter a number: ") ;
a = input.nextInt();

c=a>>3;
System.out.print("bitwise or will be : "+c) ;

}
}

output:
Enter a number: 32
bitwise or will be : 4
=== Code Execution Successful ===

ZLAN
Автор

public class AssignmentJava {
public static void main(String[] args) {
int a = 32;
int b = 12;
int c;

c = a & b;
System.out.println("a & b= " +c);
c = a | b;
System.out.println("a & b= " +c);
c = a ^ b;
System.out.println("a & b= " +c);
c = a << 4;
System.out.println("a << 4 = " + c);
c = a >> 4;
System.out.println("a >> 4 = " + c);

}
}

msthaque