COMPUTER SCIENCE AND ENGINEERING
SQL
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
name = input("Enter name")
|
|
name = enter("Enter name")
|
|
keyboard = ("Enter name")
|
|
ENTER name
|
Detailed explanation-1: -Input Expression We can use the INPUT() expression in pseudocode to get input from the user. It works just like a procedure, similar to DISPLAY(), but it doesn’t require any parameters. Instead, when evaluated the INPUT() expression will simply result in whatever input value is provided from the user.
Detailed explanation-2: -Pseudocode is understood by the programmers of all types. it enables the programmer to concentrate only on the algorithm part of the code development. It cannot be compiled into an executable program. Example, Java code : if (i < 10) i++; pseudocode :if i is less than 10, increment i by 1.
Detailed explanation-3: -Writing in pseudocode is similar to writing in a programming language. Each step of the algorithm is written on a line of its own in sequence. Usually, instructions are written in uppercase, variables in lowercase and messages in sentence case.