John Smeatom, U.K. 18th century, was the first self-proclaimed, civil engineer in the 18th century and IS considered “the father of modern, civil engineering”.
hoped this helped! :)
I really don’t know good luck
Answer:
The code is attached.
Explanation:
I created a string s including 6 colors with spaces in between. Then I converted the string into a list x by using split() method. I used three different methods for removing elements from the list. These methods are remove(), pop() and del.
Then I used methods append(), insert() and extend() for adding elements to the list.
Finally I converted list into a string using join() and adding space in between the elements of the list.
Answer:
Rate of heat transfer to river=1200MW
So the actual amount of heat rejected ti the river will be less as there will some heat loss to surrounding and in pipes
Explanation:
In order to find the actual heat transfer rate is lower or higher than its value we will first find the rate of heat transfer to power plant:
From First law of thermodynamics:
Rate of heat transfer to river=heat transfer to power plant-work done
Rate of heat transfer to river=2000-800
Rate of heat transfer to river=1200MW
So the actual amount of heat rejected ti the river will be less as there will some heat loss to surrounding and in pipes.
Answer:
Using the above algorithm matches one pair of Ghostbuster and Ghost. On each side of the line formed by the pairing, the number of Ghostbusters and Ghosts are the same, so use the algorithm recursively on each side of the line to find pairings. The worst case is when, after each iteration, one side of the line contains no Ghostbusters or Ghosts. Then, we need n/2 total iterations to find pairings, giving us an P()- time algorithm.