He could use bold or bigger text just a suggestion.
        
             
        
        
        
- Sandbox. ... 
- Real-time strategy (RTS) ... 
- Shooter (FPS and TPS) ... 
- Multiplayer online battle arena (MOBA) ... 
- Role-playing games (RPG, ARPG, and more) ... 
- Simulation and sports.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em>
 
        
                    
             
        
        
        
Answer:
(i) When transmitting a draft manuscript for a book, the lossless compression technique is most suitable because after decompression, the data is rebuilt and restored in its form as it was from where it originated
(ii) When transmitting a video recording which you have made of the school play, a lossy compression technique is most suitable because the large size of video files require the increased data carrying capacity which is provided by the lossy transmission technique. The quality of the video can be reduced without affecting the message intended to be delivered
Explanation:
 
        
             
        
        
        
1.
name = input("Enter your name: ")
num1 = int(input("Hello "+name+ ", enter an integer: "))
num2 = int(input(name+", enter another integer: "))
try:
    if num1 % num2 == 0:
        print("The first number is divisible by the second number")
    else:
        print("The first number is not divisible by the second number")
except ZeroDivisionError:
    print("The first number is not divisible by the second number")
try:
    if num2 % num1 == 0:
        print("The second number is divisible by the first number")
    else:
        print("The second number is not divisible by the first number")
except ZeroDivisionError:
    print("The second number is not divisible by the first number")
2.
import random, math
num1 = float(input("Enter a small decimal number: "))
num2 = float(input("Enter a large decimal number: "))
r = round(random.uniform(num1, num2), 2)
print("The volume of a sphere with radius " + str(r) + " is " + str(round(((4 / 3) * math.pi * (r ** 3)), 2)))
I hope this helps!
 
        
             
        
        
        
Answer
calculator calc;
Explanation
An object is an instance of a class. And a class is what defines or describes the behavior or the state of the object of its type. When a class is defined no memory is allocated until when an object is created memory is allocated.