Draw This - beginner
Write pseudocode to plan a simple task: Making a cup of tea. Include steps for boiling water, adding tea leaves, steeping, and serving.
Jump into concepts and practice - no test required
Write pseudocode to plan a simple task: Making a cup of tea. Include steps for boiling water, adding tea leaves, steeping, and serving.
This pseudocode starts with the START symbol and ends with END. Each step is a simple instruction describing what to do next. The flow is linear, showing the order of actions to make tea: boiling water, adding tea leaves, pouring water, steeping, removing leaves, and serving. This clear sequence helps plan the task logically before actual execution.
SET total TO 0
FOR i FROM 1 TO 3
total = total + i
END FOR
PRINT total
What will be the output?SET count TO 0 FOR i FROM 1 TO 5 count = count + 1 PRINT count END FORWhat is the error?