Write pseudocode that creates two number variables, assigns different values to each, print the variables, swap the two values, and print the two variables again.For example, if we set a to 1 and set b to 2, the output would be as follows:1, 22, 1
What will be an ideal response?
num a = 1
num b = 2
print a, b
num c = a
a = b
b = c
print a, b
Computer Science & Information Technology
You might also like to view...
Expand the acronym WAN.
What will be an ideal response?
Computer Science & Information Technology
If a Web page has a large amount of text, a(n) ____ layout will make better use of the available space in the browser.
A. static B. liquid C. fixed-width D. absolute
Computer Science & Information Technology
Choose the sentence that applies correct capitalization.?
A. ?The Fourth of July holiday falls on Monday this year. B. ?The fourth of July holiday falls on Monday this year. C. ?The fourth of july holiday falls on monday this year.
Computer Science & Information Technology
The Align button, which aligns the edges of controls, is found on the ____ tab on the Ribbon.
A. Home B. Arrange C. Design D. Layout
Computer Science & Information Technology