1. Consider the following statement in Basic 15 INPUT X, Y, Z
20 IF Y > X THEN 25
21 IF Z > Y THEN 30
25 PRINT Y
30 PRINT Z, X
35 END IF X, Y, Z are 150, 200, 250 then the output will be





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

  • By: guest on 02 Jun 2017 01.02 am
    In this case Y > X , so the control goes to 25. The output is Y , Z , X which are 200 , 250 , 150.
Show Similar Question And Answers
A. Ax = 0, Ay = 150 lb, Az = 562 lb, TBC = 300 lb, TBD = 212 lbB. Ax = 0, Ay = 150 lb, Az = 456 lb, TBC = 150 lb, TBD = 212 lbC. Ax = 0, Ay = 267 lb, Az = 843 lb, TBC = 533 lb, TBD = lbD. Ax = 0, Ay = 150 lb, Az = 500 lb, TBC = 212 lb, TBD = 212 lb Answer: Option A Explanation: No answer description available for this question. Let us discuss. Workspace Report errors ... Name : Email:....
QA->A statement followed by two assumptions I and II is given. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You are to decide which of the given assumptions can definitely be drawn from the given statement. Indicate which one of the four given alternatives is correct ? Statement : If more encouragement is given to Sports, Indians will win more gold medals at the Olympic Games. Assumptions : I. Indians do not win gold medals. II. More enc....
QA->Two statements are given followed by two conclusions I and II. You have to consider the two statements to be true even if they seem to be at variance from commonly known facts. You have to decide which one of the given conclusions is definitely drawn from the given statements. Statement : All virtuous persons are happy. No unhappy person is virtuous. Conclusions : I. Happiness is related to virtue II. Unhappy person is not virtuous.....
QA->200 രൂപ വിലയുള്ള ഒരു വാച്ച് 250 രൂപക്ക് വിറ്റപ്പോൾ ലാഭ ശതമാനം ?....
QA->A train of length 150 meters took 8 seconds to cross a bridge of length 250 meters. Time taken by the train to cross a telephone post is....
QA->Which one of the following is an output device?....
MCQ->Consider the following statement in Basic 15 INPUT X, Y, Z
20 IF Y > X THEN 25
21 IF Z > Y THEN 30
25 PRINT Y
30 PRINT Z, X
35 END IF X, Y, Z are 150, 200, 250 then the output will be....
MCQ->System.out.print("Start "); try { System.out.print("Hello world"); throw new FileNotFoundException(); } System.out.print(" Catch Here "); / Line 7 / catch(EOFException e) { System.out.print("End of file exception"); } catch(FileNotFoundException e) { System.out.print("File not found"); } and given that EOFException and FileNotFoundException are both subclasses of IOException, and further assuming this block of code is placed into a class, which statement is most true concerning this code?....
MCQ->Solve the following equation for x, y, and z:x – y + z = –1   –x + y + z = –1   x + 2y – 2z = 5....
MCQ->Determine the tension in the supporting cables BC and BD and the components of reaction at the ball-and-socket joint A of the boom. The boom supports a drum having a weight of 200 lb. at F. Points C and D lie in the x—y plane.

MCQ->What will be the output of the program? public class X { public static void main(String [] args) { try { badMethod(); System.out.print("A"); } catch (RuntimeException ex) / Line 10 / { System.out.print("B"); } catch (Exception ex1) { System.out.print("C"); } finally { System.out.print("D"); } System.out.print("E"); } public static void badMethod() { throw new RuntimeException(); } }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution