Answer:
The algorithm is as follows:
1. START
2. ARRAY2D[3][4]
2. FOR ROW = 0 to 3
2.1 FOR COL = 0 to 2
2.1.1 IF ARRAY2D[ROW][COL] > 7
2.1.1.1 PRINT
2.1.2 END IF
2.2 END FOR
3 END FOR
4. STOP
Explanation:
This begins the algorithm
1. START
This creates a 2d array of 3 column and 4 rows
2. ARRAY2D[3][4]
This iterates through the rows
2. FOR ROW = 0 to 3
This iterates through the columns
2.1 FOR COL = 0 to 2
Check if array element is greater than 7
2.1.1 IF ARRAY2D[ROW][COL] > 7
Print the element, if true
2.1.1.1 PRINT ARRAY2D[ROW][COL]
The following ends the condition and iterations
<em>2.1.2 END IF</em>
<em>2.2 END FOR</em>
<em>3 END FOR</em>
This ends the algorithm
4. STOP
The tax you pay goes into supporting common resources, like firefighters, polices and many more. It also helps ensure your safety and funds education, and problems around the world.
The question has the below multiple choices
A. Man-In-The-Middle (MITM)
B. Man-In-The-Browser (MITB)
C. Replay
D. ARP poisoning
The answer is B
As compared to the Man-In-The-Middle attack, the
Man-In-The-Browser attack intercepts communications between parties to
manipulate or steal data. This attack seeks to intercept and steal or manipulate
communication that exists between the browser and the underlying computer. It
begins with a Trojan infecting the underlying computer and installing an
extension into the web browser configuration.
Answer:
Sure, what do you need help with
Explanation:
Answer:
The difference between While loop and Do - While loop are explained below.
Explanation:
- While loop : It is a looping procedure in which the statements inside the while loop are executed depending on the condition outside the while before starting the loop.
- If the condition is true then the code inside loop is executed otherwise not.
- Do - While loop: It is a looping procedure in which the statements inside the loop get executed and then the condition at the end of the loop is checked.
- This means even the condition is fails the statements inside the loop are executed once.
- Do while loop name itself suggests that "do the while and then check the condition".