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...

面试题 相关文章推荐
接口中的方法可以是abstract的吗
Jul 23 面试题
JRE、JDK、JVM之间的关系怎样
May 16 面试题
纬创Java面试题笔试题
Oct 02 面试题
数据库面试要点基本概念
Oct 31 面试题
局域网标准
Sep 10 面试题
sealed修饰符是干什么的
Oct 23 面试题
四川internet信息高速公路(C#)笔试题
Feb 29 面试题
易程科技软件测试笔试
Mar 24 面试题
Python里面如何拷贝一个对象
Feb 17 面试题
Java编程面试题
Apr 04 面试题
日期和时间问题
Jan 04 面试题
Java基础类库面试题
Sep 04 面试题
请介绍一下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
西德产收音机
2021/03/01 无线电
PHP中显示格式化的用户输入
2006/10/09 PHP
php+mysql删除指定编号员工信息的方法
2015/01/14 PHP
实现PHP+Mysql无限分类的方法汇总
2015/03/02 PHP
PHP和MySql中32位和64位的整形范围是多少
2016/02/18 PHP
Laravel路由设定和子路由设定实例分析
2016/03/30 PHP
PHP 序列化和反序列化函数实例详解
2020/07/18 PHP
javascript innerText和innerHtml应用
2010/01/28 Javascript
Jquery 表单验证类介绍与实例
2013/06/09 Javascript
js实现防止被iframe的方法
2015/07/03 Javascript
浅谈bootstrap源码分析之tab(选项卡)
2016/06/06 Javascript
基于JS模仿windows文件按名称排序效果
2016/06/29 Javascript
浅谈js中test()函数在正则中的使用
2016/08/19 Javascript
vue.js入门教程之基础语法小结
2016/09/01 Javascript
实现隔行换色效果的两种方式【实用】
2016/11/27 Javascript
纯JS实现表单验证实例
2016/12/24 Javascript
AngularJS 单选框及多选框的双向动态绑定
2017/04/20 Javascript
Vue+Flask实现简单的登录验证跳转的示例代码
2018/01/13 Javascript
JS的函数调用栈stack size的计算方法
2018/06/24 Javascript
vue单页应用在页面刷新时保留状态数据的方法
2018/09/21 Javascript
使用pkg打包ThinkJS项目的方法步骤
2019/12/30 Javascript
基于vue中的scoped坑点解说
2020/09/04 Javascript
Openlayers学习之加载鹰眼控件
2020/09/28 Javascript
[01:01:36]Optic vs paiN 2018国际邀请赛小组赛BO2 第一场 8.19
2018/08/21 DOTA
[57:36]DOTA2-DPC中国联赛 正赛 SAG vs CDEC BO3 第三场 2月1日
2021/03/11 DOTA
​如何愉快地迁移到 Python 3
2019/04/28 Python
Python 字符串池化的前提
2020/07/03 Python
详解CSS3的perspective属性设置3D变换距离的方法
2016/05/23 HTML / CSS
boostrap modal 闪现问题的解决方法
2020/09/01 HTML / CSS
Expedia泰国:预订机票、酒店和旅游包(航班+酒店)
2016/09/27 全球购物
电子信息专业学生自荐信
2013/11/09 职场文书
音乐专业自荐信
2014/02/07 职场文书
花田少年史观后感
2015/06/16 职场文书
2016年公司“3.12”植树节活动总结
2016/03/16 职场文书
nginx前后端同域名配置的方法实现
2021/03/31 Servers
MySQL串行化隔离级别(间隙锁实现)
2022/06/16 MySQL