Difference between revisions of "Java/C2/Relational-Operations/English-timed"

From Script | Spoken-Tutorial
Jump to: navigation, search
Line 4: Line 4:
 
|| '''Narration'''
 
|| '''Narration'''
 
|-
 
|-
| 00:02
+
| 00:01
|  Welcome to the spoken tutorial on '''Relational Operators''' in '''C''' and '''C++'''.
+
|  Welcome to the spoken tutorial on '''Relational Operators in Java'''.
  
 
|-
 
|-
|00:07
+
| 00:07
|  In this tutorial, we will learn about:
+
|  In this tutorial, we will learn about the
  
|-
 
|00;09 
 
|Relational operators like
 
  
 
|-
 
|-
|00:12
+
| 00:09
|Less than: eg. a < b
+
'''the boolean data type'''
 
+
 
|-
 
|-
|00:15
+
| 00:10
|Greater than: eg. a > b
+
| '''Relational operators '''and
 
+
 
|-
 
|-
|00:18
+
| 00:12
|Less than or equal to: eg. a <= b
+
| how to '''compare data '''using '''Relational operators.'''
  
|-
 
|00:23
 
|Greater than or equal to: eg. a >= b
 
  
 
|-
 
|-
|00:28
+
| 00:17
|Equal to: eg. a == b
+
| For this tutorial we are using
  
|-
+
'''Ubuntu 11.10''',
|00:31
+
|Not equal to: eg. a != b
+
  
|-
+
'''JDK 1.6''' and
| 00:38
+
|To record this tutorial, I am using: '''Ubuntu 11.10''' as the operating system       
+
  
|-
+
'''Eclipse 3.7'''
|00:43
+
|'''gcc''' and '''g++ Compiler '''version '''4.6.1 '''in '''Ubuntu.'''
+
  
 
|-
 
|-
|00:50
+
| 00:26
|Let us begin with an introduction.
+
| To follow this tutorial, you must have knowledge of '''data types '''in''' Java'''
 +
 
  
 
|-
 
|-
|00:53
+
| 00:31
|Relational operators are used to compare integer and floating point numbers.
+
| If not, for relevant tutorials, please visit our  website  as shown.
  
 
|-
 
|-
|00:58
+
| 00:39
|Expressions using relational operators '''return''' 0 for false and 1 for true.  
+
| Relational operators are used to check for conditions.
  
'''Return''' values:
 
  
0 when '''False'''
+
|-
 +
| 00:43
  
1 when''' True'''
+
|  Their output is a variable of boolean data type
  
|-
 
| 01:04
 
|Now I will demonstrate the relational operators with the help of a C program.
 
  
 
|-
 
|-
| 01:10
+
| 00:48
|I have already made the program.
+
| A  boolean data type is of size  1 bit 
  
|-
 
|01:11
 
|So, I'll open the editor and explain the code.
 
  
 
|-
 
|-
| 01:16
+
| 00:51
|First, we declare two variables '''a '''and '''b'''.
+
| It stores only two values.
 +
 
  
 
|-
 
|-
|01:21
+
| 00:54
|This '''printf''' statement prompts the user to enter the values of a and b.
+
| '''True '''or '''False. '''
 +
 
  
 
|-
 
|-
|01:27
+
| 00:56
|This '''scanf '''statement takes input for the variables '''a '''and '''b'''.
+
| '''True''' is the output when the condition is true.
 +
 
  
 
|-
 
|-
| 01:33
+
| 00:59
|   Now we have the '''greater than''' operator.
+
| '''False''' is the output if the condition is not true.  
  
 
|-
 
|-
|01:35
+
| 01:06
|This operator compares the two operands on either side of the operator.
+
|   Here is a list of the Relational operators available.
  
 +
 +
|-
 +
| 01:10
 +
|  * greater than
 +
|-
 +
| 01:12
 +
|  * less than
 +
|-
 +
| 01:13 
 +
|  * equal to
 +
|-
 +
| 00:14
 +
|  * greater than or equal to
 +
|-
 +
| 01:15
 +
