0 of 12 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 12 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
ข้อ 1 ข้อใดต่อไปนี้ไม่ใช้ลักษณะของ Google Colab
ข้อ 2 จงหาผลลัพธ์ของคำสั่งต่อไปนี้
>>> int(1.6)
ข้อ 3 จงหาผลลัพธ์ของคำสั่งต่อไปนี้
>>> my_string = ‘Hello’
>>> print(my_string.upper())
ข้อ 4 จงหาผลลัพธ์ของคำสั่งต่อไปนี้
>>> x = 5
>>> y = 10
>>> if x > y:
… temp = x
… x = y
… y = x
… else:
… temp = x
… x = y
… y = temp
>>> print(f’x is {x}, y is {y}’)
ข้อ 5 จากโปรแกรมต่อไปนี้ข้อใดกล่าวไม่ถูกต้อง
animals = [‘cat’,’dog’,’bird’,’fish’,’pig’]
if ‘dog’ in animals:
print(‘woof woof’)
else:
print(‘oh no’)
ข้อ 6 จงหาผลลัพธ์ของคำสั่งต่อไปนี้
nums = [1,2,3,4,5,6,7,8,9,10]
x = 0
res = []
while (x < 10):
if nums[x]%2 == 0:
res.append(nums[x])
x = x+1
print(res)
ข้อ 7 จงเติมส่วนของโปรแกรมต่อไปนี้ เพื่อแสดงข้อมูลคะแนนที่น้อยกว่า 70
scores = [65,60,83,78,95,70]
result = filter (………………, scores)
print(list(result))
ข้อ 8 หากต้องการสร้าง ndarray ของตัวเลขสุ่มที่มีค่าตั้งแต่ 0.0 ถึง 1.1 จำนวน 3 แถว 5 คอลัมน์ต้องเขียนคำสั่งอย่างไร
ข้อ 9 ข้อใดกล่าวถูกต้องเกี่ยวกับคำสั่ง
fig = plt.figure(figsize =(10,7))
ข้อ 10 คำสั่ง df.head(3) หมายความว่าอย่างไร
ข้อ 11 กำหนด DataFrame ให้ดังนี้
data = {‘Name’:[‘Tom’,’Jack’,’Steve’,’James’],
‘Height’:[183,178,172,180],
‘Weight’:[68,70,70,75]}
idx = [‘s1′,’s2′,’s3′,’s4’]
df = pd.DataFrame(data,index=idx)
จงเขียนคำสั่งในการปรับปรุงค่าน้ำหนักของ Steve จาก 70 กิโลกรัมเป็น 75 กิโลกรัมในดาต้าเฟรม
ข้อ 12 คำสั่งใดต่อไปนี้เป็นคำสั่งที่ใช้ตรวจสอบว่ามีข้อมูลในแนวแถวซ้ำกันหรือไม่