Hitler because,Hitler was a great and wealthy companion
Answer:
Explanation:
In video editing programs we can use the timeline in different ways, for example:
- Speed/Duration command
- Rate Stretch tool
- Time Remapping feature
We can modify the speed of the clip making it faster or slower, or we can modify the duration, shortening or lengthening the video frame by frame, this method can be used in the audio too.
It's example of feedback because you not interact with them.
Answer:
There is logic problem in condition of elseif statement that is (time<20).
Explanation:
elseif(time<20) will be true for time<10 that means program will never greet good morning as to make logic correct either change condition from <em>elseif(time<20)</em> to <em>elseif(time<20&& time>=10)</em>. Or change the order of condition like check first for <em>elseif(time<10) </em>
solution 1
if (time < 6) { greeting = "It is too early!"; }
else if (time < 20 && time>=10) { greeting = "Good Day!"; }
else if (time < 10) { greeting = "Good Morning!"; }
else { greeting = "Good Evening!"; }
console.log(greeting);
solution 2
if (time < 6) { greeting = "It is too early!"; }
else if (time < 10) { greeting = "Good Morning!"; }
else if (time < 20 ) { greeting = "Good Day!"; }
else { greeting = "Good Evening!"; }
console.log(greeting);
Answer:
Check the explanation
Explanation:
We muddy pseudo code for BOTTOM-UP-CUT-ROD by simply adding —c inside the parenthesis you have in line 6 (because that is were cut is made),
so that now it reads like this:
![q=max(q,p[i]+r[j-i]-c)](https://tex.z-dn.net/?f=q%3Dmax%28q%2Cp%5Bi%5D%2Br%5Bj-i%5D-c%29)
the after results will look like:
Modify pseudo code for BOTTOM-UP-CUT-ROD