美丽联合2018校招基础平台-虚拟化开发工程师笔试试卷
时长:120分钟 总分:100分
132浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 |
---|---|---|
数量 | 43 | 1 |
设在一棵度数为3的树中,度数为3的结点数有2个,度数为2的结点数有1个,度...
设在一棵度数为3的树中,度数为3的结点数有2个,度数为2的结点数有1个,度数为1的结点数有2个,那么度数为0的结点数有( )个。
小明的游戏账号密码是一串8位数字,只记前面5个数字为38034.但他肯定,...
小明的游戏账号密码是一串8位数字,只记前面5个数字为38034.但他肯定,后面3个数字全是奇数,最后一个数字是5,且后3个数字中相邻数字不相同,小明至少要试多少次才能保证登入()
入栈序列是:a1,a3,a5,a2,a4,a6,出栈序列是:a5,a4,a...
入栈序列是:a1,a3,a5,a2,a4,a6,出栈序列是:a5,a4,a2,a6,a3,a1,则栈的容量最小是()
500张骨牌整齐地排成一行,按顺序编号为1、2、3、......、499、...
500张骨牌整齐地排成一行,按顺序编号为1、2、3、......、499、500。第一次拿走所有奇数位置上的骨牌,第二次再从剩余骨牌中拿走奇数位置上 的骨牌,以此类推。请问最后剩下的一张骨牌的编号是?
指出以下程序运行的结果是 public class Example...
public class Example{
String str=new String("good")
char[]ch={'a','b','c'}
public static void main(String args[]){
Example ex=new Example()
ex.change(ex.str,ex.ch)
System.out.print(ex.str+" and ")
System.out.print(ex.ch)
}
public void change(String str,char ch[]){
str="test ok"
ch[0]='g'
}
}
以下代码执行后输出结果为: public class Test ...
public class Test
{
public static Test t1 = new Test()
{
System.out.println("blockA")
}
static
{
System.out.println("blockB")
}
public static void main(String[] args)
{
Test t2 = new Test()
}
}
假设如下代码中,若t1线程在t2线程启动之前已经完成启动。代码的输出是()...
public static void main(String[]args)throws Exception {
final Object obj = new Object()
Thread t1 = new Thread() {
public void run() {
synchronized (obj) {
try {
obj.wait()
System.out.println("Thread 1 wake up.")
} catch (InterruptedException e) {
}
}
}
}
t1.start()
Thread.sleep(1000)//We assume thread 1 must start up within 1 sec.
Thread t2 = new Thread() {
public void run() {
synchronized (obj) {
obj.notifyAll()
System.out.println("Thread 2 sent notify.")
}
}
}
t2.start()
}
下面代码会输出什么() int main(int argc,&nb...
int main(int argc, char **argv)
{
int a[4] = {1, 2, 3, 4}
int *ptr = (int *)(&a + 1)
printf("%d",*(ptr - 1))
}
执行如下代码段后,变量s1引用的字符串值是(  &nb...
String s1 = "ABCD"
String s2 = "1234"
System.out.println(s1+ s2)
以下方法,哪个不是对add方法的重载? public class ...
public class Test
{
public void add( int x,int y,int z){}
}
在java类设计中,类的成员变量要求仅仅能够被同一package下的类访问...
在java类设计中,类的成员变量要求仅仅能够被同一package下的类访问,请问应该使用下列哪个修饰词()
Java中用正则表达式截取字符串中第一个出现的英文左括号之前的字符串。比如...
Java中用正则表达式截取字符串中第一个出现的英文左括号之前的字符串。比如:北京市(海淀区)(朝阳区)(西城区),截取结果为:北京市。正则表达式为()
桌子上有 4 个杯子,每个杯子上写着一句话:第一个杯子...
计算一年中的第几天
今年的第几天?
输入年、月、日,计算该天是本年的第几天。
输入描述: 包括三个整数年(1<=Y<=3000)、月(1<=M<=12)、日(1<=D<=31)。输入样例: 1990 9 20 2000 5 1 输出描述: 输入可能有多组测试数据,对于每一组测试数据,输出一个整数,代表Input中的年、月、日对应本年的第几天。输出样例 263 122