Computer Science, asked by bipinshah303, 2 months ago

True or false: MSGBOX is used for the same work as INPUTBOX.

Answers

Answered by vidyakumari13july
0

Answer:

true is the correct answer

Answered by TheMoonlìghtPhoenix
3

Explanation:

False, Message Box is not used used as Input Box.

  • Message Box is used to prompt out the command in strings. & and double quotes are used to separate it.
  • Input Box uses "Val" or the value command that the user needs to enter. So, this is the difference.

Now, steps to look out for the difference in them, the còde is :-

Dim a, r as single ---------------- single, integer, double

a = Val(Textbox1.text)

r = Val(textbox2.text)

(Now, put the command as required)

Example:- For area of circle,

r = 2 * 3.14 * a -------(a is justified above)

Now, these were input boxes. Now, message box:-

Msgbox(str("a" & "is" & "the" & "required" & "answer"))

So, it pops the answer :-

--- is the required answer. This is how it is displayed .

Similar questions