Таких скидок больше не будет!

Соберите тест из готовой базы заданий ЕГЭ. Ученики решат этот тест и вы увидите их ответы прямо на платформе
Собрать тест ЕГЭ19 января 2025 14:57
Вот тест по теме "Множественное число существительных" для 11 класса. После каждого вопроса приведены правильные ответы.
What is the plural form of "child"?
a) childs
b) children
c) childer
d) childs
Ответ: b) children
What is the plural form of "mouse"?
a) mouses
b) mice
c) mousees
d) mousies
Ответ: b) mice
What is the plural form of "foot"?
a) feets
b) feet
c) foots
d) feetses
Ответ: b) feet
What is the plural form of "man"?
a) mans
b) men
c) manies
d) mens
Ответ: b) men
What is the plural form of "tooth"?
a) teet
b) teeth
c) tooths
d) toothes
Ответ: b) teeth
What is the plural form of "species"?
a) species
b) specieses
c) specis
d) speciese
Ответ: a) species
What is the plural form of "cactus"?
a) cactuses
b) cacti
c) cactusies
d) cactis
Ответ: b) cacti
What is the plural form of "analysis"?
a) analysises
b) analyze
c) analyses
d) analisis
Ответ: c) analyses
What is the plural form of "focus"?
a) focuss
b) focuses
c) foci
d) focies
Ответ: c) foci
What is the plural form of "formula"?
a) formulas
b) formulae
c) formuls
d) formulaes
Ответ: b) formulae
What is the plural form of "octopus"?
a) octopuses
b) octopi
c) octopodes
d) octopusses
Ответ: a) octopuses (b) octopi is also accepted in some contexts.
What is the plural form of "library"?
a) libraries
b) libaries
c) librarys
d) librari
Ответ: a) libraries
What is the plural form of "knife"?
a) knifes
b) knive
c) knives
d) knivs
Ответ: c) knives
What is the plural form of "leaf"?
a) leafs
b) leaves
c) leavs
d) leafies
Ответ: b) leaves
What is the plural form of "city"?
a) citys
b) cities
c) citis
d) citties
Ответ: b) cities
What is the plural form of "goose"?
a) gooses
b) geese
c) goosee
d) goss
Ответ: b) geese
What is the plural form of "index"?
a) indexes
b) indexs
c) indice
d) indices
Ответ: d) indices
What is the plural form of "quiz"?
a) quizzes
b) quizs
c) quizes
d) quizzies
Ответ: a) quizzes
What is the plural form of "bacterium"?
a) bacteriums
b) bacteria
c) bacteri
d) bacteriis
Ответ: b) bacteria
What is the plural form of "crisis"?
a) crises
b) crisises
c) crisisies
d) crisises
Ответ: a) crises
Этот тест охватывает различные правила образования множественного числа существительных в английском языке. Удачи вашим ученикам на экзаменах!
Ниже представлен тест по английскому языку на тему School subjects для 5 класса. Формат: выбор одного варианта. В конце — ключ ответов.
Тест
Which subject deals with numbers and shapes? A) Mathematics B) History C) Geography D) Art
Which subject studies the past? A) Geography B) History C) English D) Science
Which subject uses maps and learns about places? A) English B) Geography C) Art D) Music
Which subject helps you read and write in English? A) Science B) English C) Geography D) History
Which subject includes experiments and the scientific method? A) Biology B) Chemistry C) Science D) Art
Which subject lets you draw and paint? A) Music B) Art C) Geography D) History
Which subject involves singing and playing instruments? A) Art B) Music C) Science D) PE
Which subject is about sports and exercise? A) PE B) Geography C) English D) Science
Which subject teaches you how to use computers? A) Computing B) English C) History D) Geography
Which subject studies living things and the human body? A) Biology B) History C) Art D) Geography
Which subject focuses on the Earth, countries and cultures? A) Geography B) Science C) English D) Mathematics
Which subject teaches you about numbers, shapes, and measurements? A) Art B) Mathematics C) English D) History
Which subject looks at people and events of the past? A) History B) Geography C) Computing D) Music
Which subject would you study in a science classroom with experiments, lab coats, and reactions? A) English B) Science C) Geography D) Art
Which subject helps you become better at speaking, listening and reading in English? A) English B) Mathematics C) Science D) Geography
Ответы
Тест по программированию для 9 класса
Тема: Строковые величины в Python
Вопрос 1:
Объясните, что такое строка в Python и как она создается. Приведите пример.
Ответ:
Строка в Python — это последовательность символов, заключенная в одинарные или двойные кавычки. Например, строка может быть создана так:
string1 = 'Привет, мир!'
string2 = "Python - это здорово!"
Вопрос 2:
Как можно получить доступ к конкретному символу в строке? Приведите пример кода, который демонстрирует это.
Ответ:
Доступ к символам строки осуществляется с помощью индексации. Индексы начинаются с 0. Например:
string = 'Программирование'
print(string[0]) # Выведет 'П'
print(string[5]) # Выведет 'г'
Вопрос 3:
Что такое метод len() в контексте строк и как он используется? Приведите пример.
Ответ:
Метод len() возвращает количество символов в строке. Например:
string = 'Python'
print(len(string)) # Выведет 6
Вопрос 4:
Опишите, как осуществляется объединение (конкатенация) строк в Python. Приведите пример кода.
Ответ:
Объединение строк в Python осуществляется с помощью оператора +. Например:
string1 = 'Hello'
string2 = 'World'
result = string1 + ' ' + string2
print(result) # Выведет 'Hello World'
Вопрос 5:
Какие методы существуют для преобразования регистра строк? Приведите примеры их использования.
Ответ:
Существует несколько методов для преобразования регистра строк, таких как upper(), lower() и title(). Например:
string = 'hello world'
print(string.upper()) # Выведет 'HELLO WORLD'
print(string.lower()) # Выведет 'hello world'
print(string.title()) # Выведет 'Hello World'
Вопрос 6:
Напишите программу, которая запрашивает у пользователя строку и выводит ее длину, а также строку в верхнем регистре.
Ответ:
user_input = input("Введите строку: ")
print("Длина строки:", len(user_input))
print("Строка в верхнем регистре:", user_input.upper())
Успехов на экзаменах!