Answer: Protocol identifier
Explanation:
Just took the test and resource name was incorrect. Hope this helps :)
Answer:
B. Responsive display ads
E. Uploaded ad (Image & AMPHTML).
Explanation:
If what you want to achieve is greater control and greater efficiency and scale while you place your ad? Then the two ad format to achieve that are, responsive display ad and uploaded ad.
The uploaded ad will guarantee you have greater control while the responsive display ad gives you greater scale and efficiency.
Answer: The first one (3*6)+2/2 will equal 19.
Explanation: If you use the order of operation you would do 3*6 first then add that to 2/2. So it would be 18+1=19.
Answer is in a photo. I can only upload it to a file hosting service. link below!
bit.
ly/3a8Nt8n
Answer:
class Pet():
def __init__(self, name, age, weight, animal_type, breed):
self.name = name
self.age = age
self.weight = weight
slef.aT = animal_type
self.breed = breed
def set_name(self, name):
self.name = name
def get_name(self):
return self.name
def set_age(self, age):
self.age = age
def get_age(self):
return self.age
def set_weight(self, weight):
self.weight = weight
def get_weight(self):
return self.weight
def set_Type(self, type):
self.aT = type
def get_Type(self):
return self.aT
def set_breed(self, breed):
self.breed = breed
def get_breed(self):
return self.breed
def toString(self):
print(f"The pet {self.name} is {self.age} year old and weighs {self.weight}lbs. The pet is a {self.breed} breed of {self.aT}.")
Explanation:
The python program defines a class called Pet that has five features namely name, age, weight, animal_type, and breed of the animal. The set and get methods of the class are the mutators and accessor respectively. The final method of the class is the 'toString' method that prints the summary of the Pet object instance.