第一类 数据推理:
题目1:393,163,67,29,9,? [问号里应该是5,3,1,11中哪个]
题目2:1,10,26,50,82,? [问号里应该是104,140,146,131中哪个]
题目3:22,44,68,96,128,? [问号里应该是148,156,164,174中哪个]
题目4:6,18,?,78,126 [问号里应该是40,41,42,44中哪个]
题目5:9,16,37,?,289 [问号里应该是30,46,216,100中哪个]
题目6:如果2003年6月3号星期五,那么2006年6月3号星期几?(给出分析过程)
题目7:某杂志刊登一段文字如下:
1 周迅的前男友窦鹏是窦唯的堂弟;
2 窦唯是王菲的前老公;
3 周迅的前男友宋宁是高原的表弟;
4 高原是窦唯的现任老婆;
5 窦唯是王菲的前老公;
6 周迅的前男友李亚鹏是王菲的现任老公;
7 周迅的前男友朴树的音乐制作人是张亚东;
8 张亚东是王菲的前老公窦唯的妹妹窦颖的前老公,也是王菲的音乐制作人;
9 张亚东是李亚鹏前女友瞿颖的现男友。
请问下列说法不正确的是:
A 王菲周迅是情敌关系;
B 瞿颖王菲是情敌关系;
C 窦颖周迅是情敌关系;
D 瞿颖周迅是情敌关系。
简答题:
题目8:在程序设计中,对公共资源(如缓冲区)的操作和访问经常需要使用锁来进行保护,但在大并发系统中过多的锁会导致效低很低,通常那些办法可以尽量避免或减少锁的使用?
题目9:有哪些方法让一个进程仅有一个实例运行。
题目10:红黑树比AVL树的优势是什么?
题目11:有3个红色球,2个白色球,1个绿色球。取出2个不同颜色的球就能变成2个第三种颜色的球(比如:取出1红球,1白球,就能变成2个绿球)。问,最少几次变化能将所有的球都变成同一颜色,说明步骤和原因?
题目12:通常一个软件开发过程包含哪几个阶段,你知道在个阶段的质量保证措施分别是什么吗?
PS 还有一套thoughtworks题也来做做
题目13:编号为123456789的火车经过如下轨道从左边入口处移到右边出口处(每车只能进临时轨道M一次)
-----------------------------------------------------
987654321
-------------------\ /-----------------------------
| |
| |
| |
| |
| |
|M|
| |
| |
| |
| |
|_|
按照从左向右的顺序,下面的结果不可能是______
A 123876549
B 321987654
C 321456798
D 789651234
题目14:如果M只能容纳4列车。上面选项因该选哪个______
题目15:For the following description about OOP, which is right?
1 An object can inherit the feature of another object;
2 A sub class can contain dditional attribute or behaviors.
3 Encapsulation is used to hide as MUCH as possible about the inner working of the interface.
4 Encapsulation prevents the program from becoming independent
5 polymorphism allows the methods have different signature but with same name.
A 12
B 14
C 23
D 35
E 45
题目16:Function club is used to simulate guest in a club. With 0 guests initially
and 50 as max occupancy, when guests beyond limitation, they need to wait outside;
when some guests leave the waiting list will decrease. The function will print out
number of guests in the club and waiting outside. The function declaration as follows:
void club(int x);
positive x stands for guests arrived, nagative x stands for guests left from
within the club
For example, club (40) prints 40,0; and then club (20) prints 50,10; and then club (-5) prints 50,5; and then club (-30) prints 25,0; and then club (-30) prints N/A; since it is impossible input.
To make sure this function works as defined, we have following set of data to pass into
the function and check the result are correct.
a 60
b 20 50 -10
c 40 -30
d 60 -5 -10 -10 10
e 10 -20
f 30 10 10 10 -60
g 10 10 10
h 10 -10 10
A a d e g
B c d f g
C a c d h
D b d g h
E c d e f
题目17:Read the following javascript code:
someText = 'Web2.0';
pattern = /(\w+)(\d)\.(\d)/i;
outCome = pattern.exec(someText);
What is outCome[0]?
Choice A: true
Choice B: false
Choice C: null
Choice D: Web
Choice E: Web2.0
题目18:Which one is Class B Address?
Choice A: 10.10.10.1
Choice B: 191.168.0.1
Choice C: 192.168.0.1
Choice D: 202.113.0.1
Choice E: None of them
题目19:Which of the choices below correctly describes the amount of time used by the following code:
n=10;
for(i=1; i <n; i++)
for(j=1; j <n; j+=n/2)
for(k=1; k <n; k=2*k)
x = x +1;
Choice A: Θ(n^3)
Choice B: Θ(n2logn)
Choice C: Θ(n(log n)2)
Choice D: Θ(n log n)
Choice E: Θ((logn)2)
题目20:Which one of the following statements about buffer overflow attacking is NOT correct?
Choice A: Wrapping the vulnerable functions (such as strcpy) can help
prevent buffer overflow attacking
Choice B: Forbidding to execute code on the stack can help prevent
buffer overflow attacking
Choice C: Adding a mechanism in TLB to set the attribute of a page
non-executable can help prevent buffer overflow attacking
Choice D: C++ language has some built-in mechanisms to prevent buffer
overflow attacking
Choice E: None of above
题目21:During Beijing Olympic Games this summer, lots of people visited Beijing. However, many visitors have complains/difficulties towards trip since most hotels are very expensive or already fully booked. On the other hand, some local people are eagerly to rent out their apartments during Olympics, but don’t know how to effectively publish the information, even after Olympic, a lot of visitors and house renters are still facing the same problems
You’re assigned to solve this problem, and what are the action(s) you want to take for your first step
Choice A: Contact Government and ask for some initial funding
Choice B: Work with your colleagues to do user study to figure out more on who may be your customers
Choice C: Work with your Developer and Tester to build a platform to help these customers
Choice D: Find some of your friends outside the company, discuss about the project details, and see if they can help you.
Choice E: Nothing
题目22:You are the PM of online shopping project. This project is running well and will be released to customer in two months. But the marketing team demands to add two new features in this release and emphasize these two features are critical because our major competitors already have similar features . At the same time, you found out that all developers and tester already had work items planned for next two months. What are the right possible action(s) to take to deal with this issue?
1. Discuss the issue with the management team and try to request
new resources to fulfill these two features
2. Reject the new features request directly so that you can ship
current release on time
3. Decrease the testing criteria to reduce the test duration so
that you can add the two new features
4. Go through all the left work items with marketing team and
other partners to punt low priority items to next release
5. Discuss this issue with stakeholders (management team,
marketing team etc) and propose to postpone current release
Choice A: 1, 3 and 4
Choice B: 2
Choice C: 1, 3 and 4
Choice D: 1, 4 and 5
Choice E: 2, 4 and 5
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/zdl1016/archive/2008/11/04/3220949.aspx
分享到:
相关推荐
深信服SCSA认证试题与答案
深信服scsa题库试题
"深信服PT2试题.pdf" 深信服PT2试题是关于Endpoint Detection and Response(EDR)和Security Information and Event Management(SIEM)的试题,涵盖了EDR、SIEM、漏洞检测、入侵检测、恶意软件检测、日志管理、...
深信服SCSA题库试题全套,一整套题库,下载考试必过。。。。
这个是近几年深信服的笔试试题,深信服笔试题比较变态,C++考的特多。测试工程师网络和LINUX操作系统命令考的多。
【深信服AC系列试题解析】 1. AC设备的策略路由功能主要负责根据特定条件(如源IP、目标IP、协议等)选择最优路径。错误的说法是A,因为策略路由通常优先于系统路由匹配。如果设定的策略路由线路不可用,流量会自动...
深信服历年笔试试题!想应聘深信服的同学建议看看,深信服笔试题有一定难度,如果平时学习成绩不太好的同学得多下功夫!
【深信服aDesk桌面云初级理论】是一个关于企业级桌面虚拟化技术的专题,主要聚焦于深信服公司的aDesk解决方案。深信服科技是一家知名的网络安全与云计算解决方案提供商,其aDesk产品是他们推出的桌面云服务,旨在为...
深信服作为一家专注于网络安全与云计算领域的公司,其虚拟化试题涉及到的主要是虚拟化的核心概念和技术细节。 在虚拟化环境中,有几个关键概念需要理解: 1. **虚拟机(VM)**:虚拟机是虚拟化技术中的核心元素,...
### 深信服大云L1真题解析 #### 風险点与知识点概述 根据提供的深信服大云L1真题文档描述及其部分题目内容,本解析将覆盖以下关键知识点: 1. **虚拟机网络配置与排障** 2. **EDS集群授权与管理** 3. **对象存储...
此文档为2020深信服销售专家初级认证考试试题及试题答案,预祝各位完美通过深信服销售认证初级,甚至高级!
深信服的虚拟化试题涵盖了这一领域的多个关键知识点,如磁盘副本、存储初始化、资源分配等,这些都是理解和实施虚拟化方案时必须掌握的基础。对于IT专业人士而言,熟悉并精通这些知识是确保业务顺畅运行的关键。
深信服作为国内知名的IT解决方案提供商,其虚拟化产品在业界有着广泛的应用。 在虚拟化中,"磁盘个数不能被副本整除"这一概念涉及到的是虚拟机存储的高可用性和冗余策略。例如,为了保证数据的安全性,虚拟机的磁盘...
深信服2020年销售初级认证最新考试试题.总共100道题,都是单选题,总共100分。本次考试95分,大家注意辨别下答案,有5道答案是错误的,考完也是没有答案的,所以我也不知道正确答案。
深信服超融合技术介绍
深信服SCSA认证考试试题
深信服SCSA考试试题
深信服负载均衡基础知识介绍 深信服负载均衡基础知识介绍是关于解决方案的培训内容,主要介绍深信服 AD 产品的应用场景、基本功能和解决方案。深信服 AD 是一种负载均衡设备,能够解决客户的问题,如服务器分担不...
深信服SCSA题库试题全套,专业指导文档类资源整套题库,亲测可用。 深信服SCSA题库试题全套,专业指导文档类资源整套题库,亲测可用。