The boolean Data Type in Java

preview_player
Показать описание
Java Programming: The boolean Data Type in Java Programming
Topics discussed:
1. The boolean data type in Java.
2. Initializing boolean variables.
3. Conditions in Java.
4. Using a boolean with an if-else statement in Java.

Music:
Axol x Alex Skrindo - You [NCS Release]

#JavaByNeso #JavaProgramming #DataTypes #boolean
Рекомендации по теме
Комментарии
Автор

I dont know how to say thank you, but may god bless your channel

muhammadfachri
Автор

THANK YOU SO MUCH DEAR Lecturer for this good explanation and easy to understand videos. you are a bless to me.

whatsapwhatsapp
Автор

Lecturer: "Just understand this, I do not want you to understand anything else"

Me: Sounds fair

But in all seriousness thanks for your instructions!

bomberoo
Автор

Man, I understand something in programming (I did some on my own and had some in school), but damn you can explain things. I'll definetly check your other videos.

Freeman
Автор

Ur way of teaching is awesome sir..
Could you please at least 1 video per a day sir...

kranthikumar
Автор

how about the Use floating-point data types?

siertejerzalynr.
Автор

"Alright" is so mesmerizing.

Love ❤️ from INDIA🇮🇳

Journey_with_Gunjan_Ranjan
Автор

What if I want to print out a "false" as a answer from boolean, without using Strings etc. Fx. boolean a = false. Print("It is" + a) / I want to print "It is false" by using booleans value. There is no problem with i when it is a true.

daroboro
Автор

Hello sir, I want to learn c++ programming language, so i request you to make a video series, I hope that you will Definitely do something in this matter.
You with your team is doing brilliant job sir . No doubt that you know the best way of teaching.

ShahNawaz-cxpi
Автор

Sir y no upload yet..plz upload the videos as soon as possbl

twinklebose
Автор

Sir what's that app name
Could you please suggest me that app

Mr_pn_raj
Автор

Sir when you are going to launch your app

balakrishnaprasad
Автор

"i don't want you to understand anything else" xD

detonario
Автор

Sir, I have a doubt kindly solve it...
a==b || b==c || c==a
Will it consider two conditions as true or one condition as true.

PriyaKumari-mxxd
Автор

package pkgboolean;
import java.util.*;
public class booleaninput
{
public static void main(String [] arge)
{
String name;
Scanner in = new Scanner(System.in);
System.out.print("enter your name: ");
name = in.nextLine();
System.out.println("hey " + name);

boolean bool2;
System.out.print("is 3 < 5 (true/false)= ");
bool2 = in.nextBoolean();
if(bool2)
{
YOUR ANSWER IS CORRECT");
}
else
{
System.out.println("SORRY YOUR ANSWER IS WRONG");
}
}
}

tnlunatic