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.
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.
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.
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.
#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.
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.
intab.io
InTab - Style websites faster
Visually style any website in any browser without typing CSS
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.
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
https://instagram.openinapp.co/p-cb91couaeax
This media is not supported in your browser
VIEW IN TELEGRAM
Me : It Is One Of My Features
https://instagram.openinapp.co/reel-cbwwkkdjwt
https://instagram.openinapp.co/reel-cbwwkkdjwt
https://github.com/enaqx/awesome-react
A collection of awesome things regarding React ecosystem.
#dsalgo1 #sharingiscaring
A collection of awesome things regarding React ecosystem.
#dsalgo1 #sharingiscaring
GitHub
GitHub - enaqx/awesome-react: A collection of awesome things regarding React ecosystem
A collection of awesome things regarding React ecosystem - enaqx/awesome-react
👍1
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.
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.