单选题If 5a+3b = 35 and a/b = 2/5, what is the value of a?A14/5B7/2C5D7E9

单选题
If 5a+3b = 35 and a/b = 2/5, what is the value of a?
A

14/5

B

7/2

C

5

D

7

E

9


参考解析

解析:
In the equation a/b = 2/5, cross-multiplying gives 5a = 2b. Since 5a+3b = 35 and 5a = 2b, then 2b+3b = 35, b=7. Since 5a = 2b = 2(7) = 14, a = 14/5

相关考题:

Evaluate this SQL statement:SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales amount * (.35 * e.bonus)) AS CALC_VALUEFROM employees e, sales sWHERE e.employee_id = s.emp_id;What will happen if you remove all the parentheses from the calculation? ()A. The value displayed in the CALC_VALUE column will be lower.B. The value displayed in the CALC_VALUE column will be higher.C. There will be no difference in the value displayed in the CALC_VALUE column.D. An error will be reported.

Q4 :int iVal1 = 0, iVal2 = 0;int * ipVal;ipVal = iVal1; What is the Value of ipVal = *ipVal =ipVal = (int*)iVal1; What is the Value of ipVal = *ipVal =iVal2 = (int)iVal1; What is the Value of ipVal = *ipVal =

public class SwitchTest {  public static void main(String[] args) {  System.out.println(“value = “ + switchIt(4));  }  public static int switchIt(int x) {  int j = 1;  switch (x) {  case 1: j++; case 2: j++;  case 3: j++;  case 4: j++;  case 5: j++;  default: j++;  }  return j + x; }  }  What is the result?()  A、 value = 3B、 value = 4C、 value = 5D、 value = 6E、 value = 7F、 value = 8

By default, what does a Juniper Networks router set the BGP origin code to when originating theroute?()A、IGP (Value 0)B、EGP (Value 1)C、Incomplete (Value 2)D、It depends on the route's source.

What is the default value of the IS-IS lsp-refresh-interval command?()A、60 secondsB、5 minutesC、15 minutesD、30 minutes

You executed the following code:   BEGIN   DBMS_SCHEDULER.SET_ATTRIBUTE  (  NAME = ’JOB_A’,   ATTRIBUTE = ’JOB_PRIORITY’,   VALUE = 7);   END;  /   After analyzing the above code, what conclusion will you draw?()  A、 The code will be executed successfully.B、 The code will not be executed successfully because the value of the VALUE parameter must be 1, 2, or 3.C、 The code will not be executed successfully because the value of the VALUE parameter must range between 1 and 5.D、 The code will not be executed successfully because no SET_ATTRIBUTE procedure exists in the DBMS_SCHDULER package.

单选题If x-y = 3 and x+y = 5, what is the value of y?A-4B-2C-1D1E2

单选题In triangle ABC, what is the value of y?A35°B50°C65°D75°E70°

单选题If a/b = 6/7 and a/c = 2/5, what is the value of 3b + c in terms of a?A12aB9aC8aD6aE4a

问答题If 5a=9b=15c, what is the value of a+b+c?  (1) 3c-a=5c-3b  (2) 6cb=10a

单选题If 2x-3y = 11 and 3x+15 = 0, what is the value of y?A-7B-5C1/3D3E10

填空题What is the value of 2×4-3 ?____

单选题Evaluate this SQL statement: SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales_amount * (.35 * e.bonus)) AS CALC_VALUE FROM employees e, sales s WHERE e.employee_id = s.emp_id; What will happen if you remove all the parentheses from the calculation?()AThe value displayed in the CALC_VALUE column will be lower.BThe value displayed in the CALC_VALUE column will be higher.CThere will be no difference in the value displayed in the CALC_VALUE column.DAn error will be reported.

单选题1. public class SimpleCalc {  2. public int value;  3. public void calculate() { value += 7; }  4. } And:  1. public class MultiCalc extends SimpleCalc {  2. public void calculate() { value -= 3; }  3. public void calculate(int multiplier) {  4. calculate();  5. super.calculate();  6. value *=multiplier;  7. }  8. public static void main(String[] args) {  9. MultiCalc calculator = new MultiCalc();  10. calculator.calculate(2);  11. System.out.println(”Value is: “+ calculator.value);  12. }  13. }  What is the result?()A Value is: 8B Compilation fails.C Value is: 12D Value is: -12E The code runs with no output.F An exception is thrown at runtime.

单选题If x-9 = 2y and x+3 = 5y, what is the value of x?A-2B4C11D15E17

填空题If a is 2/5 of b, b is 1/10 of c, and c 0, then what is the value of a/c?____

问答题If C=5r/(2s) and s≠0, what is the value of C?  (1) r=4s  (2) r=2/5

单选题With the DSCP value fo "101110", what does the "11" in bits 1 and 2 indicate ?()AAF ClassBDrop ProbabilityCCS(Class Selector Value )DPHB (Per-Hop Behavior )EIP PrecedenceFQueue Depth

单选题public class SwitchTest {   public static void main (String args) {   System.out.PrintIn(“value =” +switchIt(4));   }   public static int switchIt(int x) {   int j = 1;   switch (x) {   case 1: j++;   case 2: j++;   case 3: j++;  case 4: j++;   case 5: j++;   default:j++;   }   return j + x;   }   }   What is the output from line 3? ()A Value = 3B Value = 4C Value = 5D Value = 6E Value = 7F Value = 8

单选题1. public class SwitchTest {  2. public static void main (String []args)  {  3. System.out.PrintIn(“value =” +switchIt(4));  4. }  5. public static int switchIt(int x)  {  6. int j = 1;  7. switch (x) {  8. case 1: j++;  9. case 2: j++;  10. case 3: j++;  11. case 4: j++;  12. case 5: j++;  13. default:j++;  14. }  15. return j + x;  16. }  17. }     What is the output from line 3?()A Value = 3B Value = 4C Value = 5D Value = 6E Value = 7F Value = 8

单选题Evaluate this SQL statement: SELECT e.employee_id, (.15* e.salary) + (.5 * e.commission_pct) + (s.sales amount * (.35 * e.bonus)) AS CALC_VALUE FROM employees e, sales s WHERE e.employee_id = s.emp_id; What will happen if you remove all the parentheses from the calculation? ()AThe value displayed in the CALC_VALUE column will be lower.BThe value displayed in the CALC_VALUE column will be higher.CThere will be no difference in the value displayed in the CALC_VALUE column.DAn error will be reported.

填空题If 10a+4b=32 and 9a+2b=24, what is the value of a+2b?____

单选题By default, what does a Juniper Networks router set the BGP origin code to when originating theroute?()AIGP (Value 0)BEGP (Value 1)CIncomplete (Value 2)DIt depends on the route's source.

填空题If 6w is an integer and 21/2 5w 31/2, what is the value of w?____

问答题What is the value of y?  (1) y2+8y+16=0  (2) y0

填空题k is an integer between 50 and 90 and is a multiple of 4. When k is divided by 5, the remainder is 3. When k is divided by 3, the remainder is 2. What is the value of k?____

填空题If((6-3)r+4)/2= 13, what is the value of r?____