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 session
Apr 21 面试题
Java TransactionAPI (JTA) 主要包含几部分
Dec 07 面试题
面向对象编程是如何提高软件开发水平的
May 06 面试题
JAVA和C++区别都有哪些
Mar 30 面试题
经典c++面试题五
Dec 17 面试题
编写一个类体现构造,公有,私有方法,静态,私有变量
Aug 10 面试题
const和static readonly区别
May 20 面试题
Linux管理员面试题 Linux admin interview questions
Jul 08 面试题
Linux如何修改文件和文件夹的权限
Sep 05 面试题
Structs界面控制层技术
Oct 11 面试题
Ruby如何创建一个线程
Mar 10 面试题
给定一个时间点,希望得到其他时间点
Nov 07 面试题
请介绍一下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
fgetcvs在linux的问题
2012/01/15 PHP
PHP获取数组中某元素的位置及array_keys函数应用
2013/01/29 PHP
php创建、获取cookie及基础要点分析
2015/01/26 PHP
PHP两种快速排序算法实例
2015/02/15 PHP
ThinkPHP中使用Ueditor富文本编辑器
2015/09/02 PHP
PHP中大括号'{}'用法实例总结
2017/02/08 PHP
搜索附近的人PHP实现代码
2018/02/11 PHP
JQuery-tableDnD 拖拽的基本使用介绍
2013/07/04 Javascript
js+css实现文字散开重组动画特效代码分享
2015/08/21 Javascript
Bootstrap导航条可点击和鼠标悬停显示下拉菜单的实现代码
2016/06/23 Javascript
使用vue.js2.0 + ElementUI开发后台管理系统详细教程(二)
2017/01/21 Javascript
BootStrap框架中的data-[ ]自定义属性理解(推荐)
2017/02/14 Javascript
js实现抽奖效果
2017/03/27 Javascript
ComboBox(下拉列表框)通过url加载调用远程数据的方法
2017/08/06 Javascript
React Native AsyncStorage本地存储工具类
2017/10/24 Javascript
React Native之prop-types进行属性确认详解
2017/12/19 Javascript
基于Vue实现关键词实时搜索高亮显示关键词
2018/07/21 Javascript
Node.js爬虫如何获取天气和每日问候详解
2019/08/26 Javascript
JS数组Reduce方法功能与用法实例详解
2020/04/29 Javascript
精读《Vue3.0 Function API》
2020/05/20 Javascript
vue添加自定义右键菜单的完整实例
2020/12/08 Vue.js
Python 随机生成中文验证码的实例代码
2013/03/20 Python
简单讲解Python中的数字类型及基本的数学计算
2016/03/11 Python
Python正则表达式常用函数总结
2017/06/24 Python
Python基于回溯法子集树模板解决找零问题示例
2017/09/11 Python
对python中Matplotlib的坐标轴的坐标区间的设定实例讲解
2018/05/25 Python
python3.6使用pickle序列化class的方法
2018/10/22 Python
对Python w和w+权限的区别详解
2019/01/23 Python
中职生自荐信
2013/10/13 职场文书
儿媳婚宴答谢词
2014/01/14 职场文书
财务人员求职自荐书范文
2014/02/10 职场文书
幼儿园教师工作感言
2014/02/15 职场文书
大学生工作求职信
2014/06/23 职场文书
借条格式范本
2015/05/25 职场文书
祝寿主持词
2015/07/02 职场文书
zabbix 代理服务器的部署与 zabbix-snmp 监控问题
2022/07/15 Servers