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
Writing actual code isn't the first thing BUT the last thing I do. There is so much that needs to be done BEFORE the code is ever written.

Understanding the task, translating the business requirements into logic, problem solving, solution creating THEN writing out the code
👍5👏21
Comment Output
Options
Anonymous Quiz
41%
A
25%
B
16%
C
17%
D
👍1👏1
To make a tweet viral, you should tweet first.
To make a yt video popular, you should create it first.
To work a program, you should code it first.

To achieve a goal, you should start working first.

Have a good weekend.
Answer : (d)
Explanation: val1 will only have integer and floating values val1 = 1 + 1.33 + 0 = 2.33 and val2 will have string values val2 ='PJO' + 'NO' = 'PJONO'. String 'G' will not be part of val2 as the for loop will break at None, thus 'G' will not be added to val2.
Comment Output
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.