Learn to Code in Java #2.5 | Boolean Expressions & Truth Tables

preview_player
Показать описание
This video will teach you about logic operators and when to us them.

-Time Stamps-
0:00 Intro
0:11 Open Intellij
0:43 Boolean Expressions
5:33 Truth Tables
Рекомендации по теме
Комментарии
Автор

Some extra information : When checking Strings for equality you cannot use the == operator in Java. Instead you would use the .equals String method.
Ex.

String s1 = "Hello";
String s2 = "Goodbye";
if(s1.equals(s2))
{
//Do something
}

Hope this helps, and remember to keep practicing!

nulloperators
visit shbcf.ru