021 academic achievement test for the first semester of the academic year
Advanced first grade technical test paper
College candidate's instructions:
. This test paper is divided into two parts: the first part is information technology and the second part is general technology. The full score is 100 points, the exam time is 90 minutes;
. Before answering questions, candidates must fill in the class, name, examination room, seat number and admission ticket number in the designated area of the answer sheet and check the barcode information;
3. All answers must be written on the answer sheet, and they are invalid on the test sheet.
Part 1 Information technology
. Multiple choice questions
1. The average normal body temperature of the human body is between 36-37℃. Xiaogang's body temperature is measured in the morning and "36.3℃" and the afternoon temperature is measured in the morning and "36.8℃".
021 academic achievement test for the first semester of the academic year
Advanced first grade technical test paper
College candidate's instructions:
. This test paper is divided into two parts: the first part is information technology and the second part is general technology. The full score is 100 points, the exam time is 90 minutes;
. Before answering questions, candidates must fill in the class, name, examination room, seat number and admission ticket number in the designated area of the answer sheet and check the barcode information;
3. All answers must be written on the answer sheet, and they are invalid on the test sheet.
Part 1 Information technology
. Multiple choice questions
1. The average normal body temperature of the human body is between 36-37℃. Xiaogang's body temperature is measured in the morning and "36.3℃" and the afternoon temperature is measured in the morning and "36.8℃".Based on the above examples, the correct statement is ( )
A. If the numbers "36.3" are written separately on paper, it has been given a certain meaning
B. Xiaogang's body temperature measured twice shows different data, which reflects the authenticity of the information
C. "The normal body temperature of the human body is between 36-37℃ on average" reflects the wisdom of human beings
D.
The thermometer shows
36.3℃ to represent Xiaogang's body temperature information, indicating that the representation of the information must be attached to a certain carrier
2. Various QR codes can be seen everywhere in real life. The following statement about QR codes is wrong ( )
A. Compared with barcodes, the QR code has a larger information storage capacity
B. Scan the QR code to link to the computer virus
C. The QR code produced can be shared with others
D. The QR code will be available for use after the QR code is generated and will not be invalid
3. Regarding big data, the following statement is incorrect ( )
A. The large size of big data not only refers to the large amount of information, but also includes the characteristics of generating
B fast speed and variety
B. The source of big data can be artificially generated or automatically generated by machines. In big data, each data has a very high value and cannot be processed at will. While big data brings convenience to life, it also brings security risks
4. In the information society, data security is related to the national economy and people's livelihood. Various protection means are needed for data security. The following technical means do not belong to the active protection of storage media ( )
A. Data proofreading B. Disk array C. Data backup D. Disaster recovery in other places
5. Use UltraEdit software to view some interfaces of the inner code as shown in the figure below. The correct statement is ( )
A. There are 10 ASCII characters in the figure
B. The inner code of "!" in hexadecimal is expressed as 20 21
C. The inner code of lowercase letter "m" is expressed as binary as 01101101
D. The inner code of the uppercase letter "J" is expressed as 50
6. Among the following four numbers, the largest is ( )
A. 11101B B. 40H C. 56D D. 3AH
7. Part of the flow chart of a certain algorithm is shown in the figure. If the value of m is 6, after executing this part of the process, the values of s and i are ( )
A. 2, 4 B. 0, 4 C. 6, 4 D. 4, 6
8. The value of Python expression round(3.1415, 3)+abs(-3)+9//2 is ( )
A
10.142 B. 10.642
C. 10.141 D. 10
9. Knowing that s='zhejian', then the value of s[1:5:2]+s[-1:-7:-2] is ( )
A. 'zeeni' B. 'zenie'
C. 'hjeni' D. 'hjnie'
10. In Python, run the following program, the correct result is ( )
s=0
for i in range(1,6,2):
s=s+i
print("i=",i,"s=",s)
A. i=5 s=15 B. i=5 s=9 C. i=7 s=9 D. i=6 s=21
11. There is the following Python program block:
a=[3,4,2,5,6,7,7,1,2]
m,c,i=1,1,1
while ilen(a):
if a[i]=a[i-1]:
c+=1
m=max(m,c)
else:
c=1
i+=1
print(c,m)
Then after the program is executed, the values of c and m are ( )
A. 1 and 5 B. 1 and 4 C. 2 and 5 D. 2 and 4
12. There is the following Python program block:
import random
a=[1
0,0,0,0]
for i in range(1
5):
a[i]=random.randint(1,9)
if a[i]%2==1:
a[i]=a[i]+a[i-1]
elif i%2 ==0:
a[i]=a[i]//2
After executing the program, the impossible elements of the list a list is ( )
A. 1,4,2,4,15 B. 1,8,3,2,5
C. 1,2,11,8,2 D. 1,8,15,6,4
2. Non-multiple-choice questions
13. Images are the material reproduction of human visual perception. With the development of digital acquisition technology and signal processing theory, more and more images are stored in digital form. Please answer the following questions based on relevant knowledge:
(1) Converting an analog signal into a digital signal generally requires three steps: _________, _________, and encoding.
(2) Digital images include vector graphics and _____________.
(3) Digital images are stored in the computer in the form of files. The following one that does not belong to the image file is __________.
(optional, fill in letters, A. Image.bmp B. Image.jpg C. Image.wmv)
(4) The following figure is the parameter interface of a certain image file, and the storage capacity of the image file is _________ MB.
14. " Grandson Calculation of the Sutra " records an interesting question: There are pheasants and rabbits in the same cage, with thirty-five heads on top and ninety-four legs on the bottom. What are the pheasants and rabbits on the bottom? The meaning of these four sentences is: There are several chickens and rabbits in the same cage, with 35 heads from the top and 94 feet from the bottom. How many chickens and rabbits are there in the cage? Xiao Ming tries to solve the above problems with flowcharts and Python programs. The flowcharts and program segments are shown below. Please answer the following questions:
(1) According to the question, complete the blanks in the flowchart ① and ②.
(2) According to the question, and complete the blanks in the program with the flow chart.
_________________________
______________________
for i in range(1,_______):
j=35-i
k=j*4+i*2
If___________:
print("Chicken has"+str(i)+" and rabbit has"+str(j)+")
15. There are many different names for the same number in the kingdom of mathematics, such as odd numbers, even numbers, prime numbers, palindrome numbers, etc. palindrome number refers to a number where both forward reading and reverse reading are the same, such as 12321 is palindrome number. If a number itself is a palindrome number, its square is also a palindrome number, such a number is called a square palindrome number. For example, 11 is a palindrome number, 112=121 is also a palindrome number, and 11 is a square palindrome number. Please find all square palindrome numbers within 100 to 1000. According to Figures 1 and 2 of this question, the Python program and flowchart that implement the above functions are as follows. Please fill in the appropriate code at the marking.
def hw(n):
s=[]
while n0:
s.append(n%10)
_________
flag=True
j=0
while_________________________ and flag:
if s[j]!=_______:
flag=False
j+=1
return flag
for i in range(100,1000):
if_____________:
print(i)
16. Enter a positive integer and output the maximum integer after deleting k numbers. For example: 28634, the maximum integer after deleting 2 of the numbers is 864. Write Python programs to implement the above functions. Please answer the following questions:
(1) has a positive integer 3978942. The maximum integer after deleting 3 of the numbers is _____________.
(2) The Python program that implements the above functions is as follows, please fill in the appropriate code at the marking. _________________________.
(3) There is an error in the code adding the box in the program, please correct it. _______________________________
s=input("Please enter a positive integer:")
k=int(input("Delete several numbers:"))
whilek0:
i=0
while
if i==len(s)-1: #If the data on each bit of this number is in descending order, delete the last K bit
if k0:
k=0
else:
if i==0:
s=s[1:] #If the first number is less than the second number, delete the first number
else:
k-=1
print(s)
(2) Digital images include vector graphics and _____________.
(3) Digital images are stored in the computer in the form of files. The following one that does not belong to the image file is __________.
(optional, fill in letters, A. Image.bmp B. Image.jpg C. Image.wmv)
(4) The following figure is the parameter interface of a certain image file, and the storage capacity of the image file is _________ MB.
14. " Grandson Calculation of the Sutra " records an interesting question: There are pheasants and rabbits in the same cage, with thirty-five heads on top and ninety-four legs on the bottom. What are the pheasants and rabbits on the bottom? The meaning of these four sentences is: There are several chickens and rabbits in the same cage, with 35 heads from the top and 94 feet from the bottom. How many chickens and rabbits are there in the cage? Xiao Ming tries to solve the above problems with flowcharts and Python programs. The flowcharts and program segments are shown below. Please answer the following questions:
(1) According to the question, complete the blanks in the flowchart ① and ②.
(2) According to the question, and complete the blanks in the program with the flow chart.
_________________________
______________________
for i in range(1,_______):
j=35-i
k=j*4+i*2
If___________:
print("Chicken has"+str(i)+" and rabbit has"+str(j)+")
15. There are many different names for the same number in the kingdom of mathematics, such as odd numbers, even numbers, prime numbers, palindrome numbers, etc. palindrome number refers to a number where both forward reading and reverse reading are the same, such as 12321 is palindrome number. If a number itself is a palindrome number, its square is also a palindrome number, such a number is called a square palindrome number. For example, 11 is a palindrome number, 112=121 is also a palindrome number, and 11 is a square palindrome number. Please find all square palindrome numbers within 100 to 1000. According to Figures 1 and 2 of this question, the Python program and flowchart that implement the above functions are as follows. Please fill in the appropriate code at the marking.
def hw(n):
s=[]
while n0:
s.append(n%10)
_________
flag=True
j=0
while_________________________ and flag:
if s[j]!=_______:
flag=False
j+=1
return flag
for i in range(100,1000):
if_____________:
print(i)
16. Enter a positive integer and output the maximum integer after deleting k numbers. For example: 28634, the maximum integer after deleting 2 of the numbers is 864. Write Python programs to implement the above functions. Please answer the following questions:
(1) has a positive integer 3978942. The maximum integer after deleting 3 of the numbers is _____________.
(2) The Python program that implements the above functions is as follows, please fill in the appropriate code at the marking. _________________________.
(3) There is an error in the code adding the box in the program, please correct it. _______________________________
s=input("Please enter a positive integer:")
k=int(input("Delete several numbers:"))
whilek0:
i=0
while
if i==len(s)-1: #If the data on each bit of this number is in descending order, delete the last K bit
if k0:
k=0
else:
if i==0:
s=s[1:] #If the first number is less than the second number, delete the first number
else:
k-=1
print(s)