1. What is the function of logical operators ? Write an expression involving a logical operator to test if marks are 55 and grade is ‘ B’.

Logical operators are the ways through which relationships among values can be connected.

if marks == 55 and grade == 'B':
    pass