Math, asked by farruuasif, 3 months ago

Assume, Num1=5, Num2=6.
1. Num1 < Num2
2. Num1 <= Num2
3. Num1 > Num2
4. Num1 >= Num2
5. Num1 != Num2
Identify the expressions which would result in True?
a. 1,2,3
b. 1, 2,5
c. 2, 3, 4
d. 1,4,5​

Answers

Answered by chaplotpalak20
3

Step-by-step explanation:

Here Is Your Answer

Answered By Palak Chaplot

Solved

Please mark Brainlist

Attachments:
Answered by dhritibaidwanlm
0

Answer:

B is the correct option.

Step-by-step explanation:

Given: Num1 = 5 and Num2 = 6

For the first case:

           Num1 < Num2

                  5 < 6

                 True

Second Case:

          Num1 <= Num2

                  5<=6

                 True

Third Case:

          Num1 > Num2

                 5 > 6

                False

Fourth Case:

          Num1 >= Num2

                  5>=6

                False

Fifth Case:

           Num1 != Num2

                  5 != 6

                True

Therefore, the expressions which will result in true is 1,2, and 5 case.

Similar questions