Q3Single correct3 Marks23 Feb 2025What is the output of the following snippet of code? ``` s = 1 <= 2 <= 3 print(type(s)) ```A<class 'bool'>B<class 'int'>C<class 'str'>D<class 'list'>