Quiz Discussion

Which one of the following has the highest precedence in the expression?

Course Name: Python

  • 1]

    Exponential

  • 2]

    Addition

  • 3]

    Parentheses

  • 4]

    Multiplication

Solution
No Solution Present Yet

Top 5 Similar Quiz - Based On AI&ML

Quiz Recommendation System API Link - https://fresherbell-quiz-api.herokuapp.com/fresherbell_quiz_api

# Quiz
1
Discuss

What will be the output of the following Python code?

>>>str="hello"
>>>str[:2]
>>>

 

  • 1]

    he

  • 2]

    olleh

  • 3]

    lo

  • 4]

    hello

Solution
2
Discuss

What is the return type of function id?

  • 1]

    int

  • 2]

    float

  • 3]

    dict

  • 4]

    bool

Solution
3
Discuss

What will be the value of the following Python expression?

4 + 3 % 5

 

  • 1]

    4

  • 2]

    7

  • 3]

    2

  • 4]

    0

Solution
4
Discuss

 Evaluate the expression given below if A = 16 and B = 15.

A % B // A

 

  • 1]
    0.0
  • 2]

    0

  • 3]

    1.0

  • 4]

    1

Solution
5
Discuss

Which of the following operators has its associativity from right to left?

  • 1]

    +

  • 2]

    //

  • 3]

    %

  • 4]

    **

Solution
6
Discuss

Which of the following will run without errors?

  • 1]

    round(45.8)

  • 2]

    round(7463.123,2,1)

  • 3]

    round()

  • 4]

    round(6352.898,2,5)

Solution
7
Discuss

What is the return value of trunc()?

  • 1]

    int

  • 2]

    bool

  • 3]

    float

  • 4]

    None

Solution
8
Discuss

What is the answer to this expression, 22 % 3 is?

  • 1]

    8

  • 2]

    1

  • 3]

    0

  • 4]

    2

Solution
9
Discuss

What are the values of the following Python expressions?

 2**(3**2)
 (2**3)**2
 2**3**2

 

  • 1]

    64, 512, 64

  • 2]

    512, 512, 512

  • 3]

    512, 64, 512

  • 4]

    64, 64, 64

Solution
10
Discuss

Mathematical operations can be performed on a string.

  • 1]

    True

  • 2]

    False

Solution
# Quiz