answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is the result when you the following line of code after a prompt print (3+11)?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the function key to execute Qbasic program?

QBASIC operators are listed as follows.../along with some example QBASIC code... ->LOGICAL OPERATORS AND OR NOT EXAMPLE QBASIC CODE:- A=1 B=1 IF (A AND B) THEN PRINT "Result: True" ELSE PRINT "Result: False" ...output... Result: True A=1 B=2 IF (A AND B) THEN PRINT "Result: True" ELSE PRINT "Result: False" ...output... Result: False -> MATHEMATICAL OPERATORS + plus - minus * multiply / divide MOD division remainder ^ raise to the power EXAMPLE QBASIC CODE:- num1=4 num2=2 PRINT num1 + num2 PRINT num1 - num2 PRINT num1 * num2 PRINT num1 / num2 PRINT num1 MOD num2 PRINT num1 ^ num2 ...output... 6 2 8 2 0 16 -> COMPARISON OPERATORS = equals > greater than < lesser than >= greater than/or, equals <= lesser than/or, equals <> not EXAMPLE QBASIC CODE:- num1 = 6 num2 = 8 IF num1 = num2 THEN PRINT "Equal to" IF num1 > num2 THEN PRINT "Greater than" IF num1 < num2 THEN PRINT "Lesser than" IF num1 >= num2 THEN PRINT "Greater than/or, equal to" IF num1 <= num2 THEN PRINT "Lesser than/or, equal to" IF num1 <> num2 THEN PRINT "NOT equal" ...output... Lesser than Lesser than/or, equal to NOT equal


What is the command prompt code?

when you are in cmd command prompt "type" help and you will see all the codes


Where to get print code in passport application?

what is print code ni passport


How do you print a file in foxpro?

You can try the below FoxPro code: Report Form "C:\Project\Reports\PrintReport" Preview Report Form "C:\Project\Reports\PrintReport" To Printer Prompt Nodialog Preview


What is the use of print option in c plus plus?

C++ has no print option. The print option in your IDE allows you to print your C++ source code, thus giving you a "hard" copy of your code.


What is the code to print odd numbers from 20 to 30 in qbasic?

The following code will produce a list of numbers in steps of 2. It can be modified for any start & end number, and the size of the step. start% = 21 end% = 29 FOR num% = start% TO end% STEP 2 PRINT num% NEXT The above code will produce the results 21,23,25,27 & 29


How can print both statement of if and else?

Simply print the whole source-code.


How do you compile source code from the command prompt in java?

compile:javac filename.javarun:java filename


Are there code lyoko posters?

yes there are you can print them at codelyoko.com


Can you print off a ID and key code for the pink kitty buildabear?

It is not possible for a person to print off an ID and key code from the pink kitty Build-a-Bear. This code only comes with the toy itself.


In jcl Which statement transmits print output to the remote location called DETROIT?

JCL is a type of communication code for computers. To get a print job to print out in Detroit, special steps must be followed and input correctly using the code.


How do you code a calculator in python?

An example might be: firstNumber = raw_input("Enter your first number: ") secondNumber = raw_input("Enter your second number: ") operatorChoice = raw_input("What do you wish to do with these numbers? ") if operatorChoice == "-": subtractSum = firstNumber - secondNumber print("Here is your result: %s") % (str(subtractSum)) if operatorChoice == "+": additionSum = firstNumber + secondNumber print("Here is your result: %s") % (str(additionSum)) That's a basic example.