单选题A test in industrial psychology is used to find out _____.Aa worker's achievementsBa worker's potential for a certain jobCa worker's psychological problemDa worker's motivation for a certain job
单选题
A test in industrial psychology is used to find out _____.
A
a worker's achievements
B
a worker's potential for a certain job
C
a worker's psychological problem
D
a worker's motivation for a certain job
参考解析
解析:
相关考题:
He ________to a committee to find out whether the South Branch of the James River was deep enough to be used by large boats. A. appointedB. assignedC. pointedD. was appointed
阅读下列代码 public class Test 2005{ public static void main(String args[]){ Strings="Test"; switch(s){ case "Java":System.out.print("Java"); break; case "Language":System.out.print("Language"); break; case "Test":System.out.ptint("Test"); break; } } } 其运行结果是A.JavaB.LanguageC.TestD.编译出错
( 19 )阅读下列代码public class Test2005{public static void main(String args[]){String s= ″ Test ″ ;Switch(s){case ″ Java ″ : System.out.print( ″ Java ″ ) ;break ;case ″ Language ″ : System.out.print( ″ Language ″ ) ;break ;case ″ Test ″ : System.out.print( ″ Test ″ ) ;break ;}}}其运行结果是A ) JavaB ) LanguageC ) TestD )编译出错
如下的代码段中,如果方法unsafe()正常运行,那么结果是( )。 public void example() { try { unsafe(); System.out.println("Testl"); }catch(SafeException e) { System.out.println("Test 2"); }finally{ System.out.println("Test 3'); } System.out.println("Test 4"); }A.Test 3 Test 4B.Test1 Test3 Test4C.Test1 Test3D.Test1 Test4
Which of the following would be used to test out the security of a specific network by allowing it toreceive security attacks?() A. HoneynetB. HoneypotC. Vulnerability scannerD. Network based IDS
下列程序的输出结果是 class Demo { void test( ) { Systeme.out.pnnt("NO");} void test(int i) { System.out.print(a);} void test(int a,int b) { System.out.print(a+b);} } class Test { public static void main(String args[ ] ) { Demo de=new Demo( ); de.test( ); de.test(5); de.test(6,8); } }A.No 5 6 8B.5 6 8 NoC.No 5 14D.8 6 No 5
下列程序的输出结果是 ( ) class Derao { void test() { Systeme.out.print("NO");} void test (int i) {System.out.print(a);} void test(int a,int b) {System.out.print(a+b);} } class Test { public static void main(String args[]) { Demo de=new Demo(); de.test(); de.test5.; de.test(6,8); } }A.No568B.568NoC.No514D.86No5
It ______ 12 rabbits to test a sample of vaccine, now it takes only 6.A. used to takingB. used to takeC. is used to takeD. was used to
Diagnostic test is often used for the purpose of__________.A.finding out what students know and don' t knowB.measuring students' general language proficiencyC.knowing whether students have the right language aptitudeD.checking whether students have achieved the teaching objectives
After teaching sounds, a teacher makes a test that aims to find out which sounds students are not able to pronounce. This test belongs to__________.A. aptitude testB. proficiency testC. achievement testD. diagnostic test
Diagnostic test is often used for the purpose ofA.finding out what students know and don' t knowB.measuring students' general language proficiencyC.knowing whether students have the right language aptitudeD.checking whether students have achieved the teaching objectives
static void test() throws RuntimeException { try { System.out.print(”test “); throw new RuntimeException(); } catch (Exception ex) { System.out.print(”exception “); } } public static void main(String[] args) { try { test(); } catch (RuntimeException ex) { System.out.print(”runtime “); } System.out.print(”end “); } What is the result?() A、 test endB、 Compilation fails.C、 test runtime endD、 test exception endE、 A Throwable is thrown by main at runtime.
在linux系统中,查找/home/目录下文件名以test开头的文件,以下正确的命令是()。A、find /home -name test*B、find -name test* /homeC、find test* /homeD、find -n test* /home
Which of the following would be used to test out the security of a specific network by allowing it toreceive security attacks?()A、HoneynetB、HoneypotC、Vulnerability scannerD、Network based IDS
Which three tasks can be performed using regular expression support in Oracle Database 10g?()A、 it can be used to concatenate two strings.B、 it can be used to find out the total length of the string.C、 it can be used for string manipulation and searching operations.D、 it can be used to format the output for a column or expression having string data.E、 it can be used to find and replace operations for a column or expression having string data.
You work as the enterprise exchange administrator at Xxx .The Xxx network is running in a Microsoft Exchange Server 2010 environment.How can you find out about the mailboxes that exceeds 2 GB in size?()A、You must use the Get-MailboxStatistics cmdlet.B、You must use the Test-Mailflow cmdlet.C、You must use the Get-StoreUsageStatistics.D、You must use the Test-ServiceHealth cmdlet.
单选题After teaching sounds, a teacher makes a test that aims to find out which sounds students are and are not able to pronounce. This test belongs to _____.Aaptitude testBproficiency testCachievement testDdiagnostic test
单选题You are installing Windows 2000 Professional on 100 MPS compliant computers. You have created an image of this computer and copied the image to two test computers, which have two processors installed on them. When you run the test computers, you find out that the second processor on both the computers is not being used. What should you do to enable the second processor?()AOn your original machine use Device Manager/Computer/Properties/Drivers/Update Driver to install the correct multiprocessor HAL. BOn the original computer, through the Add New Hardware, select the processor from the device list and install the required processor. CDownload the patch from the motherboard manufacturer to allow the configuration of dual processors. DReinstall Windows 2000 Professional on both the test computers.
单选题Diagnostic test is often used for the purpose ofAfinding out what students know and don' t knowBmeasuring students' general language proficiencyCknowing whether students have the right language aptitudeDchecking whether students have achieved the teaching objectives
多选题Which three tasks can be performed using regular expression support in Oracle Database 10g?()Ait can be used to concatenate two strings.Bit can be used to find out the total length of the string.Cit can be used for string manipulation and searching operations.Dit can be used to format the output for a column or expression having string data.Eit can be used to find and replace operations for a column or expression having string data.
单选题static void test() throws RuntimeException { try { System.out.print(”test “); throw new RuntimeException(); } catch (Exception ex) { System.out.print(”exception “); } } public static void main(String[] args) { try { test(); } catch (RuntimeException ex) { System.out.print(”runtime “); } System.out.print(”end “); } What is the result?()A test endB Compilation fails.C test runtime endD test exception endE A Throwable is thrown by main at runtime.
单选题The most urgent thing is to find a dump for those toxic industrial wastes.AimminentBrecyclableCsmellyDpoisonous
单选题After teaching sounds, a teacher makes a test that aims to find out which sounds students are not able to pronounce. This test belongs to_________Aaptitude testBproficiency testCachievement testDdiagnostic test
单选题static void test() throws Error { if (true) throw new AssertionError(); System.out.print(”test “); } public static void main(String[] args) { try { test(); } catch (Exception ex) { System.out.print(”exception “); } System.out.print(”elld “); } What is the result?()A endB Compilation fails.C exception endD exception test endE A Throwable is thrown by main.F An Exception is thrown by main.
问答题In order to sort out unable student and merely lazy student in France, Alfred Binet established a test in 1905, (1)____ is still used today. Then in 1912, Wilhelm Stern made some improvement to the test. And, in 1916, Lewis M. Terman (2) rev____the Binet’s test into Stanford— Binet Test, which is still given (3)____ (extensive). After that, a sub field of psychology called psychometrics which studies psychology and metrics as a whole. When the US was (4) e____ the First World War, psychometrics was first major used to sort (5)____ officials and soldiers. Although the result was not (6)____(satisfy), the psychological testing proliferated. In Europe, Sir Cyril Burt developed a test sorted children out (7) w____they are 11 years old. The top 15 or 20 percent can be sent to grammar school and have a good future. But the left would lose confidence and the (8) m____to study naturally plummeted. The system brought so much negative results so that it was reformed in 1974. Finally, the idea of Burt was found to fabricate a lot of data. Measurement is still now used in many (9) f____. But whether it can measure the exact intelligence at all is still (10) con____.
单选题From the first sentence of the passage, we learn that the primary objective of industrial psychology is to study _____.Aworking efficiency that leads to the highest outputBthe working skills and the working environmentCthe techniques leading to the highest productivityDthe use of workers to get the greatest profit
单选题By taking this test, a student is supposed to find out ______Ahow to solve teenage problemsBhow to make good friendsCwhat his lifestyle is likeDwhat kind of person he is