I'm pretty sure it's can be used in rural and remote areas, not 100 percent but seems right
Answer:
No results found for Real life example of hexadecimal and octal decimal “for example in binary light switch”.
Explanation:
gm
Answer:
The output of code will be 10
Explanation:
We need to find output of following code:
C = 1
Sum = 0
while (c less than 10):
C = c + 3
sum = sum + c
print (sum)
Solution:
We will check the condition of while loop, if the condition is true, then the statements inside the loop will be executed. Since brackets are not available so, only one statement is linked with while loop.
First while loop will be executed c < 10 (1<10) the condition becomes true, and statement c=c+3 will be executed ( 4=1+3) and then loop condition will be checked (4<10) the condition becomes true, and statement c=c+3 will be executed ( 7=4+3) and then loop condition will be checked (7<10) the condition becomes true and statement c=c+3 will be executed ( 10=7+3) and then loop condition will be checked (10<10) the condition becomes false, so we will come outside loop body and execute: sum=sum+c (10=0+10) and print sum i. e 10
So, The output of code will be 10
Answer:
(c) will be the correct option
Explanation:
Union-compatible : If there are two relations and both have are having same number of attributes then it called union compatibility the domain of similar attributes also must be same for union compatibility. Number of attributes means number of column
so from above discussion it is clear that option (C) will be correct option
You have to hit the back button