单选题He does nothing that violates the interests of the collective.Aruns forBruns againstCruns overDruns into

单选题
He does nothing that violates the interests of the collective.
A

runs for

B

runs against

C

runs over

D

runs into


参考解析

解析:
句意:他没做任何违背集体利益的事。violate“违反,违背”与动词短语run against“违反”同义。run for竞赛,竞选。run over跑过去;浏览;(车等)碾过。run into不期而遇。

相关考题:

Is it Dave Williams ________ runs a website ________ he encourages people to protect the environment? A、who;thatB、that;whichC、who;whereD、that;as

The workers were resting with the machine ________.A、runB、runningC、to runD、runs

The young lady( )nothing but fashions on which she spends a lot.A.cares forB.applies forC. sends forD.runs for

The young lady__nothing but fashions on which she spends a lot.A.cares forB.applies forC.sends forD.runs for

My daughter runs faster than__in herclass.She runs the fastest.A.a boyB.any boyC.some boysD.most boys

某种轮胎的广告语He laughs best who runs longest是套用了英语谚语He laughs best who laughs last。

public class foo {   public static void main (stringargs)   try {return;}   finally {system.out.printIn(“Finally”);}   }     What is the result?()  A、 The program runs and prints nothing.B、 The program runs and prints “Finally”C、 The code compiles, but an exception is thrown at runtime.D、 The code will not compile because the catch block is missing.

public class foo {  public static void main (string[]args)  try {return;}  finally {system.out.printIn(“Finally”);}  }  What is the result?()A、 The program runs and prints nothing.B、 The program runs and prints “Finally”C、 The code compiles, but an exception is thrown at runtime.D、 The code will not compile because the catch block is missing.

public class ForBar {   public static void main(String args) {   int i = 0, j = 5;   tp: for (;;) {   i ++;   for(;;)   if(i  --j) break tp;   }   system.out.printIn(“i = ” + i + “, j = “+ j);   }   }   What is the result? () A、 The program runs and prints “i=1, j=0”B、 The program runs and prints “i=1, j=4”C、 The program runs and prints “i=3, j=4”D、 The program runs and prints “i=3, j=0”E、 An error at line 4 causes compilation to fail.F、 An error at line 7 causes compilation to fail.

public class X {   public static void main (Stringargs) {   String s1 = new String (“true”);   Boolean b1 = new Boolean (true);   if (s2.equals(b1)) {   System.out.printIn(“Equal”);   }   }   }   What is the result? () A、 The program runs and prints nothing.B、 The program runs and prints “Equal”C、 An error at line 5 causes compilation to fail.D、 The program runs but aborts with an exception.

public class X {   public static void main (String[]args)   {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s)  {   s += “world!”;      }   }      What is the result?()    A、 The program runs and prints “Hello”B、 An error causes compilation to fail.C、 The program runs and prints “Hello world!”D、 The program runs but aborts with an exception.

Given  1.  public class Foo {  2.  public static void main (String [] args) }  3.  try { return;}  4.  finally { Syste.out.printIn (“Finally”);}  5. }  6. }   What is the result( )?A、 The program runs and prints nothing.B、 The program runs and prints “Finally”.C、 The code comiles. But an exception is thrown at runtime.D、 The code will not compile because the catch block is missing.

The file “file.txt” exists on the file system and contsins ASCII text.  Given:   try {   File f = new File(“file.txt”);    OutputStream out = new FileOutputStream(f, true);   }    catch (IOException) {}   What is the result?()A、 The code does not compile.B、 The code runs and no change is made to the file.C、 The code runs and sets the length of the file to 0.D、 An exception is thrown because the file is not closed.E、 The code runs and deletes the file from the file system.

You have a server that runs Windows Server 2003 Service Pack 2 (SP2). You need to ensure that a defragmentation of the server’s hard disk drive runs each night. What should you do? ()A、Create a scheduled task that runs Dfrg.msc.B、Create a scheduled task that runs Defrag.exe.C、From Computer Management, run Disk Management.D、From Computer Management, run Disk Defragmenter.

