Ans:
| Expression | Value |
|---|---|
| x >= y | False |
| 2 * x > y | True |
| x <> x | False |
| "cat" <= "dog" | True |
True And True = True
True And False = False
False And True = False
False And False = False
True Or True = True
True Or False = True
False Or True = True
False Or False = False
Not True = False
Not False = True
Ans:
g = True And Not False
= True And True = True
| x | y | f | g |
|---|---|---|---|
| 4 | 9 | True | True |
 
Answer:
Ans: The loops look like this:
For Each x As String In b
For Each x As Integer In a
WriteLine(x & " " )
Next
WriteLine(x & " " )
Next