搜索
您的当前位置:首页大数据基础技能试题及答案

大数据基础技能试题及答案

时间:2021-12-19 来源:乌哈旅游


Java基础

1. Which of the following will compile correctly?

A) float f=10f; B) float f=10.1; C) float f=10.1f; D) byte b=10b;

2. Which declarations of identifiers are legal A. $persons B. TwoUsers C. *point D. this E. _endline

3. Which statement of assigning a long type variable to a hexadecimal value is correct A. long number = 345L; B. long number = 0345; C. long number = 0345L; D. long number = 0x345L

4. Which of the following fragments might cause errors A. String s = \"Gone with the wind\"; String t = \" good \"; String k = s + t;

B. String s = \"Gone with the wind\"; String t;

t = s[3] + \"one\";

C. String s = \"Gone with the wind\"; String standard = s.toUpperCase();

D. String s = \"home directory\"; String t = s - \"directory\";

5. Which are syntactically valid statement at// point x class Person { private int a;

public int change(int m){ return m; } }

public class Teacher extends Person { public int b;

public static void main(String arg[]){ Person p = new Person(); Teacher t = new Teacher(); int i; // point x } }

A. i = m; B. i = b; C. i = p.a;

D. i = p.change(30); E. i = t.b.

6. Which layout manager is used when the frame is resized the buttons's position in the Frame might be changed A. BorderLayout B. FlowLayout C. CardLayout D. GridLayout

7. Given the following code fragment: 1) public void create() { 2} Vector myVect;

3} myVect = new Vector(); 4} }

Which of the following statements are true

A. The declaration on line 2 does not allocate memory space for the variable myVect. B. The declaration on line 2 allocates memory space for a reference to a Vector object. C. The statement on line 2 creates an object of class Vector. D. The statement on line 3 creates an object of class Vector.

E. The statement on line 3 allocates memory space for an object of class Vector

8. Which of the following answer is correct to express the value 8 in octal number A. 010 B. 0x10 C. 08 D. 0x8

9. Which are not Java keywords A. TRUE B. sizeof C. const

D. super E. void

10. Which of the following statements are true

A. The equals() method determines if reference values refer to the same object.

B. The == operator determines if the contents and type of two separate objects match. C. The equals() method returns true only when the contents of two objects match.

D. The class File overrides equals() to return true if the contents and type of two separate objects match.

11. Which statements about inheritance are true

A. In Java programming language only allows single inheritance.

B. In Java programming language allows a class to implement only one interface.

C. In Java programming language a class cannot extend a class and implement a interface together.

D. In Java programming language single inheritance makes code more reliable. 12.

1) class Person {

2} public void printValue(int i, int j) {/*…*/ } 3} public void printValue(int i){/*...*/ } 4} }

5) public class Teacher extends Person { 6} public void printValue() {/*...*/ } 7} public void printValue(int i) {/*...*/} 8} public static void main(String args[]){ 9} Person t = new Teacher(); 10} t.printValue(10); 11} } 12} }

Which method will the statement on line 10 call A. on line 2 B. on line 3 C. on line 6 D. on line 7

13. Which are not Java primitive types A. short B. Boolean C. unit D. float

14、The method resume() is responsible for resuming which thread's execution A. The thread which is stopped by calling method stop() B. The thread which is stopped by calling method sleep() C. The thread which is stopped by calling method wait()\\ D. The thread which is stopped by calling method suspend()

15. Which of the following range of int is correct A. -2^7 – 2^7-1 B. 0 – 2^32-1 C. -2^15 – 2^15-1 D. -2^31 – 2^31-1

16. Which keyword should be used to enable interaction with the lock of an object The flag allows exclusive access to that object. A. transient B. synchronized C. serialize D. static

17. Which is the return type of the method main() A. int B. void C. boolean D. static

18. Given the following code:

