Your browser does not support JavaScript!

RevolutionarySlug

RevolutionarySlug is Information Technology student 👩‍💻
Last login
4 months ago
Joined
2024-06-14
RevolutionarySlug latest posts

4 months ago - int a = 2; int b = 5; int c = 3; int intResult = 0; boolean x = true; boolean y = false; boolean booleanResult = false; What will be the value of intResult or booleanResult if we execute the following expressions?

4 months ago - What will be the value of intResult or booleanResult if we execute the following expressions? booleanResult = !((a + c) > b) && x;

4 months ago - What will be the value of intResult or booleanResult if we execute the following expressions? intResult = a >> 2;

4 months ago - What will be the value of intResult or booleanResult if we execute the following expressions? booleanResult = x && y || x;