2019乐信校园招聘测试工程师笔试题
时长:120分钟 总分:100分
205浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 简答题 |
---|---|---|---|
数量 | 10 | 5 | 4 |
考虑函数原型void hello(int a,int&...
void hello(int a,int b=7,char* pszC="*")下面的函数调用不合法的是()
当n=6时,下列函数的返回值是:() int foo(int&n...
int foo(int n){ if(n < 2) return n return foo(n-1)+foo(n-2) }
下面中哪两个可以在Demo的子类中使用:( ) class&nb...
class Demo {
protected int m1 (int a, int b) {
return 0
}
}
下面程序输出结果为(): public class D...
public class Demo{ public static void main (String [] args) { String lx = “LeXin” String nb = lx lx = “Fenqile” System.out.println(nb) } }
如果让你来测试分期乐app的登录功能,请问怎样做测试设计,如何考虑测试类型...