|  * less than or equal to
 
|-
 
|-
|01:39
+
| 01:17
|It '''returns''' ''False''' if '''a''' is greater than '''b'''.
+
| * not equal to
  
 
|-
 
|-
| 01:44
+
| 01:19
This '''printf '''statement is executed if the above condition is true.
+
We shall look into each of them in detail.
  
 
|-
 
|-
|01:48
+
|01:22
|If the above condition is '''false '''then it is skipped.
+
| Switch to Eclipse.
  
 
|-
 
|-
|01:51
+
|01:27 
|To control then jumps to the next statement.
+
|   Here we have the '''Eclipse IDE '''and the skeleton required for the rest of the code.
 +
 
  
 
|-
 
|-
| 01:54
+
| 01:33
We now have the '''less than''' operator.
+
I have created a class '''BooleanDemo''' and added the '''Main''' method.
 +
 
  
 
|-
 
|-
|01:56
+
| 01:38
|This too compares the operands.
+
| Now let us add some expressions.
  
 
|-
 
|-
|01:58
+
| 01:41 
|It '''returns''' '''true''' when '''a''' is less than '''b'''.
+
| Type '''boolean b ; '''
 +
 
  
 
|-
 
|-
| 02:03
+
| 01:47
|This '''printf''' statement is executed if the above condition is '''true.'''
+
| The keyword '''boolean''' declares the data type of the variable '''b''' as '''boolean.'''
 +
 
  
 
|-
 
|-
|02:07
+
| 01:53
|It is skipped otherwise.
+
| We shall store the result of our condition in b.
  
 
|-
 
|-
|02:09
+
|   01:5
Let's execute the code till here.
+
We shall define a variable weight and check for a condition using that variable.
 +
 
  
 
|-
 
|-
|02:13
+
| 02:05
|First comment out the following. Type /* */ ''' '''
+
|  '''int weight '''''equal to '''''45;'''
 +
 
  
 
|-
 
|-
| 02:24
+
| 02:13
Click on '''Save'''.
+
We shall check if the value in weight is greater than '''40.'''
 +
 
  
 
|-
 
|-
|02:26
+
| 02:18
|I have saved my file as relational.c
+
| '''b '''''equal to '''''weight '''''greater than '''''40;'''
 +
 
  
 
|-
 
|-
| 02:30
+
| 02:28
|   Open the terminal window by pressing '''Ctrl, Alt and T '''keys''' '''simultaneously.
+
| This statement says check if the value of variable is greater than 40 and store the result in b;
 +
 
  
 
|-
 
|-
| 02:36
+
| 02:37
To compile, type the following on the terminal '''gcc relational.c -o rel'''
+
Now Let us print the value of b.
 +
 
  
 
|-
 
|-
| 02:50
+
| 02:41
Press '''Enter'''.
+
|  '''System '''''dot '''''out '''''dot '''''println(b);'''
 +
 
  
 
|-
 
|-
| 02:52
+
| 02:49
To execute  type '''./rel''' Press '''Enter'''.
+
|  '''Save''' and '''Run'''.
  
 
 
|-
 
|-
| 02:58
+
| 02:59
| I enter '''a''' as 8 and '''b '''as 3.
+
|   As we can see, the output is '''True'''.
  
 
|-
 
|-
 
| 03:02
 
| 03:02
The output is displayed:
+
Let us see what  happens if the value is less than 40.
  
|-
 
| 03:04
 
|  8 is greater than 3.
 
  
 
|-
 
|-
 
| 03:07
 
| 03:07
You can try executing this code with different values of '''a '''and '''b'''.
+
Change weight to 30.
  
|-
 
|03:12
 
| Coming back to  the code.
 
  
 
|-
 
|-
| 03:14
+
| 03:12
Delete the comment from here  and put it    here.
+
Save and run
 
+
+
  
 
|-
 
|-
| 03:24
+
|   03:20
|Now we have the '''less than or equal to '''operator.
+
| We can see that the output is False as expected.
  
 
|-
 
|-
| 03:29
+
| 03:24
|  This operator compares the two operands on either side of the operator.
+
|  This way, the''''' '''greater than'' symbol is used to check if one value is ''greater than'' the other.
 +
 
  
 
|-
 
|-
| 03:33
+
| 03:30
It '''returns''' '''true''' if '''a''' is less than or equal to '''b'''.
+
Similarly, ''less than'' symbol is used to check if one value is'' less than ''the other.
  
 
|-
 
|-
|03:39
+
| 03:37
| This '''printf '''statement is executed if the above condition is true.
+
| let us change the''greater than'' to ''less than symbol.''
 +
 
  
 
|-
 
|-
 
| 03:43
 
| 03:43
| If the above condition is '''false '''then it is skipped.
+
|   So We are checking if the value of '''weight''' is less than '''40'''.
  
|-
 
| 03:46
 
|  The control then jumps to the next statement.
 
  
 
|-
 
|-
| 03:50
+
| 03:48
| Next comes the '''greater than or equal to '''operator.
+
|   '''Save''' '''Run''' 
  
 
|-
 
|-
| 03:53
+
| 03:56
It compares '''a '''and '''b '''and '''returns''' '''true''' if '''a''' is greater than or equal to '''b'''.
+
As we can see, the output is '''True '''as expected.
 +
 
  
 
|-
 
|-
 
| 04:01
 
| 04:01
| If the condition is true then this printf statement will be executed.
+
| Let us change the value of weight to 45 and see the output.
  
|-
 
| 04:05
 
| Now let's execute the code till here.
 
  
 
|-
 
|-
| 04:08
+
| 04:09
Click on '''Save'''.
+
|  Save and Run.
  
 
|-
 
|-
| 04:10
+
| 04:16
Switch back to the terminal.
+
We see that we get a False because the condition,
  
|-
 
| 04:12
 
|  Compile and execute as before.
 
  
 
 
|-
 
|-
| 04:17
+
| 04:21
I enter '''a''' as 8 and '''b '''as 3.
+
|  '''weight''''' less than '''''40''' is not true.
  
|-
 
| 04:23
 
|  The output is displayed:
 
  
 
|-
 
|-
 
| 04:25
 
| 04:25
8 is greater than or equal to 3
+
Now let us see how to check if a value is equal to another.
  
 
|-
 
|-
| 04:30
+
| 04:31
|Now Coming back to rest of the code.
+
To do that, we use '''two equal to symbols.'''
 +
 
  
 
|-
 
|-
| 04:33
+
| 04:35
Delete the multiline comments from here ands here.
+
change ''less than ''symbol'' ''to ''double equal to.''
  
|-
 
| 04:43
 
|we now have the '''equal to '''operator.
 
  
 
|-
 
|-
| 04:47
+
| 04:41
It is denoted by double '''equal (==) '''signs.
+
|  '''Save''' and '''Run''' 
  
 
|-
 
|-
| 04:50
+
| 04:48
This operator '''returns''' '''true''' when both operands are equal to one another.
+
As we can see, the output is '''False '''because the value of weight is not equal to 40'''.'''
  
 
|-
 
|-
| 04:57
+
| 04:55
|This '''printf''' statement executes when '''a''' is equal to '''b.'''
+
| Now let us change the weight to 40 and see the output.
  
 
|-
 
|-
 
| 05:01
 
| 05:01
If not, the control then jumps on to the next statement.
+
Save and  Run.
  
 
|-
 
|-
|05:06
+
| 05:08
|Similarly, we have the '''not equal to''' operator.
+
| As we can see, the output is True
  
|-
 
| 05:09
 
|  This operator '''returns true''' when the operands are not equal to one another.
 
  
 
|-
 
|-
|05:15
+
| 05:12
| This '''printf''' statment will execute when '''a''' is not equal to '''b'''.
+
| This way, Double equal to is used for checking equality.
 +
 
  
 
|-
 
|-
| 05:21
+
| 05:16
|Coming to the end of the program.
+
| Please be careful because, often people use a '''single equal to''' symbol for checking equality.
  
'''Return 0;'''
 
  
 
|-
 
|-
| 05:24
+
| 05:22
| Click on '''Save'''.
+
| And this gives unnecessary errors.
  
 
|-
 
|-
|05:26
+
| 05:26
| Switch back to the terminal.
+
| Next we'll see how to check for '''less than or equal to.'''
 
+
|-
+
| 05:28
+
|  Compile and execute as before.
+
  
  
 
|-
 
|-
| 05:33
+
| 05:30
Enter '''a''' as 8 and '''b '''as 3.
+
To do that, we will use a '''less than''' symbol followed by an '''equal to''' symbol.
  
|-
 
| 05:39
 
|  The output is displayed on the screen:
 
  
 
|-
 
|-
| 05:41
+
| 05:35
| 8 is not equal to 3
+
|   change the double equal to to less than equal to.
  
|-
 
| 05:45
 
|  So, we see how the relational operaotors work.
 
  
 
|-
 
|-
| 05:48
+
| 05:42
Try executing this code with different set of inputs.
+
'''Save''' and '''Run'''.
  
 
|-
 
|-
| 05:52
+
| 05:50
| \Now, writing a smilar program in '''C++''' is quite easy.
+
|   the output is '''True''' as expected.
  
|-
 
| 05:56
 
|  There are a few differences in the syntax.
 
  
 
|-
 
|-
| 06:00
+
| 05:53
I have already made the code in '''C++'''.
+
Now let us change the value of weight to see if the '''less than''' check is performed.
  
 
|-
 
|-
|06:04
+
| 05:59
| Their is the code for '''relational operators''' in '''C++'''.
+
| Change '''40''' to '''30.'''
  
 
|-
 
|-
|06:09
+
| 06:04
|Notice that the header is different.
+
| '''Save''' and '''Run.'''
  
|-
 
| 06:12
 
|  Also we have the '''using '''statement here.
 
  
 
|-
 
|-
| 06:16
+
| 06:14
The output statement in C++ is '''cout'''.
+
We see, that although the weight is not equal to 40 we get the output as '''True''' because it is less than 40.
  
|-
 
| 06:19
 
|  And the input statement in C++ is''' cin.'''
 
  
 
|-
 
|-
 
| 06:22
 
| 06:22
So, apart from these differences, the two codes are very similar.
+
Let us see what happens if the value of weight is greater than 40.
  
 
|-
 
|-
|06:27
+
| 06:274
| Click on save.
+
| Let say 50. Save and Run.
  
 
|-
 
|-
| 06:29
+
| 06:39
| Please make sure the file is saved with the extension '''.cpp'''
+
|As we can see, the output is False  because the value of weight is not equal to 40.
  
|-
 
| 06:33
 
|  I have saved my file as '''relational.cpp'''
 
  
 
|-
 
|-
| 06:38
+
| 06:44
| Let's compile the code.
+
| And it also not less than 40.
  
 
|-
 
|-
| 06:40
+
| 06:48
Open the terminal and type '''g++ relational.cpp -o rel1'''
+
Similarly we use a greater than symbol followed by an equal to symbol for checking '''greater than''' or''' equal to'''.
  
|-
 
| 06:51
 
|  To  execute Type  '''./ rel1'', Press Enter.
 
 
  
 
 
