Q11Single correct3 Marks7 Jul 2024What is the output of the following snippet of code? Snippet-1: ``` s = 3 >= 2 >= 1 print(type(s)) ```A<class 'bool'>B<class 'int'>C<class 'str'>D<class 'list'>