This media is not supported in your browser
VIEW IN TELEGRAM
Complete Javanoscript 😮😂
https://openinapp.co/2e3ea
https://openinapp.co/2e3ea
😁3
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
Understanding the task, translating the business requirements into logic, problem solving, solution creating THEN writing out the code
👍5👏2❤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.
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.
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.