|-
 
|-
| 06:57
+
| 06:55
I enter '''a''' as 8 and '''b '''as 3.
+
Let us try it.
  
 
|-
 
|-
| 07:01
+
| 06:57
| The output is displayed:
+
|   Change ''less than equal to'' to ''greater than equal to''
  
|-
 
| 07:03
 
|  We see that the output is same as  the one in  '''C''' code.
 
  
 
|-
 
|-
| 07:08
+
| 07:04
| Now let us see an error which we can come across.
+
| Save and Run.
  
|-
 
| 07:11
 
|  Come back to the program
 
  
 
|-
 
|-
| 07:13
+
| 07:10
| Suppose here we replace the double equal to sign with the single equal to.
+
| As we can see, the output is '''true '''because '''weight''' is greater than '''40'''
  
 
|-
 
|-
| 07:20
+
| 07: 16
Click on '''Save.'''
+
Let us change weight to a value less than 40. Lets say 30.
  
|-
 
| 07:21
 
|  Come back to the terminal.
 
  
 
|-
 
|-
| 07:24
+
| 07:25
Compile and execute as before.
+
Save and Run.
  
 
|-
 
|-
|  07:34
+
|  07:32
| Here we see it is showing 3 is equal to 3.
+
| We get a false because the value of weight is not greater than 40 and also not equal to 40.
  
 
|-
 
