网易2018实习生招聘笔试题-JAVA开发实习生
时长:120分钟 总分:110分
99浏览 0人已完成答题
题型介绍
题型 | 单选题 | 填空题 | 简答题 |
---|---|---|---|
数量 | 20 | 3 | 2 |
如何从有数字规律的网址抓取网页并保存在当前目录?假设网址为 http://...
牛牛找工作
关于计算机网络,以下说法正确的是 (1)在向下的过程中,需要添加下层...
关于MySQL索引 ,下面说法正确的是() (1)B+Tree 索引...
在Linux系统中,可以用来查找可执行文件的是? (1)wher...
有一条TCP连接,它的最大报文段长度为4KB,TCP拥塞窗口为24KB,这...
在Java中,包com中定义了类TestUtil,在com的子包util中...
package test import com.util.TestUtil import com.TestUtil public class Test { public static void main(String[] args) { TestUtil testutil = new TestUtil() } }
给定Java代码如下所示,则编译运行后,输出结果是( )。 p...
public class Test { static int a int b static int c public int aMethod() { a++ return a } public int bMethod() { b++ return b } public static int cMethod() { c++ return c } public static void main(String args[]) { Test test1 = new Test() test1.aMethod() System.out.println(test1.aMethod()) Test test2 = new Test() test2.bMethod() System.out.println(test2.bMethod()) Test test3 = new Test() test3.cMethod() System.out.println(test3.cMethod()) } }
给定某Java程序的main方法如下,该程序编译运行后的结果是( ...
public static void main(String[] args) { String str=null str.concat("abc") str.concat("123") System.out.println(str) }
给定某Java程序的main方法如下,该程序编译运行后的结果是( ...
public class Test { int count = 21 public void count() { System.out.println(++count) } public static void main(String args[]) { new Test().count() new Test().count() } }
已知有4个矩阵分别大小为M1(5*3) M2(3*4) ...
数对
牛牛以前在老师那里得到了一个正整数数对(x, y), 牛牛忘记他们具体是多少了。
牛牛希望你能帮他计算一共有多少个可能的数对。
矩形重叠
平面内有n个矩形, 第i个矩形的左下角坐标为(x1[i], y1[i]), 右上角坐标为(x2[i], y2[i])。
如果两个或者多个矩形有公共区域则认为它们是相互重叠的(不考虑边界和角落)。
请你计算出平面内重叠矩形数量最多的地方,有多少个矩形相互重叠。
Java常用的数据结构中,请描述Vector, ArrayList, Li...
Java常用的数据结构中,请描述Vector, ArrayList, LinkedList的不同场景下的性能差别。