Computer Science, asked by Adeela7840, 7 months ago

Print(3**3//-4)...........................................................................................................

Answers

Answered by Charmcaster
6

Explanation:

this code is in python

3**3 represents 3³ = 27

// is a division followed by rounding of the quotient to the closest integer smaller that quotient

27/-4 is -6.75

therefore 3**3//-4 prints -7

Similar questions