Back to Browse

AP CSP Pseudocode: Assignment, DISPLAY, INPUT

3 views
Apr 27, 2026
5:27

[FYI: In the AP CSP Pseudocode (coding) language, the left arrow (←) is used as the assignment operator. Not the equal sign (=). Also, the "College Board Pseudocode Interpreter" website is actually NOT connected in any way with the actual College Board.] DISPLAY("AP CSP Pseudocode: Assignment") DISPLAY("Integer variable int1") int1 ← 3 DISPLAY(int1) DISPLAY("Float variable flt1") flt1 ← 3.21 DISPLAY(flt1) DISPLAY("String variable str1") str1 ← "AP CSP" DISPLAY(str1) DISPLAY("Boolean variable bl1") bl1 ← true bl1 ← false DISPLAY(bl1) DISPLAY("The INPUT Procedure") DISPLAY("Enter your name: ") name ← INPUT() DISPLAY("Your name is " + name + ".")

Download

1 formats

Video Formats

360pmp43.8 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

AP CSP Pseudocode: Assignment, DISPLAY, INPUT | NatokHD