|-
| 07.38
+
|   07:39
| Come back to our program
+
| Next, we’ll see how to check for '''not equal to'''
  
|-
 
| 07:40
 
|  This is because here we have an assignment operator.
 
  
 
|-
 
|-
| 07:44
+
| 07:46
So value of b is assigned to a.
+
It is done by using an '''exclamation mark''' followed by an '''equal to''' symbol.
  
|-
 
|  07:47
 
|Now  Let us fix this error.
 
  
 
|-
 
|-
| 07:49
+
| 07:53
Type an equal to sign.
+
Change ''greater than'' to ''exclamation  ''
 +
 
  
 
|-
 
|-
| 07:52
+
| 07:59
Click on '''Save'''
+
So this statement says check if the value of '''weight''' is not equal to '''40''' and store the result in '''b'''
 +
 
  
 
|-
 
|-
| 07:55
+
| 08:08
Switch back to the terminal
+
'''Save''' and '''Run'''  
  
 
|-
 
|-
| 07:56
+
| 08:16
| compile and execute as before.
+
|   As we can see, the output is '''true''' because the values of weight is not equal to 40.
  
 
|-
 
|-
| 08:04
+
| 08:23
The output is now correct.
+
Let us change the weight to 40 and see the output.
  
 
|-
 
|-
|08:06
+
| 08:28
| Let's summarize the tutorial.
+
| Change 30to 40.
  
 
|-
 
