Pseudocode
Start
Declare and create store array and keywords in double
i=0 ,a=0
while(i<10)
input score[i]
i=i+1
endwhile
input keyword
i=0
while(i<10)
if keyword=score[i]
Print “Score in the list” and index[i]
a=1
end if
i=i+1
endwhile
if a=0
Print “keyword not found in the score”
end if
stop
PROBLEM ANALYSIS
Input:Score/keyword
Process :Repeat entering the score 10 times .Search the element that will found in the
[Link] element found and index [] or message not found
Output:Display a message “The score is in the list” and index [] or message “The score is not in
the list”