JAVA软件工程师测试题


Posted in 面试题 onJuly 25, 2014

全班学生排成一排,从左数和从右数Mike都是第十五名,全班学生有多少人?
A:31; B:25 C:29; D:30
A football team won 6 games and lost 18.What fraction of its games did the team win?
A:1/3; B:1/4; C:2/3; D:3/4;
Select the number that would be next in the series
6.546, 6.659, 6.772, 6.885, 6.998
A:7.111; B:7.10; C:7.011; D:None of these;
A television manufacturer offers a distributor successive discounts of 15 and 10 percent on one of its new color models. The distributor pays $459.00 net for the TV set. What was the original price before any discount?
A:$612.00; B:$600.00; C:580.00; D:473.75;
If you can paint three standard-size rooms in two days, how many similar rooms can you and three of your friends paint in three days?
A:6; B:13.2; C:18; D:54;
If snow is falling at the rate of 11/2 inches per hour, how many inches of snow will fall in X minutes?
A:X/40; B:X/30; C:30X; D:40X;
假设某种语言有三个运算符:==,&,||,其中==的优先级最高,&次之,||最低,给以下表达式加上括号:
varA||varB&varC==varD
A:((varA||varB)&varC)==varD; B:varA||(varB&(varC==varD)); C:(varA||varB)&var(C==varD); D:(varA||varB)&(varC)==varD;
执行以下操作后a的值为多少?
a=a+b
b=a-b
a=a-b
A:a; B:b; C:a-b; D:a+b;
The following function is meant to reverse the numbers in an array of 7 integers, but may have a bug.Where is the error,if any?(Mark it with circle)
Void reverse(int A[7])
{
int IO=0;
int hi;
while (IO<7) //Line 1

{
hi=6-IO; //Line 2
int swap=A[hi]; //Line 3
A[hi]=A[IO]; //Line 4
A[IO]=swap; //Line 5
IO=IO+1; //Line 6
}
}
A:Line 1; B:Line 2; C:Line 3; D:Line 4; E:Line 5; F:Line 6;
What function does the following recursive(递归) subroutine compute,when passed two non-negative values?
int f(int a, int b)
{
if(a equals 0)
return 0;
else
return f(a-1,b)+b;
}
A:Sum: a+b; B:Difference: a-b; C:Exponentiation(求幂): a**b; D:Product: a*b; E:Factorial(阶乘); F:Square root; G:The subroutine diverges (does not return a value);
According to the following code, what is the value of the function’s result?
int t(int a)
{
int s=0;
for (int i=1;i<=a,i++)
{
s=s+1;
}
}
when executing the t(10),what result will you get?
A:20; B:55; C:10; D:25;
What is the negation of the following expression?
0 A:n>=0 AND MAX>=n; B:0>n OR n>MAX; C:n<=0 OR n>=MAX; D:n>0 AND MAX>n; E:0=0 OR MAX>=n; G:0 Choose the best answer:A Pointer …
A:is a single link in a linked list.; B:Is a variable holding the (x,y) coordinates of a point.; C:Is the address of an object.; D:Is a variable holding an IP address; E:Is a variable holding the address of another variable.; F:Is the header section of an operating system block.; G:Separates frames on the runtime stack;
小明比小强大,小红比小明小。下列陈述中哪一句最正确?
A:小红比小强大; B: 小红比小强小 ; C: 小红与小强一样大 ; D: 无法确定小红与小强谁大


Tags in this post...

面试题 相关文章推荐
WebSphere 应用服务器都支持哪些认证
Dec 26 面试题
第二层交换机和路由器的区别?第三层交换机和路由器的区别?
May 23 面试题
SQL Server提供的3种恢复模型都是什么? 有什么区别?
May 13 面试题
TCP/IP模型的分界线
Dec 01 面试题
能否解释一下XSS cookie盗窃是什么意思
Jun 02 面试题
介绍一下grep命令的使用
Jun 12 面试题
sort命令的作用和用法
Nov 04 面试题
Linux如何压缩可执行文件
Mar 27 面试题
Linux文件操作命令都有哪些
Feb 27 面试题
EJB3.1都有哪些改进
Nov 17 面试题
Java基础知识面试题
Mar 25 面试题
Overload和Override的区别。Overloaded的方法是否可以改变返回值的类型
Oct 30 面试题
请介绍一下WSDL的文档结构
Mar 17 #面试题
WSDL的操作类型主要有几种
Jul 19 #面试题
如何定义一个可复用的服务
Sep 30 #面试题
SOA面试题:如何在SOA中实现松耦合
Jul 21 #面试题
SOA的常见陷阱或者误解是什么
Oct 05 #面试题
什么是ESB?请介绍一下ESB?
May 27 #面试题
介绍一下你对SOA的认识
Apr 24 #面试题
You might like
PHP定时任务延缓执行的实现
2014/10/08 PHP
ThinkPHP中I(),U(),$this-&gt;post()等函数用法
2014/11/22 PHP
php+mysql数据库查询实例
2015/01/21 PHP
PHP cURL初始化和执行方法入门级代码
2015/05/28 PHP
Zend Framework入门教程之Zend_Registry组件用法详解
2016/12/09 PHP
PHP中in_array的隐式转换的解决方法
2018/03/06 PHP
JavaScript实现点击按钮后变灰避免多次重复提交
2013/07/15 Javascript
JQuery文字列表向上滚动的代码
2013/11/13 Javascript
jquery实现弹出层遮罩效果的简单实例
2014/03/03 Javascript
jquery 实现输入邮箱时自动补全下拉提示功能
2015/10/04 Javascript
jquery验证手机号是否正确实例讲解
2015/11/17 Javascript
基于jQuery实现选取月份插件附源码下载
2015/12/28 Javascript
浅谈原生JS实现jQuery的animate()动画示例
2017/03/08 Javascript
常用的js方法合集
2017/03/10 Javascript
Angular2中select用法之设置默认值与事件详解
2017/05/07 Javascript
详解vue.js移动端导航navigationbar的封装
2017/07/05 Javascript
Vue防止白屏添加首屏动画的实例
2019/10/31 Javascript
JS自定义右键菜单实现代码解析
2020/07/16 Javascript
[41:37]DOTA2北京网鱼队选拔赛——冲击职业之路
2015/04/13 DOTA
[04:40]2016国际邀请赛中国区预选赛全程TOP10镜头集锦
2016/07/01 DOTA
python 字符串split的用法分享
2013/03/23 Python
Python中优化NumPy包使用性能的教程
2015/04/23 Python
django使用xlwt导出excel文件实例代码
2018/02/06 Python
解决python中使用plot画图,图不显示的问题
2018/07/04 Python
利用Python如何制作好玩的GIF动图详解
2018/07/11 Python
pycharm运行和调试不显示结果的解决方法
2018/11/30 Python
如何通过雪花算法用Python实现一个简单的发号器
2019/07/03 Python
Keras 利用sklearn的ROC-AUC建立评价函数详解
2020/06/15 Python
Python内置方法和属性应用:反射和单例(推荐)
2020/06/19 Python
Python JSON常用编解码方法代码实例
2020/09/05 Python
eDreams澳大利亚:预订机票、酒店和度假产品
2017/04/19 全球购物
毕业生代领毕业材料的授权委托书
2014/09/29 职场文书
学生自我评语
2015/01/04 职场文书
宾馆前台接待岗位职责
2015/04/02 职场文书
讲解MySQL增删改操作
2022/05/06 MySQL
VUE解决跨域问题Access to XMLHttpRequest at
2022/05/06 Vue.js