Week 12 - ECS

Week 12 - ECS

12th Grade

20 Qs

quiz-placeholder

Similar activities

Time machine week 4

Time machine week 4

9th - 12th Grade

15 Qs

Week 15 - ECS

Week 15 - ECS

12th Grade

20 Qs

COMPOSITION AND DECOMPOSITION

COMPOSITION AND DECOMPOSITION

11th Grade - University

15 Qs

Algorithm, Pseudocode, and Flowchart

Algorithm, Pseudocode, and Flowchart

11th - 12th Grade

15 Qs

[TOPIC 3] Design A Solution & Control Structure

[TOPIC 3] Design A Solution & Control Structure

12th Grade

23 Qs

SC025 3-weeks enhancement 1

SC025 3-weeks enhancement 1

12th Grade

18 Qs

GD2 - C++ 1.15 Quiz on Algorithms, Flowcharts & Pseudocode

GD2 - C++ 1.15 Quiz on Algorithms, Flowcharts & Pseudocode

9th - 12th Grade

20 Qs

AQA Computer Science GCSE - 3.1 Fundamentals of algorithms

AQA Computer Science GCSE - 3.1 Fundamentals of algorithms

10th - 12th Grade

15 Qs

Week 12 - ECS

Week 12 - ECS

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Rafael Araujo

Used 5+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

It essentially means: repeat this code while the condition is met

Variable

Loop

Random

If-Else Statement

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The very first instruction you need in your python programming to be able to generate random numbers in between 1 and 100 is:

generate random()

random.seed()

random.randint(1,100)

import random

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following is an example of a loop in python that repeats until the variable "c" becomes greater than 5

while c < 6:

print(c)

c = c + 1

while c < 5:

print(c)

c = c + 1

while c > 5:

print(c)

c = c + 1

while c > 6:

print(c)

c = c + 1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following is an example of a loop condition in python that repeats until the value of variable "c" is not equal to the value of variable "a"

while c == a:

while c != a:

while c >= a:

while c <= a:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In order to understand and have clear all the steps of a process before programming it we do a:

brainstorm

flowchart

analysis

scratch

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a flowchart, circles are used to represent:

decisions

tasks

the beginning and the end of a process

the next step to be executed

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a flowchart, rectangles are used to represent:

decisions

tasks

the beginning and end of a program

the next step to be executed

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?

Discover more resources for Computers