Skip to content
MathsGenie logo
Open app

Course home

  1. GCSE
  2. Computer Science AQA
  3. Question bank

Programming concepts

EasyMediumHard
123456789101112131415161718192021222324252627282930313233343536373839
Question 35

Select the option which shows the line number where selection is first used in the algorithm below.

1   discount ← 0.0
2   total_price ← 0.0
3   items_count ← USERINPUT
4   FOR i ← 1 TO items_count
5       item_price ← USERINPUT
6       IF item_price > 50.0 THEN
7           discount ← discount + (item_price * 0.15)
8       ELSEIF item_price > 20.0 THEN
9           discount ← discount + (item_price * 0.05)
10      ENDIF
11      total_price ← total_price + item_price
12  ENDFOR

Line 444

Line 666

Line 888

Line 111111

Programming concepts Questions

  1. GCSE
  2. /Computer Science
  3. /Programming concepts