单选题public class ForBar {   public static void main(String args) {   int i = 0, j = 5;   tp: for (;;) {   i ++;   for(;;)   if(i  --j) break tp;   }   system.out.printIn(“i = ” + i + “, j = “+ j);   }   }   What is the result? ()A The program runs and prints “i=1, j=0”B The program runs and prints “i=1, j=4”C The program runs and prints “i=3, j=4”D The program runs and prints “i=3, j=0”E An error at line 4 causes compilation to fail.F An error at line 7 causes compilation to fail.

单选题public class X {   public static void main (Stringargs) {   String s1 = new String (“true”);   Boolean b1 = new Boolean (true);   if (s2.equals(b1)) {   System.out.printIn(“Equal”);   }   }   }   What is the result? ()A The program runs and prints nothing.B The program runs and prints “Equal”C An error at line 5 causes compilation to fail.D The program runs but aborts with an exception.

单选题public class X {  public static void main (String[]args)  {  String s1 = new String (“true”);  Boolean b1 = new Boolean (true);  if (s2.equals(b1))   {  System.out.printIn(“Equal”);  }  }  }      What is the result?()A The program runs and prints nothing.B The program runs and prints “Equal”C An error at line 5 causes compilation to fail.D The program runs but aborts with an exception.

单选题You have a server that runs Windows Server 2003 Service Pack 2 (SP2).You need to ensure that a defragmentation of the server’s hard disk drive runs each night.What should you do? ()ACreate a scheduled task that runs Dfrg.msc.BCreate a scheduled task that runs Defrag.exe.CFrom Computer Management, run Disk Management.DFrom Computer Management, run Disk Defragmenter.

单选题You are responsible for implementing maintenance jobs on a SQL Server 2005 database server. Certain jobs run every Sunday and other jobs run at the beginning of every month. You need to schedule the jobs in the way that uses the least amount of administrative effort. What should you do?()ACreate a job schedule that runs every Sunday.Assign weekly tasks to this schedule.Create a second schedule that runs on the first day of every month. Assign monthly tasks to this schedule.BCreate a job for each task that runs once a day. Use a Transact-SQL statement to check the date and day of the week. If the day is either a Sunday or the first day of the month, execute the code.CCreate a job schedule that runs once a day. Assign jobs to this job schedule. If the day is either a Sunday or the first day of the month, execute the jobs.DCreate a job for each task that runs once a week on Sunday. Add a second job schedule that runs the job on the first of the month

单选题public class X {   public static void main (String[]args)   {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s)  {   s += “world!”;      }   }      What is the result?()A The program runs and prints “Hello”B An error causes compilation to fail.C The program runs and prints “Hello world!”D The program runs but aborts with an exception.

单选题What is the result?()A  The program runs and prints nothing.B  The program runs and prints “Equal”.C  An error at line 5 cause compilation to fail.D  The program runs but aborts with an exception.

问答题John runs faster than Bob but slower than Tom. Bill usually runs faster than Bob, sometimes runs faster than John, but never faster than Tom. Who is the fastest runner?

单选题New measures are introduced to ensure that the business runs_______.AsmoothlyBroughlyCfrequentlyDirregularly

单选题public class foo {  public static void main (string[]args)  try {return;}  finally {system.out.printIn(“Finally”);}  }  What is the result?()A The program runs and prints nothing.B The program runs and prints “Finally”C The code compiles, but an exception is thrown at runtime.D The code will not compile because the catch block is missing.

单选题The file “file.txt” exists on the file system and contsins ASCII text.  Given:   try {   File f = new File(“file.txt”);    OutputStream out = new FileOutputStream(f, true);   }    catch (IOException) {}   What is the result?()A The code does not compile.B The code runs and no change is made to the file.C The code runs and sets the length of the file to 0.D An exception is thrown because the file is not closed.E The code runs and deletes the file from the file system.

单选题Given  1.  public class Foo {  2.  public static void main (String [] args) }  3.  try { return;}  4.  finally { Syste.out.printIn (“Finally”);}  5. }  6. }   What is the result( )?A The program runs and prints nothing.B The program runs and prints “Finally”.C The code comiles. But an exception is thrown at runtime.D The code will not compile because the catch block is missing.

单选题What is the result()?A  The program runs and prints “ I = 1 , j = 0”B  The program runs and prints “ I = 1 , j = 4”C  The program runs and prints “ I = 3 , j = 4”D  The program runs and prints “ I = 3 , j = 0”E  An error at line 4 cause compilation to fail.F  An error at line 7 cause compilation to fail.