网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
If b = 4 and c = 7, what is the value of 3b- 5c?
A

-27

B

-23

C

3

D

6

E

20


参考答案

参考解析
解析:
根据题干b=4,c=7,可知3b-5c= 3(4)-5(7) = 12-35 =-23
更多 “单选题If b = 4 and c = 7, what is the value of 3b- 5c?A -27B -23C 3D 6E 20” 相关考题
考题 What is the decimal value of the binary value 10010?A.16B.17C.18D.19

考题 What is the decimal value of the following 32-bit two's complement number?1111 1111 1111 1111 1111 1111 1100A.-8B.-4C.4D.8

考题 听力原文:W: What's the value of US dollars now?M: It's inflated and is losing value against Euro and RMB, while RMB is depreciated against Euro.Q: What does the man think of the US dollars?(14)A.The Euro's value remains unchanged.B.The value of US dollars has changed a lot.C.The American currency is losing value.D.The RMB is increasing in value.

考题 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 =

考题 What is the decimal value of the following 8-bit two's complement number? 1111 1001A.-7B.-3C.3D.7

考题 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

考题 5,7,4,6,4,6,()。A、4B、5C、6D、7

考题 You report to the IT department in your company that your computer has a connectivity problem. The department requests that you configure your system with the following value:  2001::f85c:494e:7:4bd4  You need to configure your computer accordingly.  What should you do?()A、Use the given value as an IPv6 address.B、Use the given value as a DNS suffix search item.C、Use the given value as a WEP key for a wireless network.D、Use the given value as a manually assigned MAC address.

考题 单选题For what value of p is (x-2)(x+2) = x(x -p)?A -4B 0C 2/xD 4/xE -x/4

考题 单选题If a2-b2 = 12, and (a-b)= 4, then what is the value of ab?A -7/4B -1/2C 0D 3/2E 17/4

考题 问答题What is the value of x-y?  (1) (x-y)2=25  (2) 4x=4 (y+3)

考题 单选题If b = 4 and c = 7, what is the value of 3b- 5c?A -27B -23C 3D 6E 20

考题 单选题If a/b = 6/7 and a/c = 2/5, what is the value of 3b + c in terms of a?A 12aB 9aC 8aD 6aE 4a

考题 单选题If 5a+3b = 35 and a/b = 2/5, what is the value of a?A 14/5B 7/2C 5D 7E 9

考题 单选题If the average (arithmetic mean) of a, b, 4, and 10 is 8, what is the value of a + b?A 4B 6C 9D 15E 18

考题 单选题If x is an integer and y=7x+11, what is the greatest value of x for which Y is less than 50?A 7B 6C 5D 4E 3

考题 问答题If 4 percent of (p + q) is 8 and p is a positive integer, what is the greatest possible value of q ?

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

考题 单选题For what value of a is a Φ 4 = 24?A 3B 4C 6D 25/4E 8

考题 单选题If 5/x+4/5=1, what is the value of x?A -25/4B -4C -5/4D -1/5E 25

考题 单选题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.

考题 单选题You report to the IT department in your company that your computer has a connectivity problem. The department requests that you configure your system with the following value:  2001::f85c:494e:7:4bd4  You need to configure your computer accordingly.  What should you do?()A Use the given value as an IPv6 address.B Use the given value as a DNS suffix search item.C Use the given value as a WEP key for a wireless network.D Use the given value as a manually assigned MAC address.

考题 单选题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

考题 单选题What is the default value of the SPT threshold in Cisco routers?()A 0B 1C 2D 4E 16F infinity

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

考题 填空题The ratio of a to b is the same as the ratio of 1.4 to 7. If a=14, what is the value of b?____

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