Test_AMO2018
Test_AMO2018
A.
B.
C.
D.
E.
2.
A.
B.
C.
D.
E.
3.
A.
B.
C.
D.
E.
4. ȹ
∊ȹ
∊ȹ
ᑎ
5.
A.
B.
C.
D.
E.
6.
A.
B.
C.
D.
E.
7.
A.
B.
C.
D.
E.
8.
A.
B.
C.
D.
E.
9.
VDD
M2
VOUT
VIN
M1
A.
B.
C.
D.
E.
10.
A.
B.
C.
D.
E.
11.
A.
B.
C.
D.
E.
12.
A.
B.
C.
D.
E.
13.
A.
B.
C.
D.
E.
14.
A.
B.
C.
D.
E.
15.
A.
B.
C.
D.
E.
16.
17.
18.
(𝑘) 2𝜋 5
A. 𝑉𝐵 =(𝑎)
(𝑘) 2𝜋 4
B. 𝑉𝐵 =(𝑎)
(𝑘) 2𝜋 3
C. 𝑉𝐵 =(𝑎)
(𝑘) 2𝜋 2
D. 𝑉𝐵 =(𝑎)
E.
19.
20.
21.
22.
2x
f (x) 2arctan x arcsin
1 x2
A. y x
B. y x
C. y arctan(3x)
D. y arctan(3x)
E. y
23.
f (x) xe x e x 0.5x2 1 .
A.
B.
C.
D.
E.
24.
cos sin
n
lim
n sin
, where n2 4 n2 2 .
cos
1 0
A. 0 1
0 1
B. 1 0
0 1
C. 1 0
1 0
D. 0 1
1 0
E.
0 1
25.
A.
B.
C.
D.
E.
26.
A.
B.
C.
D.
E.
27.
A.
for (int i = 1; i <= 4; i = i+1)
{
for (int j = 1; j <= i; j = j+1)
{
Console.Write(i);
}
Console.WriteLine();
}
B.
for (int i = 1; i <= 4; i = i+1)
{
for (int j = i; j <= 4; j = j+1)
{
Console.Write(i);
}
Console.WriteLine();
}
C.
for (int i = 1; i <= 4; i = i+1)
{
for (int j = 1; j <= i; j = j+1)
{
Console.Write(j);
}
Console.WriteLine();
}
D.
for (int i = 1; i <= 4; i = i+1)
{
for (int j = i; j <= 4; j = j+1)
{
Console.Write(j);
}
Console.WriteLine();
}
E.
28.
int n = 6;
int m = 0;
for (int i = 1; i <= n - 1; i = i + 1)
{
if (x[i] > x[i - 1])
{
m = m + 1;
}
}
A.
B.
C.
D.
E.
29.
int b = 0;
while (b < a)
{
b = b + 9;
}
A.
B.
C.
D.
E.
30.
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 1 2 3 4 5
1 2 3 4 1 2 3 4 1 2
1 2 3 1 2 3 1 2 3 1
1 2 3 4 5 5 4 3 2 1
5 4 3 2 1 1 2 3 4 5