|-
| 08:09
+
| 08:31
In this tutorial, we learnt
+
Save. Run.
  
 
|-
 
|-
| 08:10
+
| 08:38
| Relational operators like
+
|   We get a '''false''' because the condition weight not equal to 40 is false.
  
 
|-
 
|-
| 08:12
+
| 08:45
| Less than:  eg. a <b
+
| The not equal to condition can be thought of as opposite of equal to condition.
  
 
|-
 
|-
| 08:15
+
| 08:50
| Greater than: eg. a>b
+
| This is how we use the various relational operators to compare data in Java.
  
 
|-
 
|-
| 08:18
+
| 08:58
Less than or equal to: eg. a<=b
+
This brings us to the end of this tutorial.  
 +
 
  
 
|-
 
|-
| 08:23
+
| 09:01
Greater than or equal to: eg. a>=b
+
In this tutorial we have learnt,  about the boolean data type
  
 
|-
 
|-
| 08:27
+
| 09:06
Equal to: eg. a==b
+
The relational operators and
  
 
|-
 
|-
| 08:30
+
| 09:08
Not equal to: eg. a!=b
+
how to use '''relational operators''' to '''compare''' two values
  
 
|-
 
|-
| 08:34
+
|   09:13
|  As an assignment
+
|  As an assignment for this tutorial, find out if the two expressions shown are equivalent?
  
 
|-
 
|-
| 08:35
+
| 09:23
Write a program that takes the marks of three students as input.
+
To know more about the '''Spoken Tutorial''' project,
 +
 
  
 
|-
 
