Find the output of the following Java code line System.out.printIn(math.floor(-7.4))
GATE CSE · Programming In C
Practice problems for Arithmetic Operation in Programming in C.
23 questions · 3 PYQs · 0 AI practice · GATE CSE 2027
Find the output of the following Java code line System.out.printIn(math.floor(-7.4))
Which combination of the integer variables x, y and z makes the variable a get the value 4 in the following expression? a = (x > y) ? ((x > z) ? x : z) : ((y > z) ? y : z)
Want unlimited AI-generated Arithmetic Operation questions?
Sign up free and practice with adaptive difficulty — Easy, Medium, Hard. New questions every session.
Start practising for free →What does the following code do? var a, b: integer; begin a:=a+b; b:=a-b; a:=a-b; end;