Computer Science, asked by harshaksranjana993, 1 year ago

Write a pseudo-code to move from the start (s) to the end (e) in the maze infosys
Pseudo-code Magnets:
else

move

end-while

while(start != end) do

end-if

if(Is_Next_Block_Bomb) then

Answers

Answered by nafibarli789
1

Answer:

Pseudocode exists as a plain language explanation of the stages in an algorithm or another system

Explanation:

Pseudocode exists as an artificial and informal language that helps programmers create algorithms. Pseudocode exists as a "text-based" detail (algorithmic) design tool. The rules of Pseudocode exist reasonably straightforward. All statements indicating "dependency" exist to be indented. These contain while, do, for, if, and switch.

Write a pseudo-code to move from the start (s) to the end (e) in the maze Infosys is as follows,

while (start!=end)

move right  

move right  

if(is_next_block_bomb)then  

move down

move down  

end if  

end while

#SPJ3

Answered by anusha195sl
1

Answer:

The correct answer is pseudo code method.

Explanation:

Pseudo code is a process of computer program or algorithm, that can be expressed in form of a natural language than in a programming language.

The following is the syntax for pseudo code move from the start (s) to the end (e) in the maze infosys

for(counter = 0,counter<=4,counter=counter+1)

move right

end for

for(counter = 0,counter<=6,counter=counter+1)

move right

end for

for(counter = 0,counter<=5,counter=counter+1)

move right

end for

#SPJ3

Similar questions