远景智能-2021秋季招聘软件技术笔试题(第一批)
时长:120分钟 总分:100分
120浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 填空题 |
---|---|---|---|
数量 | 20 | 10 | 2 |
找出符合条件的sql
使用一个长度最大为150的队列,对满二叉树进行广度优先遍历时,能够容纳的二叉树的最大深度为()(第一层深度为1)
下面代码的输出结果是什么?
public class ZeroTest { public static void main(String[] args) { try{ int i = 100 / 0 System.out.print(i) }catch(Exception e){ System.out.print(1) throw new RuntimeException() }finally{ System.out.print(2) } System.out.print(3) } }