Предмет: Английский язык, автор: Аноним

Exercise 4.

Choose the correct variant.

The movie was hilarious! We really liked __________.
a) Him

b) Them

c) Her

d) It



2.Mary wants to talk to __________ about your homework.

a) Him

b) Her

c) You

d) Them



3. The plate shattered when John dropped __________ on the floor.

a) Him

b) Her

c) Them

d) It



4. Be careful; he lied to __________ before and he may do it again.

a) Us

b) It

c) We

d) They



5. Where are Jill and Cherie? Didn’t you invite __________?

a) Us

b) Them

c) They

d) Her



6. The spider bit __________ on my ankle.

a) You

b) Me

c) Her

d) It



7. I heard that Jeremy was cut from the team just because Tyler doesn’t like __________.

a) Him

b) Her

c) It

d) Them

Ответы

Автор ответа: Timur9967
3
1. D
2. C
3. D
4. A
5. B
6. B
7. A
Автор ответа: TurboDan
2
1. It
2. You
3. It
4. Us
5. Them
6. Me
7. Him
Похожие вопросы
Предмет: Информатика, автор: pivalalev172
import random
class Student:
def __init__(self, name):
self.name = name
self.gladness = 50
self.progress = 0
self.alive = True
def to_study(self):
print("Time to study")
self.progress += 0.12
self.gladness -= 3
def to_chill(self):
print("Rest time")
self.gladness += 5
self.progress -= 0.1
def is_alive(self):
if self.progress < -0.5:
print("Cast out…")
self.alive = False
elif self.gladness <= 0:
print("Depression…")
self.alive = False
elif self.progress > 5:
print("Passed externally…")
self.alive = False
def end_of_day(self):
print(f"Gladness = {self.gladness}"
print(f"Progress = {round(self.progress, 2)}")
def live(self, day):
day = "Day" + str(day) + "of" + self.name + "life"
print(f"{day:=^50}")
live_cube = random.randint(1, 3)
if live_cube == 1:
self.to_study()
elif live_cube == 2:
self.to_sleep()
elif live_cube == 3:
self.to_chill()
self.end_of_day()
self.is_alive()


Розширте клас студента, додавши атрибут грошей.
Реалізуйте метод роботи студента, щоб у нього була можливість заробітку. Під час відпочинку гроші витрачаються.
Крім того, глибше продумайте поведінку студента.
Наприклад, за браку коштів він має піти на роботу, коли
виникають проблеми з навчанням – почати вчитися, тощо.
Студент має прожити рік.


ДАЮ 100 БАЛІВ!