|-
| 08:40
+
| 09:23
Compare the marks to see which student has scored the highest.
+
* Watch the video available at[http://spoken-tutorial.org/What_is_a_Spoken_Tutorial  ]
  
 
|-
 
|-
| 08:44
+
| 09:28
Check also if two or more students have scored equal marks.
+
* It summarises the Spoken Tutorial project
  
 
|-
 
|-
| 08:49
+
| 09:31
|  Watch the video available at the following link
+
* If you do not have good bandwidth, you can download and watch it
|-
+
| 08:51
+
|  It summarises the Spoken Tutorial project
+
|-
+
| 08:54
+
|  If you do not have good bandwidth, you can download and watch it  
+
  
  
  
 
|-
 
|-
| 08:58
+
|   09:36
|  The Spoken Tutorial Project Team  
+
|  The Spoken Tutorial Project Team,
 +
 
 +
 
 
|-
 
|-
| 09:00
+
| 09:38
|  Conducts workshops using spoken tutorials  
+
|  Conducts workshops using '''spoken tutorials'''.
 +
 
 +
 
 
|-
 
|-
| 09:03
+
| 09:40
|  Gives certificates for those who pass an online test  
+
|  Gives certificates for those who pass an online test. For more details, please write to '''contact AT spoken HYPHEN tutorial DOT org.'''
 +
 
 
|-
 
|-
| 09:06
+
|   09: 50
| For more details, please write to contact at spoken hyphen tutorial dot org
+
| '''Spoken Tutorial '''Project is a part of the '''Talk to a Teacher''' project.
 
+
  
  
 
|-
 
|-
| 09:14
+
| 09:54
|  Spoken Tutorial Project is a part of the Talk to a Teacher project
+
|  It is supported by the '''National Mission on Education through ICT, MHRD, Government of India. '''
|-
+
| 09:18
+
|  It is supported by the National Mission on Education through ICT, MHRD, Government of India  
+
|-
+
| 09:24
+
|  More information on this Mission is available at
+
|-
+
| 09:27
+
|  spoken hyphen tutorial dot org slash NMEICT hyphen Intro
+
  
  
 +
|-
 +
| 10:00
 +
|  More information on this Mission is available at '''spoken HYPHEN tutorial DOT org SLASH NMEICT HYPHEN Intro'''
  
 
|-
 
|-
| 09:35
+
| 10:05
|  This is Ritwik Joshi from IIT Bombay.  
+
|  This tutorial has been contributed by '''TalentSprint'''. Thanks for joining.
 +
 
 +
 
  
Thank you for joining.
 
  
 
|}
 
|}

Revision as of 17:04, 29 July 2013

Time' Narration
00:01 Welcome to the spoken tutorial on Relational Operators in Java.
00:07 In this tutorial, we will learn about the


00:09 the boolean data type
00:10 Relational operators and
00:12 how to compare data using Relational operators.


00:17 For this tutorial we are using

Ubuntu 11.10,

JDK 1.6 and

Eclipse 3.7

00:26 To follow this tutorial, you must have knowledge of data types in Java


00:31 If not, for relevant tutorials, please visit our website as shown.
00:39 Relational operators are used to check for conditions.


00:43 Their output is a variable of boolean data type


00:48 A boolean data type is of size 1 bit


00:51 It stores only two values.


00:54 True or False.


00:56 True is the output when the condition is true.


00:59 False is the output if the condition is not true.
01:06 Here is a list of the Relational operators available.


01:10 * greater than
01:12 * less than
01:13 * equal to
00:14 * greater than or equal to
01:15 * less than or equal to
01:17 * not equal to
01:19 We shall look into each of them in detail.
01:22 Switch to Eclipse.
01:27 Here we have the Eclipse IDE and the skeleton required for the rest of the code.


01:33 I have created a class BooleanDemo and added the Main method.


01:38 Now let us add some expressions.
01:41 Type boolean b ;


01:47 The keyword boolean declares the data type of the variable b as boolean.


01:53 We shall store the result of our condition in b.
01:5 We shall define a variable weight and check for a condition using that variable.


02:05 int weight equal to 45;


02:13 We shall check if the value in weight is greater than 40.


02:18 b equal to weight greater than 40;


02:28 This statement says check if the value of variable is greater than 40 and store the result in b;


02:37 Now Let us print the value of b.


02:41 System dot out dot println(b);


02:49 Save and Run.
02:59 As we can see, the output is True.
03:02 Let us see what happens if the value is less than 40.


