The definition of pseudocode is that; A: A way of describing a set of instructions in text form using plain English
<h3>What is Pseudocode? </h3>
In computer science, pseudocode is defined as a plain language description of the steps in an algorithm or another system.
Now, the way Pseudocode works is that it often makes use of structural conventions of a normal programming language to be utilized for human reading instead of machine reading.
Pseudocode usually omits details that are essential for machine understanding of the algorithm, such as variable declarations and language-specific code.
Read more about Pseudocode at; brainly.com/question/11623795
Answer:
20
Explanation:
During the first iteration for the list [1, 4], numB = 1.
During the first iteration of the list [2, 3], numA = 2.
answer = answer + numA + numB
= 0 + 2 + 1
= 3
Since the list [2, 3] is in a nested loop, we need to first finish iterating the whole list before numB iterates to the next number, so numA = 3 this time and numB still stays at 1.
answer = answer + numA + numB
= 3 + 3 + 1
= 7
Now, numB moves to 4 and numA starts back at 2 again.
answer = answer + numA + numB
= 7 + 2 + 4
= 13
numB still says at 4 and numA moves to 3 since it is in a nested loop:
answer = answer + numA + numB
= 13 + 3 + 4
= 20
print(answer) will print the output 20.
Hope this helps :)
Answer:
Computer Properties
Explanation:
When the computer is turned on. Go to Windows Explorer (or CTRL+E).
Right click on "My Computer" or "My PC" (depending on the version of Windows you have installed).
From the list, select "Properties", which is usually the last on the list; you will see the size of the RAM installed on your PC.
Good luck