A flowchart is a way to visually represent an algorithm. The flowchart below uses the following building blocks.
count=1
Repeat until count is equal to or greater than 5 {
if count<5 then count=count+1}
Display (count)
What is displayed as a result of executing the algorithm in the flowchart?
(A) 5
(B) 15
(C) 1234
(D) 12345