Which is the correct arrangement for the path of a person seeking training as an engineer?
A. Interview with accomplished engineers, attend a two-year college, and proceed to a specialty program
B. Receive a two-year specialized degree from an engineering school, and then work as an apprentice for five years
C. Complete a bachelor of science degree, master of technology degree, and then a PhD in whichever specialized area the person wants to pursue.
D. Complete a four-year bachelor's degree in a specialized field, work with a Professional Engineer, and take a Professional Engineering examination to earn a license
Answer:
b
Explanation:
Answer:
b
Explanation:
Part D
Look at the table again. What is the total number of watts used by a TV connected to a video game
system?
Answer:
I would say 185
Explanation:
If a TV is 150 watts and a video game sistem is 35 then you would have to add them together and you would then get 185. So a TV connected to a video game system would run at 185 watts.
What characteristic makes a plaster tender a Job Zone One occupation?
Answer:
They are basically unskilled laborers.
Explanation:
In "Rabbitville", the rabbit population squares each year. e.g. If you start with 4 rabbits, you'll have 16 in 1 year, and 256 in 2 years. Once the population exceeds 10,000 bunnies, food will be scarce, and population will begin to decrease.
Write a function years_till_no_carrots that includes a WHILE loop. Given a single integer (# of starting rabbits) as an input, your function should output the number of whole years until the number of rabbits becomes larger than 10000. e.g. years_till_no_carrots(4) = 3 (start with 4 rabbits, population greather than 10000 & food scarce in 3 years)
Answer:
In Python:
def years_till_no_carrots(n):
year = 0
while(n <= 10000):
n=n**2
year = year + 1
return year
Explanation:
First, we define the function
def years_till_no_carrots(n):
Next, the number of years is initialized to 0
year = 0
The following while loop is iterated until the population (n) exceeds 10000
while(n <= 10000):
This squares the population
n=n**2
The number of years is then increased by 1, on each successive iteration
year = year + 1
This returns the number of years
return year
To call the function from main, use (e.g): print(years_till_no_carrots(4))
Which of the following characteristics is a feature of all planets?
They all have atmospheres.
They all make their own light.
They all have rings of rock and gas.
They all are round and made up of rock.
Answer:
They all are round and make up of rock
Answer:
a. They all have atmospheres - I took the test on FLVS
Explanation: