Ehheem✔️
Explanation:
✔️✖️✔️✖️✔️✖️
Answer:
189.15cy
Explanation:
To understand this problem we need to understand as well the form.
It is clear that there is four wall, two short and two long.
The two long are 
The two long are 
The two shors are 
The height and the thickness are 14ft and 0.83ft respectively.
So we only calculate the Quantity of concrete,
![Q_c = [(2*122.08)+(2*86-375)]*14*0.833\\Q_c=4864.02ft^3](https://tex.z-dn.net/?f=Q_c%20%3D%20%5B%282%2A122.08%29%2B%282%2A86-375%29%5D%2A14%2A0.833%5C%5CQ_c%3D4864.02ft%5E3)
That in cubic yards is equal to 
Hence, we need order 5% plus that represent with the quantity

Answer:
Explanation:
class Pet:
def __init__(self):
self.name = ''
self.age = 0
def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)
class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''
def main():
my_pet = Pet()
my_dog = Dog()
pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()
my_pet.name = pet_name
my_pet.age = pet_age
my_pet.print_info()
my_dog.name = dog_name
my_dog.age = dog_age
my_dog.breed = dog_breed
my_dog.print_info()
print(' Breed:', my_dog.breed)
main()
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer:
Dr. Engelbart, who would later help develop the computer mouse and other personal computing technologies, theorized that as electronic circuits were made smaller, their components would get faster, require less power and become cheaper to produce — all at an accelerating pace