Answer:
b
Explanation:
i dont really have one im just assuming bc of all the jobs my sibling have had
Answer
B. 30
Explanation:
Assuming the code is written like this:
1. num1 = int(input())
2. num2 = 10 + num1 * 2
3. print(num2)
4. num1 = 20
5. print(num1)
Line 3 will print 30 when the number 10 is inputted at line 1.
Remember to use Order of Operations! :)
In computer programming, most language use '=' only to assign a value (some use :=). Usually "==" is to compare equality. And "!=" is used for not equal. I checked UTF8 encoding and there's no equal with a line through it character.
num%2==1
The modulo operator (%) divides the left hand side by the right hand side and returns the remainder. When dividing an odd number by 2 there will always be a remainder of 1.
Answer:
FROM.
Explanation:
UPDATE table
SET column=value,column1=value1,.....
WHERE condition;
In the UPDATE command given in the question FROM is optional because when using UPDATE we already mention the table name with update look at the syntax above.So there is no need to again mention the table name in FROM.All other three are required that is UPDATE,SET,WHERE.