题目内容

What is the printout after the following loop terminates?int number = 25;int i; boolean isPrime = true;for (i = 2; i < number; i++) {if (number % i == 0) {isPrime = false;break;}} System.out.println("i is " + i + " isPrime is " + isPrime);

A. i is 5 isPrime is false
B. i is 5 isPrime is true
C. i is 6 isPrime is false
D. i is 6 isPrime is true

查看答案
更多问题

可以对动画进行快慢、停顿、播放等带有交互性的操作,很多H5复杂炫酷的主视觉,就是借助了_____来实现的。

A. GIF图
B. 帧动画/序列帧动效
C. 视频类动效
D. 代码级动效

在H5,我们可以实现哪些动效?

A. GIF图
B. 帧动画/序列帧动效
C. 视频类动效
D. 代码级动效

移动端的操作手势有:

A. 单击
B. 双击
C. 长按
D. 滑动
E. 捏合
F. 拖拽
G. 摇晃

动效虽然是非常好的表现方式,动效应该适可而止。

A. 对
B. 错

答案查题题库