What will be the output of the following Python code snippet if x=1?
X<<2
X<<2
Anonymous Quiz
22%
4
31%
2
37%
1
10%
8
👏3
Which of the following is the truncation division operator in Python?
Anonymous Quiz
29%
/
48%
//
10%
|
13%
%
👍2
What does pip stand for python?
Anonymous Quiz
10%
Pip Installs Python
34%
Pip Installs Packages
39%
Preferred Installer Program
18%
All of the mentioned
👏2
What will be the output of the following Python code?
l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Anonymous Quiz
17%
[1, 0, 2, ‘hello’, ”, []]
50%
Error
22%
[1, 2, ‘hello’]
11%
[1, 0, 2, 0, ‘hello’, ”, []]
👍3👎1