Question: Please check my answer. On 2 problem. 1. Complete the following program segment with a set of operators that displays the characters in Name except
Please check my answer. On 2 problem. 1. Complete the following program segment with a set of operators that displays the characters in Name except the blank. For (K =0; K<9; K++) If (Name[K]___" '') Then Write Name[K] End If End For my answer If (Name[K] != " ") 2. Which is the correct way to load an array named WorkHours with the number ofhours that five employees worked last week? Declare WorkHours[5] As Float Declare J As Integer For ( J = 0; J <=4; J ++) Write "Input number hours worked for employee" J + 1 Input WorkHours [___] End For My answer is Input WorkHours[Count]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
