Premiers pas avec turtle

Premiers pas avec turtle

11th Grade

9 Qs

quiz-placeholder

Similar activities

Quiz 1

Quiz 1

11th - 12th Grade

10 Qs

Perangkat Komputer

Perangkat Komputer

1st - 12th Grade

10 Qs

Kiểu dữ liệu xâu kí tự - xử lí xâu kí tự

Kiểu dữ liệu xâu kí tự - xử lí xâu kí tự

9th - 12th Grade

14 Qs

Python Fundamentals and Programming

Python Fundamentals and Programming

11th - 12th Grade

13 Qs

quiz java job 1-3

quiz java job 1-3

11th Grade

10 Qs

Javascript & Client side scripting

Javascript & Client side scripting

10th - 12th Grade

10 Qs

ETECH Q1

ETECH Q1

11th Grade

11 Qs

Lógica Programação - For, While, Do While

Lógica Programação - For, While, Do While

10th Grade - University

14 Qs

Premiers pas avec turtle

Premiers pas avec turtle

Assessment

Quiz

Computers

11th Grade

Practice Problem

Medium

Created by

Intissar Trabelsi

Used 37+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

python est un langage de programmation

textuel

visuel

anglais

2.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Media Image

pour avoir hello world dans la console on utilise

print(hello world)

print("hello world")

print('hello world')

print("hello world')

3.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Pour afficher 5 dans la console, on utilise

print (5)

a=5

print(a)

print("5")

print 5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

cet ensemble d'instructions donne :

15

ab

a+b

5+10

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Turtle est un

langage de programmattion

module graphique

modèle graphique

reptile

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

pour utiliser le module turtle on doit absolument mettre

import from turtle *

from turtle import *

from turtle import

import from turtle

7.

REORDER QUESTION

1 min • 1 pt

Ordonne les instructions suivantes pour dessiner un cercle rouge de rayon 150

shape("turtle")

color("red")

circle(150)

from turtle import *

8.

MATCH QUESTION

5 mins • 1 pt

Relie chaque figure avec son code

from turtle import *

shape("turtle")

forward (250)

left(90)

forward(250)

Media Image

from turtle import *

shape("turtle")

left(90)

forward (250)

left(90)

forward(250)

Media Image

from turtle import *

shape("turtle")

forward(200)

left(120)

forward(200)

left(120)

forward(200)

Media Image

from turtle import *

shape("turtle")

forward (250)

right(90)

forward(250)

Media Image

left(45)

forward(200)

right(135)

forward(50)

left(90)

forward(50)

Media Image

9.

REORDER QUESTION

1 min • 1 pt

Media Image

Ordonne les étapes pour avoir cette figure

from turtle import *

home()

circle(200,180)

left(90)