Code corresponding to the pseudocode


What is the output of the code corresponding to the following pseudocode?
Declare A as Integer
Declare B as Integer
Declare N as Integer
Set A = 0
Set N = 4
Set B = 1
While B <= N
Set A = A + (2 * B - 1)
Write("A = " + A)
Set A = A + 2
Write("A is now = " + A)
Set B = B + 1
Write("B = " + B)
End While 

Request for Solution File

Ask an Expert for Answer!!
Database Management System: Code corresponding to the pseudocode
Reference No:- TGS099714

Expected delivery within 24 Hours