今天给大家带来的是Android基础测试题(二) 题目要求: 定义一个5位长度的整型数组并初始化,然后构建方法根据用户传入的数字判断是否存在数组中,如果存在,返回所在位置,如果不存在,返回-1 首先第一步,我们要根据用户输入的数字,在数组中查询出是否存在返回的位置. //n储存用户输入的数 //如果存在,返回位置,如果不存在,返回-1static int test(double n){ double[] nums={15,25.5,56,45,14.5}; for (int i = 0; i <…
MySQL测试题 一.表关系 请创建如下表,并创建相关约束 创建数据库create database school charset utf8; 建表create table class(cid int not null auto_increment,caption char(32) not null,primary key(cid)); create table student( sid int not null auto_increment, sname char(32) not null,…
0.导言 ES6中新增了不少的新特性,来点测试题热热身.具体题目来源请看:http://perfectionkills.com/javascript-quiz-es6/. 以下将一题一题来解析what和why. 1.题目一 (function(x, f = () => x) { var x; var y = x; x = 2; return [x, y, f()]; })(1) A. [2, 1, 1] B. [2, undefined, 1] C. [2, 1, 2] D. [2, undef…