The sum of three numbers is 20. The second number is 4
times the first number , and the sum of the first and third
is8. Find the numbers.

Answer Posted / vinod

x,y,z
1: x+y+z=20
2: y=4x
3: x+z=8

so:
x+4x+8-x=20
4x=12 so x=3
y=4*3 so y=12
z=8-x so z=5

Is This Answer Correct ?    8 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to print sum of the numbers starting from 1 to 100?

446


Write a python program to check common letters in two input strings?

485


Given a N by N matrix of both negative and positive integers. Write an efficient algorithm to find the sub-matrix with the largest sum of all the contained elements.

1291


Write a python program to count the number of vowels in a string?

503


Write a python program to check if a string is a palindrome or not?

500






Given a circular list of integers (when you reach the end of the list you come back to the beginning), what is the most efficient algorithm to find the smallest integer in the list? For example: circular_list = [22, 52, 66, 82, 5, 8, 12, 19].

1380


Can you write a program to find the average of numbers in a list in python?

472


Write a program to find sum of the digits of a number in python?

492


Write a program to reverse a number in python?

463


What is the output when we execute list(“hello”)?

626


Write a python program to check if a number is an armstrong number?

467


Write a function that takes as input a binary tree, and prints out each level of the tree on a newline. For example: a / b c / / d e f will output: a b c d e f

1325


Write a python program to count the number of digits in a number?

501


What is the output, suppose list1 is [1, 3, 2], what is list1 * 2 ?

946


Write a python program to swap the first and last value of a list?

512