网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
What is the smallest integer value of x that satisfies the inequality 4-3x < 11?
A
-3
B
-2
C
-1
D
0
E
1
参考答案
参考解析
解析:
Solution 1: If 4-3x < 11, then -3x < 7, so x > -7/3. Since -7/3 is between -2 and -3, the smallest integer value of x that satisfies this inequality is -2. Solution 2: Plug each of the answer choices for x, starting with A., into 4-3x < 11 until you find one that makes the inequality a true statement. Choice A. gives 4-3(-3) < 11, 13 < 11 which is not a true statement. Choice B. gives 4-3(-2) < 11, 10 < 11 which is true, so there is no need to continue.
Solution 1: If 4-3x < 11, then -3x < 7, so x > -7/3. Since -7/3 is between -2 and -3, the smallest integer value of x that satisfies this inequality is -2. Solution 2: Plug each of the answer choices for x, starting with A., into 4-3x < 11 until you find one that makes the inequality a true statement. Choice A. gives 4-3(-3) < 11, 13 < 11 which is not a true statement. Choice B. gives 4-3(-2) < 11, 10 < 11 which is true, so there is no need to continue.
更多 “单选题What is the smallest integer value of x that satisfies the inequality 4-3x 11?A -3B -2C -1D 0E 1” 相关考题
考题
单击一次窗体之后,下列程序代码的执行结果为______。 Private Sub Command1_ Click() Dim a As Integer, b As Integer, c As Integer a = 1: b = 2: c = 4 Print Value(a, b,C)End Sub Function Num(x As Integer, y As Integer, z As Integer) Num = x * x + y * y + z * z End Function Function Value(x As Integer, y As Integer, z As Integer) Value = Num(x, y, z) + 2 * x End FunctionA.21B.23C.19D.35
考题
单击按钮时,以下程序运行后的输出结果是 Private Sub Commandl_Click( ) Dim X As Integer,y As Integer,z As Integer x=1:y=2: Z=3 Call God(x,x,z) Print x;x;z Call God(x,y,y) Print X;y;y End Sub Private Sub God(x As Integer,y As Integer,z As Integer) x=3 * Z + 1 y=2 * Z z=x + y End SubA.6 6 12 7 11 11B.8 5 10 5 11 11C.9 6 12 9 10 15D.8 10 10 5 9 10
考题
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
考题
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
考题
1. public class Boxer1 { 2. Integer i; 3. int x; 4. public Boxer1(int y) { 5. x=i+y; 6. System.out.println(x); 7. } 8. public static void main(String[] args) { 9. new Boxer1(new Integer(4)); 10. } 11. } What is the result?() A、 The value “4” is printed at the command line.B、 Compilation fails because of an error in line 5.C、 Compilation fails because of an error in line 9.D、 A NullPointerException occurs at runtime.E、 A NumberFormatException occurs at runtime.F、 An IllegalStateException occurs at runtime.
考题
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
考题
问答题If 4 percent of (p + q) is 8 and p is a positive integer, what is the greatest possible value of q ?
考题
单选题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
考题
单选题What is the smallest integer value of x that satisfies the inequality 4-3x 11?A
-3B
-2C
-1D
0E
1
考题
填空题The members of set O are the integer solutions of the inequality 3x-4 ≤11, and the members of set P are the integer solutions of the inequality-4x+5-7. What is one member of the intersection of O and P ?____
考题
单选题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
考题
单选题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
考题
单选题1. public class Boxer1 { 2. Integer i; 3. int x; 4. public Boxer1(int y) { 5. x=i+y; 6. System.out.println(x); 7. } 8. public static void main(String[] args) { 9. new Boxer1(new Integer(4)); 10. } 11. } What is the result?()A
The value “4” is printed at the command line.B
Compilation fails because of an error in line 5.C
Compilation fails because of an error in line 9.D
A NullPointerException occurs at runtime.E
A NumberFormatException occurs at runtime.F
An IllegalStateException occurs at runtime.
考题
填空题If t is a positive integer, and 18t is the cube of an integer, then what is the least possible value of t ?____
考题
单选题If 3x+y = c and x+y = b, what is the value of x in terms of c and b?A
(c-b)/3B
(c-b)/2C
(b -c)/3D
(b-c)/2E
(c-b)/4
考题
填空题Let f(x) be defined as the absolute value of the difference between the smallest and largest odd factors of x greater than 1. For example, f(42)=︱3-21︱=18. What is the value of f(90)?____
热门标签
最新试卷