Flowcharts and Pseudocodes

Cards (14)

  • This symbol is a:
    A) Start / End
  • This symbol is a:
    A) Process
  • This symbol is a:
    A) Input / Output
  • This symbol is a:
    A) Subroutine
  • This symbol is a:
    A) Decision
  • This symbol is a:
    A) Connector
  • Input the correct terms:
    A) Dry Run
    B) Test Plan
    C) Test Case
    D) Test Data
  • Fill in the blanks:
    // This is a comment
  • Fill in the blanks:
    DECLARE realNumber : REAL
    DECLARE name : STRING
    DECLARE alphabet : CHAR
    DECLARE wholeNumber : INTEGER
  • Fill in the blanks:
    CONSTANT race = "Chinese"
  • Fill in the blanks:
    IF number = 1 THEN
    x <- x + 1
    ELSE
    x <- 10
    ENDIF
  • Fill in the blanks:
    WHILE count < 101 DO
    PRINT count
    count <- count - 1
    ENDWHILE
  • Fill in the blanks:
    REPEAT
    PRINT count
    count <- count + 1
    UNTIL count = 100
  • Fill in the blanks:
    FOR count <- 1 TO 100 STEPS 2
    PRINT count
    NEXT