Programology – Telegram
Programology
7.26K subscribers
1.94K photos
771 videos
6 files
2.08K links
Pro·​gram | \ ˈPrō-ˌgram , -grəm \
:A Sequence Of Coded Instructions That Can Be Inserted Into A Mechanism (Such As A Computer)

Who We Are : https://msha.ke/programmerjokesofficial
Download Telegram
Options
Anonymous Quiz
49%
A
10%
B
36%
C
5%
D
Answer: c
Explanation: Unary not operator, ~, inverts all of the bits of its operand. 42 in binary is 00101010 in using ~ operator on var1 and assigning it to var2 we get inverted value of 42 i:e 11010101 which is -43 in decimal.
Comment Output
Options
Anonymous Quiz
71%
A
20%
B
5%
C
3%
D
#thoughts

This one looks like an interesting thing to try

https://intab.io/

Not like browser devtools are much worse, but who knows until you give it a go.

So far looks like code editor with export features and nice UI already win.
Output: FALSE
Let us consider the condition inside the if statement. Since there are two greater than (>) operators in expression “c > b > a”, associativity of > is considered. Associativity of > is left to right. So, expression c > b > a is evaluated as ( (c > b) > a ) which is false.
Thank You Guys, You Are Real Hero
https://instagram.openinapp.co/p-cb91couaeax
Comment Output
Options
Anonymous Quiz
33%
A
12%
B
13%
C
42%
D
Output:

infinite loop
Explanation:
Any non-zero number in C++ is treated as true value. Here in this code the if statement tends to decrease the value of i but inside the block of if, the main() function is called again and again (all the statements will now execute as if it is a new program) hence the program execution will be caught in infinite loop as there is no termination condition.
Comment Output
Options
Anonymous Quiz
46%
A
36%
B
4%
C
14%
D
👍1
👍4