Answer:
Option c is the correct answer for the above question.
Explanation:
- If the array will store in row-major order, then it will be a store like the first row, then second row and then third row.
- If the user wants to conclude the address of the A[3,5], then the address of the A[3,5] will be 184.
- It is because the 3 states the row number and the 5 states the column number.
- The above question states that every value take 8 bit. and there are 4 rows from 0 to 3 and 6 column (0 to 5) for every row (except the fourth rows because it takes 5 columns from 0 to 4) before the A[3,5].
- So there are 23 value before A[3,5] which are as-- [00,01,02,03,04,05][10,11,12,13,14,15][20,21,22,23,24,25][30,31,32,33,34].
- So when every value takes 8 bit then 23 value takes 184 bits(23*8).
- So the address of A[3,4] is 184.
- Hence option c is the correct and the other is not because of 184 stated from the c option only.
Answer:
no
Explanation:
Printer is a output device. It takes the input from the user and gives the output in the form of a texted document. It is called hard copy of our document. output device ... it takes input from computer and gives output in form of texted document or graphical document .
Answer:
The correct answer to the following question will be "Disaster Recovery as a Service (DRaaS)".
Explanation:
DRaaS seems to be a cloud services term used only to secure an infrastructure or data through human catastrophe or interruption of service at any destination by allowing a complete recovery throughout the cloud.
- DR seems to be a security or management preparation field which seeks to protect an organisation from those in the consequences of major negative experiences.
- This provides offsite backups which use storage resources to defend programs including assets from disaster-induced destruction.
Answer:
Shows the programming checking if num1 is greater than num2
Explanation:
So num1 and num2 are inputs
for you to code this you would need to put
num1=int(input("What is your first number? ))
and the same for num2 except change num1 for num 2 and first for second
When the input is completed, the computer will check if num 1 is greater than num2
it will do this by using a code something like:
if num1>num2:
Print("Your first input was greater than your second")
But in this example if it greater it just ends
But if it was less than you would put
if num1>num2:
Print("Your first input was greater than your second")
elif num1<num2:
Print("Your first input is less than your second")
So basically this code shows the computer checking if one number is greater than the other or not