Who is the smartest and fast?
Quiz by Ulbolsyn
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
Our brand new solo games combine with your quiz, on the same screen
Correct quiz answers unlock more play!
10 questions
Show answers
- Q1Напишите правильный код для рисования окружностиellipse(X,Y,R);circle(X,Y,R);circle(x1,y1,x2,y2,R);ellipse(x1,y1,x2,y2,R);20s
- Q2Какой рисунок получится по данному коду?корабльдомкрыша домапирамида120s
- Q3Оператор множественного выбора:ifelseif elseswitch20s
- Q4Найдите правильный код для рисования отрезкаline(x1,y1);moveto(x1,y1,x2,y2);lineto(x1,y1);line(x1,y1,x2,y2);20s
- Q5Определите результат выполнения фрагмента программы: X=3, Y=5, Z=7; if (Y>X &&Y>Z) cout<<Y; else cout<<Z+X;7351030s
- Q6К какому типу относится '758'?floatintboolchar20s
- Q7Какой из ниже представленных команд подходит для рисования флажка?rectangle(x1,y1,y1,y2);line(x1,y1)lineto(x1,y1,x2,y2)rectangle(x1,x2,y1,y2,A,B)30s
- Q8Ввод и вывод данныхcincoutcin,coutif,else20s
- Q9Приведите примеры значений переменных a и b, при которых составное условие a==3 && b>4 будет истинным.a=3, b= 7a=7, b=3a=3, b=4a=4, b=330s
- Q10Использование стандартных имен переменных:#include <cmath>using namespace std;#include <iostream>int main()20s