Rizal

Submitted by: Submitted by

Views: 200

Words: 342

Pages: 2

Category: World History

Date Submitted: 02/22/2014 04:32 PM

Report This Essay

1. Create a flowchart that accept weight in pounds ang height in feet and inches. Display weight in kilograms and height in centimeters.

Begin

END

Kg, cm

Lb = 0.454

Ft. = 30.48

W*0.454

H*30.48

W,H

2. Create a flowchart that computes the Basal Metabolic Rate of an individual. Refer to the following computation.

Start

3. Given the three numbers X,Y and Z determine and print out the smallest value.

X, Y, Z

IS

X>Z?

IS

Y>Z

IS

X>Y?

Y N Y Y

N N

X

Z

Z

Y

STOP

4. Create a flowchart that accepts seconds as input, and displays the converted hours, minutes, and seconds.

Start

Seconds

1 hr. = 60 min.

60 min.= 3600 sec.

3600 sec. = 1 hr.

hr., min., sec.

Stop

BEGIN

5. Calculate the interest of a bank deposit using the formula Interest= Amount* rate * years/100. Print out the amount deposited and the interest.

Amount

Years

END

Amount

Ineterest

Interest= Amount*Rate*Years/100

Rate

START

6. Create a flowchart that prints the title of a person(either Mr., Ms. or Mrs.).

Married?

Male?

Gender

STOP

Title

Mrs.

Mr.

Y

Miss

Status

N

Y

N

7. Create a flowchart that prompt a user for a number and prints the number of after adding to it. The flowchart will repeat this process unit the user enters 0(zero). Be sure to handle the case where the user enters 0 the first time.

BEGIN

8. Create a flowchart that computes the sum of first 50 natural numbers.

Sum= sum+N

N= N+1

N=0

Sum=0

IS N=50

N

END

Sum

Y

9. Create a flowchart that determines the product of two positive integers without using the multiplication operations.

10. A student wanted to know his grade in a certain subject. His professor had given the result of his 4 major exams, 3 quizzes, 2 assignments. Given the grading system below, determine the grade of the student...