in the following, A D
B G E
C F
Each of the seven digits from 0,1,2,3,4,5,6,7,8,9 is:
a)Represented by a different letter in abov fig:
b)Positioned in the fig abov so tht A*B*C,B*G*E,D*E*F are
equal. wch does g represents?

C

Answer Posted / truong nguyen

1. A*B*C=B*G*E=D*E*F => B*G=D*F and A*C=G*E (1.a).
2. From numbers in 0,..9, we found these equalities:
9*2 = 6*3
8*3 = 6*4
8*1 = 4*2
6*2 = 4*3
3. In these equalities, only (9*2 = 6*3 and 8*1 = 4*2)
satisfies (1.a) that only one number (number 2) exists on
both two equalities.
4. G = 2.

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is oop useful?

605


What is polymorphism explain its types?

690


Question: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date.

635


What is protected in oop?

606


to find out the minimum of two integer number of two different classes using friend function

1645






What are the 3 principles of oop?

624


What is difference between abstraction and encapsulation?

595


write a C++ program for booking using constructor and destructor.

2055


What is class and object with example?

593


What are two types of polymorphism?

616


What causes polymorphism?

577


What is overloading in oops?

601


What are different oops concepts?

580


What does oop mean in snapchat?

689


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

2580