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

面试题 相关文章推荐
PHP数据运算类型都有哪些
Nov 05 面试题
实现strstr功能,即在父串中寻找子串首次出现的位置
Aug 05 面试题
介绍一下#error预处理
Sep 25 面试题
简述数组与指针的区别
Jan 02 面试题
经典c++面试题六
Jan 18 面试题
什么是托管函数?托管函数有什么用?
Jun 15 面试题
Shell编程面试题
May 30 面试题
什么是Web Service?
Jul 25 面试题
掌上明珠Java程序员面试总结
Feb 23 面试题
Java程序员面试题
Jul 15 面试题
什么是servlet链?
Jul 13 面试题
为什么说Ruby是一种真正的面向对象程序设计语言
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
在PHP3中实现SESSION的功能(二)
2006/10/09 PHP
Zend Studio (eclipse)使用速度优化方法
2011/03/23 PHP
php 邮件发送问题解决
2014/03/22 PHP
Linux环境下php实现给网站截图的方法
2016/05/03 PHP
PHP控制前台弹出对话框的实现方法
2016/08/21 PHP
PHP 中TP5 Request 请求对象的实例详解
2017/07/31 PHP
将文本输入框内容加入表中的js代码
2013/08/18 Javascript
Js中的onblur和onfocus事件应用介绍
2013/08/27 Javascript
JavaScritp添加url参数并将参数加入到url中及更改url参数的方法
2015/10/26 Javascript
JS随机洗牌算法之数组随机排序
2016/03/23 Javascript
BootStrap modal模态弹窗使用小结
2016/10/26 Javascript
JS实现的RGB网页颜色在线取色器完整实例
2016/12/21 Javascript
Angular 2父子组件数据传递之@Input和@Output详解 (上)
2017/07/05 Javascript
彻底搞懂JavaScript中的apply和call方法(必看)
2017/09/18 Javascript
详解.vue文件解析的实现
2018/06/11 Javascript
JS实现Cookie读、写、删除操作工具类示例
2018/08/28 Javascript
vue单页应用在页面刷新时保留状态数据的方法
2018/09/21 Javascript
vue-router传参用法详解
2019/01/19 Javascript
了解JavaScript表单操作和表单域
2019/05/27 Javascript
JS如何实现封装列表右滑动删除收藏按钮
2020/07/23 Javascript
Python3解决棋盘覆盖问题的方法示例
2017/12/07 Python
Django之Mode的外键自关联和引用未定义的Model方法
2018/12/15 Python
django 多数据库及分库实现方式
2020/04/01 Python
numpy中生成随机数的几种常用函数(小结)
2020/08/18 Python
编译 pycaffe时报错:fatal error: numpy/arrayobject.h没有那个文件或目录
2020/11/29 Python
Python创建文件夹与文件的快捷方法
2020/12/08 Python
联想美国官方商城:Lenovo美国
2017/06/19 全球购物
台湾SHOPRO购物行家:亚洲首创影视.3C.家电.优质购物平台
2018/05/07 全球购物
计算机应用专业推荐信
2013/11/13 职场文书
迟到早退检讨书
2014/02/10 职场文书
给老婆大人的检讨书
2014/02/24 职场文书
乡镇党的群众路线教育实践活动个人整改方案
2014/10/31 职场文书
go语言中GOPATH GOROOT的作用和设置方式
2021/05/05 Golang
HTML实现仿Windows桌面主题特效的实现
2022/06/28 HTML / CSS
Win11无法安装更新补丁KB3045316怎么办 附KB3045316补丁修复教程
2022/08/14 数码科技
CSS中理解层叠性及权重如何分配
2022/12/24 HTML / CSS