if (x>0) { System.out.println(\"first\"); }

else if (x>-3) { System.out.println(\"second\"); } else { System.out.println(\"third\"); }

Which range of x value would print the string \"second\" A. x > 0 B. x > -3 C. x <= -3

D. x <= 0 & x > -3

19、Which of the following answer is correct to express the value 10 in hexadecimal number A. 0xA B. 0x16 C. 0A D. 016

20. Which statements about the garbage collection are true

A. The program developer must create a thread to be responsible for free the memory.

B. The garbage collection will check for and free memory no longer needed. C. The garbage collection allow the program developer to explicity and immediately free the memory.

D. The garbage collection can free the memory used java object at expect time.

21、Given the following code: 1) public class Test { 2} int m, n;

3} public Test() {}

4} public Test(int a) { m=a; }

5} public static void main(String arg[]) { 6} Test t1,t2; 7} int j,k; 8} j=0; k=0;

9} t1=new Test(); 10} t2=new Test(j,k); 11} } 12} }

Which line would cause one error during compilation A. line 3 B. line 5 C. line 6 D. line 10

22、Given the uncompleted code of a class: class Person {

String name, department; int age;

public Person(String n){ name = n; }

public Person(String n, int a){ name = n; age = a; } public Person(String n, String d, int a) {

// doing the same as two arguments version of constructor // including assignment name=n,age=a department = d; } }

Which expression can be added at the \"doing the same as...\" part of the constructor

A. Person(n,a);

B. this(Person(n,a)); C. this(n,a);

D. this(name,age).

23、Which of the following statements about variables and their scopes are true A. Instance variables are member variables of a class. B. Instance variables are declared with the static keyword.

C. Local variables defined inside a method are created when the method is executed. D. Local variables must be initialized before they are used.

24、public void test() { try { oneMethod();

System.out.println(\"condition 1\");

} catch (ArrayIndexOutOfBoundsException e) { System.out.println(\"condition 2\"); } catch(Exception e) {

System.out.println(\"condition 3\"); } finally {

System.out.println(\"finally\"); } }

Which will display if oneMethod run normally A. condition 1 B. condition 2 C. condition 3 D. finally

25、Given the following code: public class Test {

void printValue(int m){

do { System.out.println(\"The value is\"+m); }

while( --m > 10 ) }

public static void main(String arg[]) { int i=10;

Test t= new Test(); t.printValue(i); } }

Which will be output A. The value is 8 B. The value is 9 C. The value is 10 D. The value is 11

26、Which of the following statements about declaration are true

A. Declaration of primitive types such as boolean, byte and so on does not allocate memory space for the variable.

B. Declaration of primitive types such as boolean, byte and so on allocates memory space for the variable.

C. Declaration of nonprimitive types such as String, Vector and so on does not allocate memory space for the object.

D. Declaration of nonprimitive types such as String, Vector ans so on allocates memory space for the object.

27、In the Java API documentation which sections are included in a class document

A. The description of the class and its purpose B. A list of methods in its super class C. A list of member variable D. The class hierarchy

28、Given the following code: 1) public void modify() { 2) int i, j, k; 3) i = 100;

4) while ( i > 0 ) { 5) j = i * 2;

6) System.out.println (\" The value of j is \" + j ); 7) k = k + 1; 8) i--; 9) } 10} }

Which line might cause an error during compilation A. line 4 B. line 6 C. line 7 D. line 8

29、Which of the following statements about variables and scope are true

A. Local variables defined inside a method are destroyed when the method is exited. B. Local variables are also called automatic variables.

C. Variables defined outside a method are created when the object is constructed.

D. A method parameter variable continues to exist for as long as the object is needed in which the method is defined.

30、A class design requires that a member variable cannot be accessible directly outside the class. Which modifier should be used to obtain the access control A. public

B. no modifier C. protected D. private

31、Given the following code fragment: 1) String str = null;

2) if ((str != null) && (str.length() > 10)) { 3} System.out.println(\"more than 10\"); 4} }

5) else if ((str != null) & (str.length() < 5)) { 6} System.out.println(\"less than 5\"); 7} }

8) else { System.out.println(\"end\"); } Which line will cause error A. line 1 B. line 2 C. line 5 D. line 8

32、Which statements about Java code security are true

A. The bytecode verifier loads all classes needed for the execution of a program. B. Executing code is performed by the runtime interpreter.

C. At runtime the bytecodes are loaded, checked and run in an interpreter.

D. The class loader adds security by separating the namespaces for the classes of the local file system from those imported from network sources.

33、 Given the following code: public class Person{ int arr[] = new int[10];

public static void main(String a[]) { System.out.println(arr[1]); } }

Which statement is correct

A. When compilation some error will occur.

B. It is correct when compilation but will cause error when running. C. The output is zero. D. The output is null.

34、public class Parent {

public int addValue( int a, int b) { int s; s = a+b; return s; } }

class Child extends Parent { }

Which methods can be added into class Child A. int addValue( int a, int b ){// do something...} B. public void addValue (){// do something...} C. public int addValue( int a ){// do something...}

D. public int addValue( int a, int b )throws MyException {//do something...}

35、Which statements about thread are true

A. Once a thread is created, it can star running immediately.

B. To use the start() method makes a thread runnable, but it does not necessarily start immediately.

C. When a thread stops running because of pre-emptive, it is placed at the front end of the runnable queue.

D. A thread may cease to be ready for a variety of reasons.

36、A member variable defined in a class can be accessed only by the classes in the same package. Which modifier should be used to obtain the access control A. private B. no modifier C. public D. protected

37、A public member vairable called MAX_LENGTH which is int type, the value of the variable remains constant value 100. Use a short statement to define the variable. A. public int MAX_LENGTH=100; B. final int MAX_LENGTH=100;

C. final public int MAX_LENGTH=100; D. public final int MAX_LENGTH=100.

38、Which expressions are correct to declare an array of 10 String objects

A. char str[]; B. char str[][]; C. String str[]; D. String str[10];

39、Which fragments are correct in Java source file A. package testpackage;

public class Test{//do something...} B. import java.io.*; package testpackage;

public class Test{// do something...}

C. import java.io.*;

class Person{// do something...} public class Test{// do something...} D. import java.io.*; import java.awt.*;

public class Test{// do something...}

40:

String s= \"hello\"; String t = \"hello\";

char c[] = {'h','e','l','l','o'} ; Which return true A. s.equals(t); B. t.equals(c); C. s==t;

D. t.equals(new String(\"hello\")); E. t==c.

41. Which of the following statements are legal A. long l = 4990; B. int i = 4L; C. float f = 1.1; D. double d = 34.4; E. double t = 0.9F.

42、

public class Parent { int change() {…} }

class Child extends Parent { }

Which methods can be added into class Child A. public int change(){} B. int chang(int i){} C. private int change(){} D. abstract int chang(){}

43、class Parent { String one, two;

public Parent(String a, String b){ one = a; two = b; }

public void print(){ System.out.println(one); } }

public class Child extends Parent { public Child(String a, String b){ super(a,b); }

public void print(){

System.out.println(one + \" to \" + two); }

public static void main(String arg[]){

Parent p = new Parent(\"south\ Parent t = new Child(\"east\ p.print(); t.print(); } }

Which of the following is correct A. Cause error during compilation. B. south east

C. south to north east to west

D. south to north east E. south east to west

44、Given the uncompleted method: 1)

2) { success = connect() 3} if (success==-1) {

4} throw new TimedOutException(); 5} } 6}}

TimedOutException is not a RuntimeException. Which can complete the method of declaration when added at line 1

A. public void method()

B. public void method() throws Exception

C. public void method() throws TimedOutException D. public void method() throw TimedOutException E. public throw TimedOutException void method()

45、Given the following code: 1) class Parent {

2} private String name; 3} public Parent(){} 4} }

5) public class Child extends Parent { 6} private String department; 7} public Child() {}

8} public String getValue(){ return name; } 9) public static void main(String arg[]) { 10} Parent p = new Parent(); 11} } 12) }

Which line will cause error A. line 3 B. line 6 C. line 7 D. line 8 E. line 10

46、The variable \"result\" is boolean. Which expressions are legal A. result = true;

B. if ( result ) { // do something... } C. if ( result!= 0 ) { // so something... } D. result = 1

47、Class Teacher and Student are subclass of class Person. Person p; Teacher t; Student s;

p, t and s are all non-null.

if(t instanceof Person) { s = (Student)t; } What is the result of this sentence A. It will construct a Student object. B. The expression is legal. C. It is illegal at compilation.

D. It is legal at compilation but possible illegal at runtime.

48、Given the following class: public class Sample{ long length;

public Sample(long l){ length = l; } public static void main(String arg[]){ Sample s1, s2, s3; s1 = new Sample(21L); s2 = new Sample(21L); s3 = s2;

long m = 21L; } }

Which expression returns true A. s1 == s2; B. s2 == s3; C. m == s1;

D. s1.equals(m).

49、Which classes can be used as the argument of the constructor of the class FilterInputStream A. FilterOutputStream B. File

C. InputStream

D. RandomAccessFile

50、Which classes can be used as the argument of the constructor of the class FileInputStream A. InputStream B. File

C. FileOutputStream D. String

51、Which is not a method of the class InputStream A. int read(byte[]) B. void flush() C. void close() D. int available()

52、Given the following code: class Person {

String name,department; public void printValue(){

System.out.println(\"name is \"+name);

System.out.println(\"department is \"+department); }

}

public class Teacher extends Person { int salary;

public void printValue(){

// doing the same as in the parent method printValue() // including print the value of name and department. System.out.println(\"salary is \"+salary); } }

Which expression can be added at the \"doing the same as...\" part of the method printValue() A. printValue(); B. this.printValue(); C. person.printValue(); D. super.printValue().

53. Which of the following assignment is not correct A. float f = 11.1;

B. double d = 5.3E12; C. double d = 3.14159; D. double d = 3.14D.

Linux基础

1. Linux文件权限一共10位长度,分成四段,第三段表示的内容是__。 A 文件类型 B 文件所有者的权限

C 文件所有者所在组的权限 D 其他用户的权限

2.在使用mkdir命令创建新的目录时,在其父目录不存在时先创建父目录的选项是__。 A -m B -d C -f D –p

3. 具有很多C语言的功能,又称过滤器的是 __ 。 A csh B tcsh C awk D sed

4. 下列文件中,包含了主机名到IP地址的映射关系的文件是: __ 。 A /etc/HOSTNAME B /etc/hosts C /etc/resolv.conf D /etc/networks

5. 命令可以从文本文件的每一行中截取指定内容的数据。__ A cp B dd C fmt D cut

6.对名为fido的文件用chmod 551 fido 进行了修改,则它的许可权是 __ 。

A -rwxr-xr-x B -rwxr--r-- C -r--r--r-- D -r-xr-x—x

7. 用ls –al 命令列出下面的文件列表, __ 文件是符号连接文件。 A -rw-rw-rw- 2 hel-s users 56 Sep 09 11:05 hello B -rwxrwxrwx 2 hel-s users 56 Sep 09 11:05 goodbey C drwxr--r-- 1 hel users 1024 Sep 10 08:10 zhang D lrwxr--r-- 1 hel users 2024 Sep 12 08:12 cheng

8.在vi编辑器中的命令模式下,键入 __ 可在光标当前所在行下添加一新行。 A ; B ; C ; D A

9.在vi编辑器中的命令模式下,重复上一次对编辑的文本进行的操作,可使用 __ 命令。 A 上箭头 B 下箭头 C <.>; D <*>;

10.用命令ls -al显示出文件ff的描述如下所示,由此可知文件ff的类型为 __ 。 -rwxr-xr-- 1 root root 599 Cec 10 17:12 ff A 普通文件 B 硬链接 C 目录 D 符号链接

11.删除文件命令为:__ 。 A mkdir B rmdir C mv D rm

12.对文件进行归档的命令为__ 。 A dd B cpio C gzip D tar

13.改变文件所有者的命令为 __ 。 A chmod B touch C chown D cat

14.在给定文件中查找与设定条件相符字符串的命令为: __ 。 A grep B gzip C find D sort

15.建立一个新文件可以使用的命令为 __ 。 A chmod B more C cp D touch

16在下列命令中,不能显示文本文件内容的命令是:__ 。 A more B less C tail D join

17.文件权限读、写、执行的三种标志符号依次是 __ 。 A rwx B xrw C rdx D srw

18.在Shell脚本中,用来读取文件内各个域的内容并将其赋值给Shell变量的命令是 __ 。 A fold B join C tr D read

19.crontab文件由六个域组成,每个域之间用空格分割,其排列如下: __ 。 A MIN HOUR DAY MONTH YEAR COMMAND

B MIN HOUR DAY MONTH DAYOFWEEK COMMAND C COMMAND HOUR DAY MONTH DAYOFWEEK D COMMAND YEAR MONTH DAY HOUR MIN

20.用ftp进行文件传输时,有两种模式:__ 。 A Word和binary B .txt和Word Document C ASCII和binary D ASCII和Rich Text Format

21.退出交互模式的shell,应键入 __ 。 A ; B ^q C exit D quit

数据库sql简答题

1. 用一条SQL查询出每门课目的平均值 Table1:

name subject mark 张三 语文 81 张三 数学 75 张三 英语 87 李四 语文 76 李四 数学 90 李四 英语 78 王五 语文 81 王五 数学 100 王五 英语 90

2. 表student1如下:

自动编号 学号 姓名 课程编号 课程名称 分数 1 2005001 张三 0001 数学 69 2 2005002 李四 0001 数学 89 3 2005001 张三 0001 数学 69

用1条SQL删除相同的学生冗余信息(自动编号不同可忽略)

3. 一个叫player的表如下 Name 张三 李四 王五 赵六

请用一条SQL语句显示出所有选手一对一比赛有可能的组合 4.

查成这样一个结果

year m1 m2 m3 m4

1991 1.1 1.2 1.3 1.4 1992 2.1 2.2 2.3 2.4

逻辑简答题

1、 假设有一个池塘,里面有无穷多的水。现有2个空水壶,容积分别为5升和6升。问题

是如何只用这2个水壶从池塘里取得3升的水。

2、 有一个大西瓜,用水果刀平整地切,总共切9刀,最多能切成多少份,最少能切成多少份 ? 3、 1元钱一瓶汽水,喝完后两个空瓶换一瓶汽水,问:你有20元钱,最多可以喝到几瓶汽水? 4、 一个岔路口分别通向诚实国和说谎国。来了两个人,已知一个是诚实国的,另一个是说谎

国的。诚实国永远说实话,说谎国永远说谎话。现在你要去说谎国,但不知道应该走哪条路,需要问这两个人。请问应该怎么问?

5、 有三顶红帽子和两顶白帽子。将其中的三顶帽子分别戴在 A、B、C三人头上。这三人

每人都只能看见其他两人头上的帽子,但看不见自己头上戴的帽子,并且也不知道剩余的两顶帽子的颜色。 问A:”你戴的是什么颜色的帽子?” A回答说:”不知道。” 接着,又以同样的问题问B。B想了想之后,也回答说:”不知道。” 最后问C。C回答说:”我知道我戴的帽子是什么颜色了。” 当然,C是在听了A、B的回答之后而作出回答的。试问:C戴的是什么颜色的帽子?

java基础

1 A,C 11 A,D 2 A,B,E 12 D 3 D 13 B,C 4 B,D 14 D 5 D,E 15 D 6 B 16 B 7 A,D,E 17 B 8 A 18 D 9 A,B 19 A 10 A,D 20 B 21 D 31 C 41 A,D,E 51 B 52 D 22 C 32 B,C,D 42 A,B 53 A 23 A,C,D 33 A 43 E 24 A,D 34 B,C 44 B,C 25 C 35 B,D 45 D 26 A,D 36 B 46 A,B 27 A,C,D 37 D 47 C 28 C 38 C 48 B 29 A,B,C 39 A,C,D 49 C 30 D 40 A,C,D 50 BD Java基础

1 C 11 D 21 C 2 D 12 D 3 C 13 C 4 B 14 A 5 D 15 D 6 D 16 D 7 D 17 A 8 B 18 D 9 C 19 B 10 A 20 C Linux基础

数据库sql答案(答案有多种,仅参考)

1.select subject,sum(mark)/3 as ‘平均值’ from table1 where mark >80 group by subject; 2.delete student1 where 自动编号 not in(select min( 自动编号) from tablename group by 学号, 姓名, 课程编号, 课程名称, 分数)

4.select year,

(select amount from aaa m where month=1 and m.year=aaa.year) as m1, (select amount from aaa m where month=2 and m.year=aaa.year) as m2, (select amount from aaa m where month=3 and m.year=aaa.year) as m3, (select amount from aaa m where month=4 and m.year=aaa.year) as m4 from aaa group by year

逻辑题

1、 由满6向空5倒,剩1升,把这1升倒5里,然后6剩满,倒5里面,由于5里面有1

升水,因此6只能向5倒4升水,然后将6剩余的2升,倒入空的5里面,再灌满6向5里倒3升,剩余3升。

2、 最少10块;最多 2^9块,即512块。 3、 40

4、 我要到你的国家去,请问怎么走?然后走向路人所指方向的相反方向. 5、 白色 6、 7、 8、

《大数据时代》试题

单选题

1、大数据的核心就是(B)【P26】 A、告知与许可 B、预测 C、匿名化 D、规模化

2、大数据不是要教机器像人一样思考。相反,它是(A)【P26】 A、把数学算法运用到海量的数据上来预测事情发生的可能性。 B、被视为人工智能的一部分。 C、被视为一种机器学习。 D、预测与惩罚。

3、采样分析的精确性随着采样随机性的增加而(C),但与样本数量的增加关系不大。【P32】 A、降低 B、不变 C、提高 D、无关

4、大数据是指不用随机分析法这样的捷径,而采用(A)的方法【P35】 A、所有数据 B、绝大部分数据 C、适量数据 D、少量数据

5、大数据的简单算法与小数据的复杂算法相比(A)【P40】 A、更有效 B、相当 C、不具备可比性 D、无效

6、相比依赖于小数据和精确性的时代,大数据因为更强调数据的(D),帮助我们进一步接近事实的真相。【P46】 A、安全性 B、完整性 C、混杂性

D、完整性和混杂性

7、大数据的发展,使信息技术变革的重点从关注技术转向关注(A)【P61】 A、信息 B、数字 C、文字 D、方位

8、大数据时代,我们是要让数据自己“发声”,没必要知道为什么,只需要知道(B)【P48】 A、原因 B、是什么 C、关联物 D、预测的关键

9、建立在相关关系分析法基础上的预测是大数据的(C)【P51】 A、基础 B、前提 C、核心 D、条件

10、(C)下列说法正确的是【P75-77】

A、有价值的数据是附属于企业经营核心业务的一部分数据; B、数据挖掘它的主要价值后就没有必要再进行分析了; C、所有数据都是有价值的;

D、在大数据时代,收集、存储和分析数据非常简单;

11、关于数据创新,下列说法正确的是(D)【P78-85】 A、多个数据集的总和价值等于单个数据集价值相加; B、由于数据的再利用,数据应该永久保存下去; C、相同数据多次用于相同或类似用途,其有效性会降低; D、数据只有开放价值才能得到真正释放。

12、关于数据估值,下列说法错误的是(B)【P113】

A、随着数据价值被重视,公司所持有和使用的数据也渐渐纳入了无形资产的范畴;

B、无论是向公众开放还是将其锁在公司的保险库中,数据都是有价值的;

C、数据的价值可以通过授权的第三方使用来实现

D、目前可以通过数据估值模型来准确的评估数据的价值评估 13、在大数据时代,下列说法正确的是(B)。【P116】 A、收集数据很简单 B、数据是最核心的部分

C、对数据的分析技术和技能是最重要的

D、数据非常重要,一定要很好的保护起来,防止泄露 14、随着数据科学家的崛起,(C)的地位将发生动摇。【P99】 A、国家领导人 B、大型企业

C、行业专家和技术专家 D、职业经理人

15、大数据公司的多样性表明了(B)【P97】 A、数据作用的体现 B、数据价值的转移 C、数据技术的发展 D、数据思维的创新

16、以下哪种说法是错误的(B)【P104-107】

A、将罪犯的定罪权放在数据手中,借以表达对数据和分析结果的崇尚,这实际上是一种滥用。

B、随着数据量和种类的增多,大数据促进了数据内容的交叉检验,匿名化的数据不会威胁到任何人的隐私。

C、采集个人数据的工具就隐藏在我们日常生活所必备的工具当中,比如网页和智能手机应用程序。

D、预测与惩罚,不是因为所做,而是因为将做。

17、只要得到了合理的利用,而不单纯只是为了“数据”而“数据”,大数据就会变成(B)【P113】 A、强大的威胁 B、强大的武器 C、预测工具 D、分析工具

18、在大数据时代,我们需要设立一个不一样的隐私保护模式,这个模式应该更着重于(A)为其行为承担责任。【P116】 A、数据使用者

B、数据提供者 C、个人许可 D、数据分析者

19、对大数据使用进行正规评测及正确引导,可以为数据使用者带来什么切实的好处(A)【P116】

A、他们无须再取得个人的明确同意,就可以对个人数据进行二次利用。

B、数据使用者不需要为敷衍了事的评测和不达标准的保护措施承担法律责任。

C、数据使用者的责任不需要强制力规范就能确保履行到位。 D、所有项目,管理者必须设立规章,规定数据使用者应如何评估风险、如何规避或减轻潜在伤害。

20、促进隐私保护的一种创新途径是(D):故意将数据模糊处理,促使对大数据库的查询不能显示精确的结果。【P117】 A、匿名化 B、信息模糊化 C、个人隐私保护 D、差别隐私

多选题

1、大数据与三个重大的思维转变有关,这三个转变是什么?(ACD)。【P30】

A、要分析与某事物相关的所有数据,而不是依靠分析少量的数据样本。

B、我们乐于接受数据的纷繁复杂,而不再追求精确性。

C、在数字化时代,数据处理变得更加容易、更加快速,人们能够在瞬间处理成千上万的数据。

D、我们的思想发生了转变,不再探求难以捉摸的因果关系,转而关注事物的相关关系。

2、下面关于大数据的解说正确的是(ABC)。【P20】

A、大数据是人们在大规模数据的基础上可以做到的事情,而这些事情在小规模数据的基础上是无法完成的。

B、大数据是人们获得新的认知、创造新的价值的源泉。

C、大数据还是改变市场、组织机构,以及政府与公民关系的方法。 D、无效的数据越来越多。

3、大数据的科学价值和社会价值正是体现在(AB)【P24】 A、一方面,对大数据的掌握程度可以转化为经济价值的来源。 B、另一方面,大数据已经撼动了世界的方方面面,从商业科技到医疗、政府、教育、经济、人文以及社会的其他各个领域。

C、大数据的价值不再单纯来源于它的基本用途,而更多源于它的二次利用。

D、大数据时代,很多数据在收集的时候并无意用作其他用途,而最终却产生了很多创新性的用途。

4、关于大数据的说话正确的有(ABC)【P42】 A、大数据时代要求我们重新审视精确性的优劣。

B、大数据不仅让我们不再期待精确性,也让我们无法实现精确性。

C、错误并不是大数据固有的特性,而是一个亟需我们去处理的现实问题,并且有可能长期存在。 D、错误性是大数据本身固有的。

5、社会将两个折中的想法不知不觉地渗入了我们的处事方法中,我们甚至不再把这当成一种折中,而是把它当成了事物的自然状态。这两个折中的方法是什么?(AB)【P46】

A、第一个折中是我们默认自己不能使用更多的数据,所以我们就不会去使用更多的数据。

B、第二个折中出现在数据的质量上。

C、第一个折中是我们能够容忍模糊和不确定出现在一些过去依赖于清晰和精确的领域。

D、第二个折中是能够得到一个事物更完整的概念,我们就能 接受模糊和不确定的存在。

6、数据化最早的根基是什么(AC)【P64】 A、计量 B、数字化 C、记录 D、阿拉伯数字 7、关于数据创新包含(ABCDEF)【P79】 A、数据的再利用 B、重组数据 C、可扩展数据 D、数据的折旧值 E、数据废气

F、开放数据

8、关于数据的潜在价值,说法正确的是(ABCD)。【P79】

A、数据的真实价值就像漂浮在海洋中的冰山,第一眼只能看到冰山一角,而绝大部分则隐藏在表面之下。

B、判断数据的价值需要考虑到未来它可能被使用的各种方式,而非仅仅考虑其目前的用途。

C、在基本用途完成后,数据的价值仍然存在,只是处于休眠状态 D、数据的价值是其所有可能用途的总和 9、下列哪些属于数据废气(ABC)【P84】 A、搜索关键词时,人们的错误拼写; B、人们浏览网页时停留的时间; C、人们阅读电子书章节的时间长短; D、商品每月被购买的数量。

10、下面例子属于大数据技术公司的是(ABCD)【P92-94】 A、四大机票预订系统之一的ITA Software

B、与各行各业的公司合作应用高级无线感应技术来收集数据,然后对这些数据进行分析的埃森哲咨询公司。

C、微软研究中心与华盛顿中心医院合作分析了多年来的匿名医疗记录

D、在对冲基金工作的金融工程师杰夫•贝索斯创建了网上书店亚马逊。

11、下列属于数据中间商的是(BCD)【P96】

A、中国最大的银行中国银行,拥有大量客户的数据。

B、西雅图的交通数据处理公司Inrix,汇集了来自美洲和欧洲近1亿辆汽车的实时交通数据。

C、中国最大的汽车网站,汽车之家,各家汽车的数据和大量用户。 D、Quantcast通过帮助网站记录用户的网页浏览历史来测评用户的年龄、收入、喜好等个人信息,然后向用户发送有针对性的定向广告。 12、进行大数据分析的人可以轻松地看到大数据的价值潜力,这极大地刺激着他们进一步(ABD)我们个人数据的野心。【P104】 A、采集 B、存储 C、分析 D、循环利用

13、关于大数据和互联网,以下哪些说法是正确的(ABD)【P104-105】 A、互联网的出现使得监视变得更容易、成本更低廉也更有用处。 B、大数据不管如何运用都是我们合理决策过程中的有力武器。 C、大数据的价值不再单纯来源于它的基本用途,而更多源于它的二次利用。

D、大数据时代,很多数据在收集的时候并无意用作其他用途,而最终却产生了很多创新性的用途。

14、单纯依据大数据预测作出决策需遵循哪些原则(ABCD)【P117-118】 A、公开原则 B、公正原则

C、可反驳原则

D、确保个人动因能防范数据独裁的危害

15、大数据时代对信息进行有效、公正管理的三项策略是什么(ABC)【P121】

A、在使用预测分析时考虑个人动因

B、隐私保护从个人许可到数据使用者承担责任的转变 C、催生大数据审计员 D、将反垄断法付诸行动

判断题

1、采样分析的精确性随着采样随机性的增加而大幅提高,但与样本

数量的增加关系不大。(√) 【P32】 2、内大数据是指不用随机分析法这样的捷径,而采用所有数据的方法。(√)【P35】

3、要想获得大规模数据带来的好处,混乱应该是一种标准途径,而不应该是竭力避免的。(√) 【P44】

4、数据化就是数字化,是相互等同的关系。(×) 【P64】 5、即使数据用于基本用途的价值会减少,但潜在价值却依然强大。(√) 【P82】 6、大数据思维,是指一种意识,认为公开的数据一旦处理得当就能为千百万人急需解决的问题提供答案。(√)【P93】

7、对于大型、中等、小型规模的公司而言,大数据对中等规模的公司帮助最大。(X) 【P130】

8、大数据的核心思想就是用规模剧增来改变现状。(√) 【P104】

9、内部算法师将扮演公正的审计员的角色,在客户或政府所要求的任何时候,根据法律指令或规章对大数据的准确程度或者有效性进行鉴定。(×)【P120】

Top