Topic 4_ Recap

timer
1:00
What comes to
your mind ???
1 / 12
next
Slide 1: Mind map
TechnologySecondary Education

This lesson contains 12 slides, with interactive quizzes and text slides.

Items in this lesson

timer
1:00
What comes to
your mind ???

Slide 1 - Mind map

This item has no instructions

Set of instructions for solving a problem or sub problem in a finite amount of time using a finite amount of data.

A
Algorithm
B
Pseudocode
C
Methods
D
Sub programs

Slide 2 - Quiz

This item has no instructions

If S is “abcdefg”, what will be len?
int len=S.length();

Slide 3 - Open question

This item has no instructions

Slide 4 - Slide

This item has no instructions

Slide 5 - Slide

Bubble sort swaps adjacent items each time it goes through the list;
Selection sort finds the next smallest each time it goes through the list;
Bubble sort can exit early if already sorted;

Slide 6 - Slide

This item has no instructions

Identify the operation from the given flowchart.

Slide 7 - Open question

This item has no instructions

VALUE[0] = 7
What does this statement indicate?

Slide 8 - Open question

This item has no instructions

Identify the given operation from the flowchart shown.

Slide 9 - Open question

This item has no instructions

Text
2 Conditions satisfied
Any 1 condition satisfied
if NOT X = 7 AND Y = 1 then
if X < 7 AND Y > 2 then
if X < 7 OR Y > 2 then
if X > 4 AND X = 4 then

Slide 10 - Drag question

This item has no instructions

loop POS from 0 to 19
output STUDENTS[POS]
end loop
What will be the output of the above Algorithm?

Slide 11 - Open question

This item has no instructions

Collections
Collections store a set of elements. The elements may be of any type (numbers, objects, arrays,
Strings, etc.)

Slide 12 - Slide

This item has no instructions