03:07 Change weight to 30.


03:12 Save and run
03:20 We can see that the output is False as expected.
03:24 This way, the greater than symbol is used to check if one value is greater than the other.


03:30 Similarly, less than symbol is used to check if one value is less than the other.
03:37 let us change thegreater than to less than symbol.


03:43 So We are checking if the value of weight is less than 40.


03:48 Save Run
03:56 As we can see, the output is True as expected.


04:01 Let us change the value of weight to 45 and see the output.


04:09 Save and Run.
04:16 We see that we get a False because the condition,


04:21 weight less than 40 is not true.


04:25 Now let us see how to check if a value is equal to another.
04:31 To do that, we use two equal to symbols.


04:35 change less than symbol to double equal to.


04:41 Save and Run
04:48 As we can see, the output is False because the value of weight is not equal to 40.
04:55 Now let us change the weight to 40 and see the output.
05:01 Save and Run.
05:08 As we can see, the output is True


05:12 This way, Double equal to is used for checking equality.


05:16 Please be careful because, often people use a single equal to symbol for checking equality.


05:22 And this gives unnecessary errors.
05:26 Next we'll see how to check for less than or equal to.


05:30 To do that, we will use a less than symbol followed by an equal to symbol.


05:35 change the double equal to to less than equal to.


05:42 Save and Run.
05:50 the output is True as expected.


05:53 Now let us change the value of weight to see if the less than check is performed.
05:59 Change 40 to 30.
06:04 Save and Run.


06:14 We see, that although the weight is not equal to 40 we get the output as True because it is less than 40.


06:22 Let us see what happens if the value of weight is greater than 40.
06:274 Let say 50. Save and Run.
06:39 As we can see, the output is False because the value of weight is not equal to 40.


06:44 And it also not less than 40.
06:48 Similarly we use a greater than symbol followed by an equal to symbol for checking greater than or equal to.


06:55 Let us try it.
06:57 Change less than equal to to greater than equal to


07:04 Save and Run.


07:10 As we can see, the output is true because weight is greater than 40
07: 16 Let us change weight to a value less than 40. Lets say 30.


07:25 Save and Run.
07:32 We get a false because the value of weight is not greater than 40 and also not equal to 40.
07:39 Next, we’ll see how to check for not equal to


07:46 It is done by using an exclamation mark followed by an equal to symbol.


07:53 Change greater than to exclamation


07:59 So this statement says check if the value of weight is not equal to 40 and store the result in b


08:08 Save and Run
08:16 As we can see, the output is true because the values of weight is not equal to 40.
08:23 Let us change the weight to 40 and see the output.
08:28 Change 30to 40.
08:31 Save. Run.
08:38 We get a false because the condition weight not equal to 40 is false.
08:45 The not equal to condition can be thought of as opposite of equal to condition.
08:50 This is how we use the various relational operators to compare data in Java.
08:58 This brings us to the end of this tutorial.


09:01 In this tutorial we have learnt, about the boolean data type
09:06 The relational operators and
09:08 how to use relational operators to compare two values
09:13 As an assignment for this tutorial, find out if the two expressions shown are equivalent?
09:23 To know more about the Spoken Tutorial project,


09:23 * Watch the video available at[1]
09:28 * It summarises the Spoken Tutorial project
09:31 * If you do not have good bandwidth, you can download and watch it


09:36 The Spoken Tutorial Project Team,


09:38 Conducts workshops using spoken tutorials.


09:40 Gives certificates for those who pass an online test. For more details, please write to contact AT spoken HYPHEN tutorial DOT org.
09: 50 Spoken Tutorial Project is a part of the Talk to a Teacher project.


09:54 It is supported by the National Mission on Education through ICT, MHRD, Government of India.


10:00 More information on this Mission is available at spoken HYPHEN tutorial DOT org SLASH NMEICT HYPHEN Intro
10:05 This tutorial has been contributed by TalentSprint. Thanks for joining.



Contributors and Content Editors

Gaurav, PoojaMoolya, Ranjana, Sandhya.np14, Sneha