Jiskha Homework Help
SATURDAY
November 21, 2009
SCHOOL SUBJECTS
- Art
- Business
- Computers
- English
- Foreign Languages
- Health
- Home Economics
- Math
- Music
- Physical Education
- Science
- Social Studies
GRADE LEVELS
- Preschool
- Kindergarten
- Elementary School
- 1st Grade
- 2nd Grade
- 3rd Grade
- 4th Grade
- 5th Grade
- 6th Grade
- 7th Grade
- 8th Grade
- High School
- 9th Grade
- 10th Grade
- 11th Grade
- 12th Grade
- College
- Adult Education
Post a New Question | Current Questions | Chat With Live Tutors

Homework Help Forum: programming

Posted by steve on Friday, October 23, 2009 at 7:38pm.

Consider the following selection statement where X is an integer test score between 0 and 100.
input X
if (0<=X and X<49)
Output "you fail"

Else if (50<=X and X <70)
Output "your grade is" X
Output " you did OK"

Else if (70<=X and X<85)
Output "your grade is"X
Output "you did well"

Else if (85<=X and X<100)
Output "your grade is X
Output "You did great"

Endif
Output "how did you do?"

What will be printed if the input is 0?

  • programming - MathMate, Friday, October 23, 2009 at 7:42pm

    "What will be printed if the input is 0?"
    As a programmer, you would following each statement of the if-then-else statement and see where the conditions will be satisfied. Follow what it does (prints) after that.
    If you start from the top, you won't have very far to go before you find the answer if someone gets a zero (i.e. X=0).

  • programming - steve, Friday, October 23, 2009 at 9:11pm

    I am still unaware of the answer.

  • programming - MathMate, Saturday, October 24, 2009 at 8:06pm

    100.
    "
    100 input X
    200 if (0<=X and X<49)
    300 Output "you fail"

    400 Else if (50<=X and X <70)
    500 Output "your grade is" X
    600 Output " you did OK"
    700 ....
    "

    What will be printed if the input is 0?

    You have input the value of X in line 100. It will then execute line 200.
    After line 200 has been executed, if the input value of X = 0, which is the next line the program will execute?

    Make a guess from the context if you have to.

    The if-then-else statement branches according to the condition tested.
    In the case of line 200, it tests the value of x=0, if the condition is true, it will execute the next statement (and then jump to after the endif statement), otherwise it goes to the next else or elseif statement, and so on.

    If you need more details, explain where the problem is, or explain how you think it works, so we can better help you.

Answer this Question

First Name:
School Subject:
Answer:

For Further Reading

SEARCH

COMMUNITY
FEATURES
- Live Tutors
- Net Riddle
- Reference
- Search