index int64 1 3M | answer stringclasses 4
values | category stringclasses 20
values | image stringlengths 1 109k | source stringclasses 565
values | l2-category stringclasses 6
values | comment stringclasses 176
values | split stringclasses 1
value | hint stringclasses 263
values | question stringlengths 10 291 | A stringlengths 1 463 | B stringlengths 1 462 | C stringlengths 1 463 ⌀ | D stringlengths 1 460 ⌀ |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1,001,639 | B | structuralized_imagetext_understanding | 1639 | https://www.w3schools.com/python/trypython.asp?filename=demo_for_string | logic_reasoning | null | dev | null | โค้ด Python ใดที่จะสร้างผลลัพธ์ตามที่แสดงในภาพ? | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x) | for x in "banana":
print(x) | fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "banana":
break | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
break
print(x) |
1,001,642 | A | structuralized_imagetext_understanding | 1642 | https://www.w3schools.com/python/trypython.asp?filename=demo_for_continue | logic_reasoning | null | dev | null | โค้ด Python ใดที่จะสร้างผลลัพธ์ตามที่แสดงในภาพ? | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x) | for x in "banana":
print(x) | fruits = ["apple", "banana", "cherry"]
for x in fruits:
print(x)
if x == "banana":
break | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
break
print(x) |
1,001,643 | B | structuralized_imagetext_understanding | 1643 | https://www.w3schools.com/python/trypython.asp?filename=demo_for_continue | logic_reasoning | null | dev | null | โค้ด Python ใดจะสร้างผลลัพธ์ตามที่แสดงในรูปภาพ | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("John", 36)
del p1.age
print(p1.age) | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x) | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __str__(self):
return f"{self.name}({self.age})"
p1 = Person("John", 36)
print(p1) | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("John", 36)
p1.myfunc() |
1,001,645 | D | structuralized_imagetext_understanding | 1645 | https://www.w3schools.com/python/trypython.asp?filename=demo_class4 | logic_reasoning | null | dev | null | โค้ด Python ใดที่จะสร้างผลลัพธ์ตามที่แสดงในภาพ? | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("John", 36)
del p1.age
print(p3.age) | fruits = ["apple", "banana", "cherry"]
for x in fruits:
if x == "banana":
continue
print(x) | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def __str__(self):
return f"{self.name}({self.age})"
p1 = Person("John", 36)
print(p3) | class Person:
def __init__(self, name, age):
self.name = name
self.age = age
def myfunc(self):
print("Hello my name is " + self.name)
p1 = Person("John", 36)
p3.myfunc() |
1,001,647 | B | structuralized_imagetext_understanding | 1647 | https://www.w3schools.com/js/tryit.asp?filename=tryjs_function_return | logic_reasoning | null | dev | null | โค้ดใดจะสร้างหน้าเว็บเพจนี้ในเบราว์เซอร์? | <!DOCTYPE html>
<html>
<body>
<h1>ฟังก์ชัน JavaScript</h1>
<p>การใช้ฟังก์ชันเป็นตัวแปร:</p>
<p id="demo"></p>
<script>
let text = "อุณหภูมิคือ " + toCelsius(77) + " องศาเซลเซียส.";
document.getElementById("demo").innerHTML = text;
function toCelsius(fahrenheit) {
return (5/9) * (fahrenheit-32);
}
</script>
</body... | <!DOCTYPE html>
<html>
<body>
<h1>ฟังก์ชัน JavaScript</h1>
<p>เรียกใช้ฟังก์ชันที่ทำการคำนวณและส่งกลับผลลัพธ์:</p>
<p id="demo"></p>
<script>
let x = myFunction(4, 3);
document.getElementById("demo").innerHTML = x;
function myFunction(a, b) {
return a * b;
}
</script>
</body>
</html> | <!DOCTYPE html>
<html>
<body>
<h1>ฟังก์ชัน JavaScript</h1>
<p>เรียกใช้ (call) ฟังก์ชันที่แปลงจากฟาเรนไฮต์เป็นเซลเซียส:</p>
<p id="demo"></p>
<script>
function toCelsius(f) {
return (5/9) * (f-32);
}
let value = toCelsius(77);
document.getElementById("demo").innerHTML = value;
</script>
</body>
</html> | <!DOCTYPE html>
<html>
<body>
<h1>ฟังก์ชัน JavaScript</h1>
<p>เรียกใช้ (call) ฟังก์ชันเพื่อแปลงจากฟาเรนไฮต์เป็นเซลเซียส:</p>
<p id="demo"></p>
<script>
function toCelsius(f) {
return (5/9) * (f-32);
}
let value = toCelsius();
document.getElementById("demo").innerHTML = value;
</script>
</body>
</html> |
1,001,651 | B | structuralized_imagetext_understanding | 1651 | https://www.w3schools.com/js/tryit.asp?filename=tryjs_objects_create_2 | logic_reasoning | null | dev | null | โค้ดใดที่จะสร้างหน้าเว็บเพจนี้ในเบราว์เซอร์? | <!DOCTYPE html>
<html>
<body>
<h2>ออบเจ็กต์ JavaScript</h2>
<p>หากคุณเข้าถึงเมธอดของออบเจ็กต์โดยไม่มี (), มันจะคืนค่าคำจำกัดความของฟังก์ชัน:</p>
<p id="demo"></p>
<script>
// สร้างออบเจ็กต์:
const person = {
firstName: "John",
lastName : "Doe",
id : 5566,
fullName : function() {
return this.firstName + " " + this.l... | <!DOCTYPE html>
<html>
<body>
<h2>ออบเจ็กต์ JavaScript</h2>
<p id="demo"></p>
<script>
// สร้างออบเจ็กต์:
const person = {
firstName: "John",
lastName: "Doe",
age: 50,
eyeColor: "blue"
};
// แสดงข้อมูลบางส่วนจากออบเจ็กต์:
document.getElementById("demo").innerHTML =
person.firstName + " is " + person.age + " years o... | <!DOCTYPE html>
<html>
<body>
<h2>ออบเจ็กต์ JavaScript</h2>
<p>มีสองวิธีที่แตกต่างกันในการเข้าถึงคุณสมบัติของออบเจ็กต์</p>
<p>คุณสามารถใช้ person.property หรือ person["property"].</p>
<p id="demo"></p>
<script>
// สร้างออบเจ็กต์:
const person = {
firstName: "John",
lastName : "Doe",
id : 5566
};
// แสดงข้อมูลบางส... | <!DOCTYPE html>
<html>
<body>
<h2>ออบเจ็กต์ JavaScript</h2>
<p>เมธอดของออบเจ็กต์คือคำจำกัดความของฟังก์ชันที่เก็บไว้เป็นค่าคุณสมบัติ</p>
<p id="demo"></p>
<script>
// สร้างออบเจ็กต์:
const person = {
firstName: "John",
lastName: "Doe",
id: 5566,
fullName: function() {
return this.firstName + " " + this.lastName;
}
};... |
1,001,653 | D | structuralized_imagetext_understanding | 1653 | https://www.w3schools.com/js/tryit.asp?filename=tryjs_objects_method | logic_reasoning | null | dev | null | โค้ดใดจะสร้างหน้าเว็บเพจนี้ในเบราว์เซอร์? | <!DOCTYPE html>
<html>
<body>
<h2>อ็อบเจ็กต์ JavaScript</h2>
<p>หากคุณเข้าถึงเมธอดของอ็อบเจ็กต์โดยไม่ใช้ (), มันจะคืนค่าคำจำกัดความของฟังก์ชัน:</p>
<p id="demo"></p>
<script>
// สร้างอ็อบเจ็กต์:
const person = {
firstName: "John",
lastName : "Doe",
id : 5568,
fullName : function() {
return this.firstName + " " + th... | <!DOCTYPE html>
<html>
<body>
<h2>อ็อบเจ็กต์ JavaScript</h2>
<p id="demo"></p>
<script>
// สร้างอ็อบเจ็กต์:
const person = {
firstName: "John",
lastName: "Doe",
age: 52,
eyeColor: "blue"
};
// แสดงข้อมูลบางส่วนจากอ็อบเจ็กต์:
document.getElementById("demo").innerHTML =
person.firstName + " is " + person.age + " year... | <!DOCTYPE html>
<html>
<body>
<h2>อ็อบเจ็กต์ JavaScript</h2>
<p>มีสองวิธีที่แตกต่างกันในการเข้าถึงคุณสมบัติของอ็อบเจ็กต์</p>
<p>คุณสามารถใช้ person.property หรือ person["property"] ได้</p>
<p id="demo"></p>
<script>
// สร้างอ็อบเจ็กต์:
const person = {
firstName: "John",
lastName : "Doe",
id : 5568
};
// แสดงข้อม... | <!DOCTYPE html>
<html>
<body>
<h2>อ็อบเจ็กต์ JavaScript</h2>
<p>เมธอดของอ็อบเจ็กต์คือคำจำกัดความของฟังก์ชันที่เก็บไว้ในค่าคุณสมบัติ</p>
<p id="demo"></p>
<script>
// สร้างอ็อบเจ็กต์:
const person = {
firstName: "John",
lastName: "Doe",
id: 5568,
fullName: function() {
return this.firstName + " " + this.lastName;
}
}... |
1,001,655 | A | structuralized_imagetext_understanding | 1655 | https://zhuanlan.zhihu.com/p/374461054 | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | def list_to_dictionary(keys, values):
return dict(zip(keys, values))
list1 = [1, 2, 3]
list2 = ['one', 'two', 'three']
print(list_to_dictionary(list1, list2)) | def list_to_dictionary(keys, values):
return dict(zip(keys, values))
list1 = [0, 2, 3]
list2 = ['one', 'two', 'three']
print(list_to_dictionary(list1, list2)) | def list_to_dictionary(keys, values):
return dict(zip(keys, values))
list1 = [1, 4, 3]
list2 = ['one', 'two', 'three']
print(list_to_dictionary(list1, list2)) | def list_to_dictionary(keys, values):
return dict(zip(keys, values))
list1 = [1, 2, 4]
list2 = ['one', 'two', 'three']
print(list_to_dictionary(list1, list2)) |
1,001,656 | C | structuralized_imagetext_understanding | 1656 | https://zhuanlan.zhihu.com/p/374461055 | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | a, b = 1,2
try:
print(a/b)
except ZeroDivisionError:
print("Can not divide by zero")
finally:
print("Executing finally block") | a, b = 1,1
try:
print(a/b)
except ZeroDivisionError:
print("Can not divide by zero")
finally:
print("Executing finally block") | a, b = 1,0
try:
print(a/b)
except ZeroDivisionError:
print("Can not divide by zero")
finally:
print("Executing finally block") | a, b = 1,0
try:
print(a/b)
except ZeroDivisionError:
print("Can not divide by zero")
finally:
print("block") |
1,001,657 | B | structuralized_imagetext_understanding | 1657 | https://zhuanlan.zhihu.com/p/374461056 | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | list = ["world", "Ok", "Bye!"]
combined_string = " ".join(list)
print(combined_string) | list = ["Hello", "world", "Ok", "Bye!"]
combined_string = " ".join(list)
print(combined_string) | list = ["Hello", "world", "Ok"]
combined_string = " ".join(list)
print(combined_string) | list = ["Hello", "world", "Bye!"]
combined_string = " ".join(list)
print(combined_string) |
1,001,658 | D | structuralized_imagetext_understanding | 1658 | https://zhuanlan.zhihu.com/p/374461057 | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | from collections import Counter
result = Counter('apple')
print(result) | from collections import Counter
result = Counter('Canada')
print(result) | from collections import Counter
result = Counter('strawberry')
print(result) | from collections import Counter
result = Counter('banana')
print(result) |
1,001,659 | C | structuralized_imagetext_understanding | 1659 | https://www.runoob.com/python/python-while-loop.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | count = 0
while (count < 9):
print 'The count is:', count
count = count + 2
print "Good bye!" | count = 0
while (count < 10):
print 'The count is:', count
count = count + 1
print "Good bye!" | count = 0
while (count < 9):
print 'The count is:', count
count = count + 1
print "Good bye!" | count = 1
while (count < 9):
print 'The count is:', count
count = count + 1
print "Good bye!" |
1,001,660 | C | structuralized_imagetext_understanding | 1660 | https://www.runoob.com/python/python-while-loop.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | count = 0
while count < 5:
print count, " is less than 5"
count = count + 2
else:
print count, " is not less than 5" | count = 1
while count < 5:
print count, " is less than 5"
count = count + 1
else:
print count, " is not less than 5" | count = 0
while count < 5:
print count, " is less than 5"
count = count + 1
else:
print count, " is not less than 5" | count = 0
while count < 5:
print count, " is less than 5"
count = count + 1
else:
print count, " is not less than 6" |
1,001,662 | B | structuralized_imagetext_understanding | 1662 | https://www.runoob.com/python/python-lists.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | list = []
list.append('Runoob')
list.append('Google')
print list | list = []
list.append('Google')
list.append('Runoob')
print list | list = []
list.append(’Baidu')
list.append('Runoob')
print list | list = []
list.append(’Microsoft')
list.append('Runoob')
print list |
1,001,663 | D | structuralized_imagetext_understanding | 1663 | https://www.runoob.com/python/python-lists.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | list1 = ['physics', 'chemistry', 1997, 2000]
print list1
del list1[4]
print "After deleting value at index 2 : "
print list1 | list1 = ['physics', 'chemistry', 1997, 2000]
print list1
del list1[3]
print "After deleting value at index 2 : "
print list1 | list1 = ['physics', 'chemistry', 1998, 2000]
print list1
del list1[2]
print "After deleting value at index 2 : "
print list1 | list1 = ['physics', 'chemistry', 1997, 2000]
print list1
del list1[2]
print "After deleting value at index 2 : "
print list1 |
1,001,664 | B | structuralized_imagetext_understanding | 1664 | https://www.runoob.com/python/python-tuples.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | tup1 = ('physics', 'chemistry', 1990, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print "tup1[0]: ", tup1[0]
print "tup2[2:5]: ", tup2[1:5] | tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print "tup1[0]: ", tup1[0]
print "tup2[1:5]: ", tup2[1:5] | tup1 = ('physics', 'chemistry', 1997, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print "tup1[0]: ", tup1[0]
print "tup2[1:5]: ", tup2[2:5] | tup1 = ('physics', 'chemistry', 1990, 2000)
tup2 = (1, 2, 3, 4, 5, 6, 7 )
print "tup1[0]: ", tup1[0]
print "tup2[1:5]: ", tup2[1:5] |
1,001,665 | D | structuralized_imagetext_understanding | 1665 | https://www.runoob.com/python/python-variable-types.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | counter = 110
miles = 1000.0
name = "John"
print counter
print miles
print name | counter = 100
miles = 1001.0
name = "John"
print counter
print miles
print name | counter = 100
miles = 1000.0
name = "Gary"
print counter
print miles
print name | counter = 100
miles = 1000.0
name = "John"
print counter
print miles
print name |
1,001,666 | B | structuralized_imagetext_understanding | 1666 | https://www.runoob.com/python/python-variable-types.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | print str
print str[0]
print str[2:5]
print str[3:]
print str * 2
print str + "TEST" | print str
print str[0]
print str[2:5]
print str[2:]
print str * 2
print str + "TEST" | print str
print str[1]
print str[2:5]
print str[2:]
print str * 2
print str + "TEST" | print str
print str[0]
print str[1:5]
print str[2:]
print str * 2
print str + "TEST" |
1,001,667 | A | structuralized_imagetext_understanding | 1667 | https://www.runoob.com/python/python-variable-types.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | list = [ 'runoob', 786 , 2.23, 'john', 70.2 ]
tinylist = [123, 'john']
print list
print list[0]
print list[1:3]
print list[2:]
print tinylist * 2
print list + tinylist | list = [ 'runoob', 786 , 2.23, 'john', 70.2 ]
tinylist = [123, 'john']
print list
print list[1]
print list[1:3]
print list[2:]
print tinylist * 2
print list + tinylist | list = [ 'runoob', 786 , 2.23, 'john', 70.2 ]
tinylist = [124, 'john']
print list
print list[0]
print list[1:3]
print list[2:]
print tinylist * 2
print list + tinylist | list = [ 'runoob', 787 , 2.23, 'john', 70.2 ]
tinylist = [123, 'john']
print list
print list[0]
print list[1:3]
print list[2:]
print tinylist * 2
print list + tinylist |
1,001,668 | B | structuralized_imagetext_understanding | 1668 | https://www.runoob.com/python/python-variable-types.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'runoob','code':6734, 'dept': 'cost'}
print dict['one']
print dict[2]
print tinydict
print tinydict.keys()
print tinydict.values() | dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'runoob','code':6734, 'dept': 'sales'}
print dict['one']
print dict[2]
print tinydict
print tinydict.keys()
print tinydict.values() | dict = {}
dict['one'] = "This is TWO"
dict[2] = "This is two"
tinydict = {'name': 'runoob','code':6734, 'dept': 'sales'}
print dict['one']
print dict[2]
print tinydict
print tinydict.keys()
print tinydict.values() | dict = {}
dict['one'] = "This is one"
dict[2] = "This is two"
tinydict = {'name': 'runoob','code':6735, 'dept': 'sales'}
print dict['one']
print dict[2]
print tinydict
print tinydict.keys()
print tinydict.values() |
1,001,669 | B | structuralized_imagetext_understanding | 1669 | https://www.runoob.com/python/python-reg-expressions.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | import re
print(re.match('www', 'www.runoob.com'))
print(re.match('com', 'www.runoob.com')) | import re
print(re.match('www', 'www.runoob.com').span())
print(re.match('com', 'www.runoob.com')) | import re
print(re.match('www', 'www.runoob.com').span())
print(re.match('cn', 'www.runoob.com')) | import re
print(re.match('http', 'www.runoob.com').span())
print(re.match('com', 'www.runoob.com')) |
1,001,670 | C | structuralized_imagetext_understanding | 1670 | https://www.runoob.com/python/python-reg-expressions.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | import re
line = "Cats are smarter than pigs"
matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(3)
else:
print "No match!!" | import re
line = "Cats are smarter than dogs"
matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(2)
else:
print "No match" | import re
line = "Cats are smarter than dogs"
matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(2)
else:
print "No match!!" | import re
line = "Cats are smarter than pigs"
matchObj = re.match( r'(.*) are (.*?) .*', line, re.M|re.I)
if matchObj:
print "matchObj.group() : ", matchObj.group()
print "matchObj.group(1) : ", matchObj.group(1)
print "matchObj.group(2) : ", matchObj.group(2)
else:
print "No match!!" |
1,001,671 | B | structuralized_imagetext_understanding | 1671 | https://www.runoob.com/python/python-reg-expressions.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | import re
def double(matched):
value = int(matched.group('value'))
return str(value * 2)
s = 'B23G4HFD567'
print(re.sub('(?P<value>\d+)', double, s)) | import re
def double(matched):
value = int(matched.group('value'))
return str(value * 2)
s = 'A23G4HFD567'
print(re.sub('(?P<value>\d+)', double, s)) | import re
def double(matched):
value = int(matched.group('value'))
return str(value * 3)
s = 'A23G4HFD567'
print(re.sub('(?P<value>\d+)', double, s)) | import re
def double(matched):
value = int(matched.group('value'))
return str(value * 2)
s = 'A23G4HFD568'
print(re.sub('(?P<value>\d+)', double, s)) |
1,001,672 | B | structuralized_imagetext_understanding | 1672 | https://www.runoob.com/python/python-reg-expressions.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | import re
result = re.match(r'(\w+)=(\d+)', 'set width=20 and height=10')
print(result) | import re
result = re.findall(r'(\w+)=(\d+)', 'set width=20 and height=10')
print(result) | import re
result = re.findall(r'(\w+)=(\d+)', 'set width=30 and height=10')
print(result) | import re
result = re.findall(r'(\w+)=(\d+)', 'set width=20 and height=15')
print(result) |
1,001,674 | B | structuralized_imagetext_understanding | 1674 | https://www.runoob.com/python/python-modules.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | import math
content = locals(math)
print content | import math
content = dir(math)
print content | import re
content = dir(math)
print content | import numpy
content = dir(math)
print content |
1,001,675 | A | structuralized_imagetext_understanding | 1675 | https://www.runoob.com/python/python-if-statement.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | flag = False
name = 'luren'
if name == 'python':
flag = True
print 'welcome boss'
else:
print name | flag = False
name = 'lumen'
if name == 'python':
flag = True
print 'welcome boss'
else:
print name | flag = False
name = 'luren'
if name == 'python':
flag = True
print 'welcome boss'
else:
print 'nothing' | flag = False
name = 'lemon'
if name == 'python':
flag = True
print 'welcome boss'
else:
print name |
1,001,676 | B | structuralized_imagetext_understanding | 1676 | https://www.runoob.com/python/python-strings.html | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | print "My name is %s and weight is %d kg!" % ('Laura', 21) | print "My name is %s and weight is %d kg!" % ('Zara', 21) | print "My name is %s and weight is %d kg!" % ('Zara', 11) | print "My name is %s and weight is %d g!" % ('Zara', 21) |
1,001,677 | B | structuralized_imagetext_understanding | 1677 | https://www.runoob.com/python/python-functions.html | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | def printinfo( name, age = 30 ):
print "Name: ", name
print "Age ", age
return
printinfo( age=50, name="miki" )
printinfo( name="miki" ) | def printinfo( name, age = 35 ):
print "Name: ", name
print "Age ", age
return
printinfo( age=50, name="miki" )
printinfo( name="miki" ) | def printinfo( name, age = 35 ):
print "Name: ", name
print "Age ", age
return
printinfo( age=52, name="miki" )
printinfo( name="miki" ) | def printinfo( name, age = 33 ):
print "Name: ", name
print "Age ", age
return
printinfo( age=52, name="miki" )
printinfo( name="miki" ) |
1,001,679 | C | structuralized_imagetext_understanding | 1679 | https://zhuanlan.zhihu.com/p/374461054 | logic_reasoning | null | dev | null | รหัส Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | n = 2
string = "Hello!"
print(string * n) | n = 6
string = "Hello!"
print(string * n) | n = 5
string = "Hello!"
print(string * n) | n = 7
string = "Hello!"
print(string * n) |
1,001,680 | B | structuralized_imagetext_understanding | 1680 | https://zhuanlan.zhihu.com/p/374461054 | logic_reasoning | null | dev | null | โค้ด Python ใดที่สามารถสร้างเนื้อหาของรูปภาพได้? | def get_vowels(string):
return [vowel for vowel in string if vowel in 'aeiou']
print("Vowels are:", get_vowels('string')) | def get_vowels(string):
return [vowel for vowel in string if vowel in 'aeiou']
print("Vowels are:", get_vowels('This is some random string')) | def get_vowels(string):
return [vowel for vowel in string if vowel in 'weiou']
print("Vowels are:", get_vowels('This is some random string')) | def get_vowels(string):
return [vowel for vowel in string if vowel in 'aeiou']
print("Vowels are:", get_vowels('This is a string')) |
1,001,681 | B | function_reasoning | 1681 | https://www.bing.com/images/search?view=detailV2&ccid=syRfm578&id=1FB2B9C4B244F3017FA1E78FF8A7DF44BEEF4D95&thid=OIP.syRfm578FmkuM7vV0rS-7wHaHa&mediaurl=https%3A%2F%2Fcbu01.alicdn.com%2Fimg%2Fibank%2F2017%2F605%2F072%2F3789270506_1814447136.jpg&exph=750&expw=750&q=%e8%8f%9c%e5%88%80&simid=608003787194595660&form=IRPRST&... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของสิ่งของที่แสดงคืออะไร? | ต้มน้ำ | หั่นผัก | คน | การกรองน้ำ |
1,001,683 | D | function_reasoning | 1683 | https://www.bing.com/images/search?view=detailV2&ccid=9u7%2bRhF2&id=3C3E7AF0FCEC29647C847CF19F54AE4FB2EEAF21&thid=OIP.9u7-RhF2tbbxJQ3ubBlFzgHaGV&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.f6eefe461176b5b6f1250dee6c1945ce%3frik%3dIa%252fusk%252buVJ%252fxfA%26riu%3dhttp%253a%252f%252fnweb.oppein.com%252fupfile%252f... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของสิ่งของที่แสดงคืออะไร? | ต้มน้ำ | หั่นผัก | คน | การกรองน้ำ |
1,001,684 | A | function_reasoning | 1684 | https://www.bing.com/images/search?view=detailV2&ccid=VVCJ2nRT&id=31F49F8101A794C21A0FA696431473E94BCA5538&thid=OIP.VVCJ2nRTQ5kIbozfnTwxbAHaHS&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.555089da74534399086e8cdf9d3c316c%3frik%3dOFXKS%252blzFEOWpg%26riu%3dhttp%253a%252f%252fimg1.gtimg.com%252fhn%252fpics%252fhv1%25... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของสิ่งของที่แสดงคืออะไร? | ต้มน้ำ | หั่นผัก | คน | การกรองน้ำ |
1,001,685 | B | function_reasoning | 1685 | https://www.bing.com/images/search?view=detailV2&ccid=32YzcWjq&id=C2EAF7A6EA25628799C0CD40FEAB81CFC708F692&thid=OIP.32YzcWjqdRmhuwE6c-QzfwHaHa&mediaurl=https%3a%2f%2fcbu01.alicdn.com%2fimg%2fibank%2f2017%2f167%2f394%2f4297493761_5932425.jpg&exph=1200&expw=1200&q=%e7%ac%94&simid=607988621687352864&FORM=IRPRST&ck=EE26542... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | คัดลอก | เขียน | คำนวณ | เชื่อมโยง |
1,001,688 | A | function_reasoning | 1688 | https://www.bing.com/images/search?view=detailV2&ccid=vj71s4pd&id=C3F0F5CA44238695DA63FE9A388E12758360DED4&thid=OIP.vj71s4pdaAOYqQ0b9I5YawHaHa&mediaurl=https%3a%2f%2fwww.citizen-systems.com.cn%2fproduct%2fcl_s700_2%2fimg%2fp-Img_01.jpg&exph=1200&expw=1200&q=%e6%89%93%e5%8d%b0%e6%9c%ba&simid=608032267116363672&FORM=IRPR... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | คัดลอก | เขียน | คำนวณ | เชื่อมโยง |
1,001,689 | B | function_reasoning | 1689 | https://www.bing.com/images/search?view=detailV2&ccid=Ze%2byXy6S&id=608255225D617F00479AC8E0CB39795374CC2C5B&thid=OIP.Ze-yXy6SjxxHAQtC36Eb8AHaHa&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.65efb25f2e928f1c47010b42dfa11bf0%3frik%3dWyzMdFN5OcvgyA%26riu%3dhttp%253a%252f%252fpic.ntimg.cn%252ffile%252f20190525%252f2228... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | การทำความเย็น | วาด | ตัด | ฝาก |
1,001,691 | D | function_reasoning | 1691 | https://www.bing.com/images/search?view=detailV2&ccid=UWT2Frvh&id=E3C6D7348E248416861754E687064D1A44F2F78F&thid=OIP.UWT2FrvhTgr4O7F1ohPZswHaHa&mediaurl=https%3a%2f%2fimg.zcool.cn%2fcommunity%2f01747e59e6df82a801202b0ca96099.png%401280w_1l_2o_100sh.png&exph=1280&expw=1280&q=%e4%bf%9d%e9%99%a9%e6%9f%9c&simid=608052079808... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | การทำความเย็น | วาด | ตัด | ฝาก |
1,001,693 | B | function_reasoning | 1693 | https://www.bing.com/images/search?view=detailV2&ccid=o9vk3ViG&id=8EC79F1BB1FB16171039344F2CF5676E863A58AA&thid=OIP.o9vk3ViGmEkdMAcYTgkVrQHaFj&mediaurl=https%3a%2f%2fassets.puxiang.com%2fuploads%2fphoto%2fimage%2f1796176%2fc81c6511fdfad1d0776af61fef00a50a.jpg&exph=4000&expw=5333&q=%e9%94%a4%e5%ad%90&simid=6079868865352... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | การยึด | ตี | ขันให้แน่น | ปรับ |
1,001,695 | D | function_reasoning | 1695 | https://www.bing.com/images/search?view=detailV2&ccid=O%2ffk%2bZ82&id=A6334680ABC077732B9735038E9807EF8A4DF3E1&thid=OIP.O_fk-Z82KZ7SKWEWPiPbtgHaHa&mediaurl=https%3a%2f%2fcbu01.alicdn.com%2fimg%2fibank%2f2018%2f143%2f213%2f9593312341_1275664342.jpg&exph=1920&expw=1920&q=%e6%89%b3%e6%89%8b&simid=608013188887816951&FORM=I... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | การยึด | ตี | ขันให้แน่น | ปรับ |
1,001,696 | A | function_reasoning | 1696 | https://www.bing.com/images/search?view=detailV2&ccid=sWVJodTc&id=29B48E75E5A68C2690788558B5D0E98910E6EA2C&thid=OIP.sWVJodTcY-1K1kwuKEqjuAHaHa&mediaurl=https%3A%2F%2Fth.bing.com%2Fth%2Fid%2FR.b16549a1d4dc63ed4ad64c2e284aa3b8%3Frik%3DLOrmEInp0LVYhQ%26riu%3Dhttp%253a%252f%252fpic.nipic.com%252f2008-06-13%252f200861313115... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | การยึด | ตี | ขันให้แน่น | ปรับ |
1,001,697 | B | function_reasoning | 1697 | https://www.bing.com/images/search?view=detailV2&ccid=Fmc4baLM&id=0DE893D79A5F6A0AD537E743BB55836E8A0BBC7F&thid=OIP.Fmc4baLMS-NNNelTgOrZWwHaHa&mediaurl=https%3a%2f%2f52gongju.net%2fwp-content%2fuploads%2f2020%2f03%2f15-1-2.jpg&exph=500&expw=500&q=%e9%94%af%e5%ad%90&simid=608029479712028204&FORM=IRPRST&ck=7A7952690ABF6C... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | กรีด | กลุ่มแบ่งแยกดินแดน | การยึด | เจาะ |
1,001,700 | D | function_reasoning | 1700 | https://www.bing.com/images/search?view=detailV2&ccid=bsRn1hDM&id=8982A9756C294CDB8E8EA3E4082CD53A48CC6F53&thid=OIP.bsRn1hDMteAWcpEnORECVwHaHa&mediaurl=https%3a%2f%2fimg68.foodjx.com%2f2%2f20190418%2f636911964734540219483.jpg&exph=800&expw=800&q=%e8%bd%ac%e5%ad%94%e6%9c%ba&simid=608053746258113617&FORM=IRPRST&ck=9EDA6F... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | กรีด | กลุ่มแบ่งแยกดินแดน | การยึด | เจาะ |
1,001,701 | B | function_reasoning | 1701 | https://www.bing.com/images/search?view=detailV2&ccid=L%2f5ji3FB&id=8B343276F2AD56051AF607A849BC67D64E5649BD&thid=OIP.L_5ji3FBOgi7ESC-q2H9ngHaHa&mediaurl=https%3a%2f%2fcbu01.alicdn.com%2fimg%2fibank%2f2016%2f105%2f704%2f3390407501_843517041.jpg&exph=800&expw=800&q=%e9%93%81%e9%94%b9&simid=608003409246247987&FORM=IRPRST... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | วัดระดับ | ขุด | ขนส่ง | เชื่อม |
1,001,702 | C | function_reasoning | 1702 | https://www.bing.com/images/search?view=detailV2&ccid=8g12w30r&id=C9A44683B65DDD507C3101A39D229E36D12A236C&thid=OIP.8g12w30rejHmTYKqIu8gcwHaF1&mediaurl=https%3a%2f%2fcbu01.alicdn.com%2fimg%2fibank%2f2018%2f134%2f661%2f9217166431_731987461.jpg&exph=1514&expw=1920&q=%e6%89%8b%e6%8e%a8%e8%bd%a6&simid=608040255756569487&FO... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | วัดระดับ | ขุด | ขนส่ง | เชื่อม |
1,001,703 | D | function_reasoning | 1703 | https://www.bing.com/images/search?view=detailV2&ccid=D%2f%2fgjCsj&id=EA76A0A9FCD9C032DEAED9569AB957F3A079CCE5&thid=OIP.D__gjCsjAvJ5CLYJskpUBwHaHa&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.0fffe08c2b2302f27908b609b24a5407%3frik%3d5cx5oPNXuZpW2Q%26riu%3dhttp%253a%252f%252fwww.hdwjc.com%252fup%252f2019-12-09%252f2... | attribute_reasoning | null | dev | null | วัตถุที่แสดงมีหน้าที่อะไร? | วัดระดับ | ขุด | ขนส่ง | เชื่อม |
1,001,706 | C | function_reasoning | 1706 | https://www.bing.com/images/search?view=detailV2&ccid=gS%2F601OH&id=6313295FA6CC76490D7C415FD47DE725FF0B18B6&thid=OIP.gS_601OH_FROnbg0aT89YwHaHa&mediaurl=https%3A%2F%2Fcbu01.alicdn.com%2Fimg%2Fibank%2F2018%2F496%2F942%2F9073249694_101079264.jpg&exph=1920&expw=1920&q=%e6%b8%a9%e5%ba%a6%e8%ae%a1&simid=608002253913859744&... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่สาธิตคืออะไร? | การแปรง | ตัดหญ้า | วัดอุณหภูมิ | ขัด |
1,001,707 | D | function_reasoning | 1707 | https://www.bing.com/images/search?view=detailV2&ccid=ujUjWiMO&id=EDACD913755C5F3D5A34CD8DE1E3AE76B12A0515&thid=OIP.ujUjWiMO_a9fqNjc_CLG-wHaFj&mediaurl=https%3a%2f%2fpic2.zhimg.com%2fv2-aa317d7c7e556dad41be6aecf45f0757_720w.jpg%3fsource%3d172ae18b&exph=480&expw=640&q=%e7%a0%82%e7%ba%b8&simid=607996764933463785&FORM=IRP... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่สาธิตคืออะไร? | การแปรง | ตัดหญ้า | วัดอุณหภูมิ | ขัด |
1,001,710 | C | function_reasoning | 1710 | https://www.bing.com/images/search?view=detailV2&ccid=KufavFs7&id=9F81FA020B6D3C446B7FAAD966704CF8F2D0924C&thid=OIP.KufavFs7iYWLZqpBif9FhgHaF-&mediaurl=https%3A%2F%2Fcbu01.alicdn.com%2Fimg%2Fibank%2F2016%2F925%2F110%2F3629011529_2054706452.jpg&exph=1550&expw=1920&q=%e5%8d%b7%e5%b0%ba&simid=608042837026289346&form=IRPRS... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | แท่นตัด | ทำความสะอาด | การวัด | การไถ |
1,001,711 | D | function_reasoning | 1711 | https://www.bing.com/images/search?view=detailV2&ccid=OE1UBVhR&id=0FC378CD43E25D93378DF0DEF447360A458377DC&thid=OIP.OE1UBVhR-y1LdvpvahAbVQHaE7&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.384d54055851fb2d4b76fa6f6a101b55%3frik%3d3HeDRQo2R%252fTe8A%26riu%3dhttp%253a%252f%252fimages.998jx.com%252f20170422%252f1492831... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | แท่นตัด | ทำความสะอาด | การวัด | การไถ |
1,001,712 | A | function_reasoning | 1712 | https://www.bing.com/images/search?q=%E7%82%92%E9%94%85&go=%E6%90%9C%E7%B4%A2&qs=ds&form=QBIDMH&first=1 | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | แท่นตัด | ทำความสะอาด | การวัด | การไถ |
1,001,713 | B | function_reasoning | 1713 | https://www.bing.com/images/search?view=detailV2&ccid=G7ibfiNv&id=2D6BFB9C13113C3B7EA1791684C398B642B21227&thid=OIP.G7ibfiNvU8ZVHl8JP6asrAHaHa&mediaurl=https%3a%2f%2fwww.wanwupai.com%2fupload%2fproduct%2f20190917-1%2fcbcb8b3a174a26a05db9d0e19212ae3d.png&exph=800&expw=800&q=%e7%82%92%e9%94%85&simid=608051800650558057&FO... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | ไอน้ำ | การทำอาหาร | ต้มซุป | ทอด |
1,001,714 | C | function_reasoning | 1714 | https://www.bing.com/images/search?view=detailV2&ccid=KWaStRPv&id=D3346A57C1AD19826542F2767E642A2D742819D5&thid=OIP.KWaStRPvBBily0n9G7YpuAHaHa&mediaurl=https%3a%2f%2fdsdcp.smartmidea.net%2fmcsp%2fprod%2f20210422%2f1619034957145.jpg&exph=1200&expw=1200&q=%e7%82%96%e9%94%85&simid=608049081923679427&FORM=IRPRST&ck=B39633C... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | ไอน้ำ | การทำอาหาร | ต้มซุป | ทอด |
1,001,715 | D | function_reasoning | 1715 | https://www.bing.com/images/search?view=detailV2&ccid=z2QM5yZN&id=405CC9C4F922450802091A0F88437E04C4869EE2&thid=OIP.z2QM5yZNBC5TvHMLBfs5GgHaHa&mediaurl=https%3a%2f%2fm.360buyimg.com%2fmobilecms%2fs750x750_jfs%2ft27049%2f359%2f1265997646%2f323426%2fb2cf6171%2f5bc555baNa08d9e34.jpg!q80.dpg&exph=750&expw=750&q=%e7%85%8e%e... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | ไอน้ำ | การทำอาหาร | ต้มซุป | ทอด |
1,001,717 | B | function_reasoning | 1717 | https://www.bing.com/images/search?view=detailV2&ccid=Lyon31Zb&id=7B064C3864DABB8376346A8DB339C5787CEAFC9A&thid=OIP.Lyon31ZbcZAMv0vxmbnslQHaHa&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.2f2a27df565b71900cbf4bf199b9ec95%3frik%3dmvzqfHjFObONag%26riu%3dhttp%253a%252f%252fimg3.ey100.com%252fItemImages%252f20%252f2001... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | รถกระบะ | เตาย่าง | การกรอง | การปรุงรส |
1,001,718 | C | function_reasoning | 1718 | https://www.bing.com/images/search?view=detailV2&ccid=uLaUo1eq&id=3D01E1E012E7DC23B885AB3EA25CB9951D9723AC&thid=OIP.uLaUo1eqzwRACOIxKrn3pwHaHa&mediaurl=https%3a%2f%2fimg.directindustry-china.cn%2fimages_di%2fphoto-g%2f63760-15045837.jpg&exph=1500&expw=1500&q=%e6%bc%8f%e6%96%97&simid=608045620199968982&FORM=IRPRST&ck=51... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | รถกระบะ | เตาย่าง | การกรอง | การปรุงรส |
1,001,719 | D | function_reasoning | 1719 | https://www.bing.com/images/search?view=detailV2&ccid=ItMmDDxC&id=18AEF1575EF0AF2266F83C5294CF8E9B23F0BA38&thid=OIP.ItMmDDxC-8ZWw4CEgqH22AHaJW&mediaurl=https%3a%2f%2ftgi1.jia.com%2f116%2f116%2f16116940.jpg&exph=1390&expw=1100&q=%e8%b0%83%e5%91%b3%e7%93%b6&simid=607990940981401794&FORM=IRPRST&ck=A74880D0CEB736A555A7C851... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | รถกระบะ | เตาย่าง | การกรอง | การปรุงรส |
1,001,720 | A | function_reasoning | 1720 | https://www.bing.com/images/search?view=detailV2&ccid=uXROmkNH&id=00C860F5C54D94A262ADF14D81E46C416BDB2596&thid=OIP.uXROmkNHA4pEs-JODrl5hwHaHa&mediaurl=https%3A%2F%2Fcbu01.alicdn.com%2Fimg%2Fibank%2F2018%2F299%2F609%2F9052906992_1894536355.jpg&exph=800&expw=800&q=%e7%ad%b7%e5%ad%90&simid=608002863761276228&form=IRPRST&... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | รถกระบะ | เตาย่าง | การกรอง | การปรุงรส |
1,001,722 | C | function_reasoning | 1722 | https://www.bing.com/images/search?view=detailV2&ccid=fxKiY%2f%2fy&id=F4786D0C75CACF9EADDA8A515A69A95D219C6461&thid=OIP.fxKiY__yf_8jfF8dqzA6dgHaHa&mediaurl=https%3a%2f%2fpic.midea.cn%2fImageStore%2f159181%2fpic%2f2f28498a68e18645A9819%2f2f28498a68e18645A9819.jpg&exph=1200&expw=1200&q=%e5%be%ae%e6%b3%a2%e7%82%89&simid=6... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | รถกระบะ | การอบ | การให้ความร้อน | การปรุงรส |
1,001,726 | A | function_reasoning | 1726 | https://www.bing.com/images/search?view=detailV2&ccid=DULZBRxY&id=650E0333C099C64C491A5D6812DE214655E7363A&thid=OIP.DULZBRxYCQbG2GTrJayxXQHaHa&mediaurl=https%3a%2f%2fcbu01.alicdn.com%2fimg%2fibank%2f2016%2f014%2f632%2f3167236410_1034763582.jpg&exph=960&expw=960&q=%e4%be%bf%e5%88%a9%e8%b4%b4&simid=608018892577313207&FOR... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของสิ่งของที่แสดงคืออะไร | บันทึก | ติดกาว | รับ | เครื่องเขียน |
1,001,727 | B | function_reasoning | 1727 | https://www.bing.com/images/search?view=detailV2&ccid=ByoAurKs&id=BAB669D9E589260DC9B39D6DFD2E2E1848DF86C2&thid=OIP.ByoAurKsdOCbetZ2hoPkyQHaHa&mediaurl=https%3a%2f%2fth.bing.com%2fth%2fid%2fR.072a00bab2ac74e09b7ad6768683e4c9%3frik%3dwobfSBguLv1tnQ%26riu%3dhttp%253a%252f%252fpic.ntimg.cn%252ffile%252f20180526%252f249699... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | การป้องกันทางทหาร | ระบุทิศทาง | มองในระยะไกล | สังเกตการณ์ระหว่างดวงดาว |
1,001,728 | C | function_reasoning | 1728 | https://www.bing.com/images/search?view=detailV2&ccid=q6nfmVvT&id=5818B3AB81365681C4AB0060EB8E8F5B4E711BF1&thid=OIP.q6nfmVvTVysR98UOE52LpAHaHa&mediaurl=https%3A%2F%2Fimg.zcool.cn%2Fcommunity%2F01de405be8ea6fa80121ab5dde0e76.jpg%401280w_1l_2o_100sh.jpg&exph=1280&expw=1280&q=%e6%9c%9b%e8%bf%9c%e9%95%9c&simid=608054098435... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | การป้องกันทางทหาร | ระบุทิศทาง | มองในระยะไกล | สังเกตการณ์ระหว่างดวงดาว |
1,001,730 | A | function_reasoning | 1730 | https://www.bing.com/images/search?view=detailV2&ccid=Ye%2b%2bKDFT&id=4A9AB55A0EA88DC88FFEC2471AF6B1C84358995D&thid=OIP.Ye--KDFTHA5gnOCg_jP2PwHaE5&mediaurl=https%3a%2f%2frs1.huanqiucdn.cn%2fdp%2fapi%2fimages%2fimageDir%2fa5429345e31435b42313fcfa9e08a6bbu5.jpg&exph=1042&expw=1574&q=%e5%9d%a6%e5%85%8b&simid=6079996339589... | attribute_reasoning | null | dev | null | วัตถุประสงค์ของวัตถุที่แสดงคืออะไร? | การป้องกันทางทหาร | ระบุทิศทาง | มองในระยะไกล | สังเกตการณ์ระหว่างดวงดาว |
1,001,732 | B | ocr | 1732 | finegrained_perception (instance-level) | null | dev | null | ป้ายนี้หมายถึงอะไร? | รักษาระดับความเร็วของคุณ | ห้ามสูบบุหรี่ในบริเวณนี้ | มีสินค้าลดราคา | ไม่อนุญาตให้ถ่ายรูป | |
1,001,734 | D | ocr | 1734 | finegrained_perception (instance-level) | null | dev | null | ป้ายนี้หมายถึงอะไร? | รักษาระดับความเร็วของคุณ | ห้ามสูบบุหรี่ในบริเวณนี้ | มีสินค้าลดราคา | ไม่อนุญาตให้ถ่ายรูป | |
1,001,736 | D | ocr | 1736 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT55_oJSaM0PViy5nuIDlDnp1mTDA8BCCB-Ng&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | จุดประสงค์หลักของโปสเตอร์นี้คืออะไร? | เพื่อเฉลิมฉลองวันชาติ | เพื่อเฉลิมฉลองปีใหม่ | เพื่อเฉลิมฉลองวันเกิดของใครบางคน | เพื่อเฉลิมฉลองคริสต์มาส |
1,001,737 | B | ocr | 1737 | https://www.fotor.com/templates/green-football-event-poster-5694e6/ | finegrained_perception (instance-level) | null | dev | null | ทีมใดสองทีมจะเข้าร่วมการแข่งขันนี้? | ทีม A และทีม D | ทีม A และทีม B | ทีม A และทีม C | ทีม B และทีม C |
1,001,738 | C | ocr | 1738 | https://www.canva.com/p/templates/EAE9LRMRVKU-orange-white-creative-we-re-hiring-poster/ | finegrained_perception (instance-level) | null | dev | null | จุดประสงค์หลักของโปสเตอร์นี้คืออะไร? | เพื่อขอความช่วยเหลือ | เพื่อโฆษณาสำหรับร้านค้า | เพื่อค้นหาผู้สมัครที่มีคุณสมบัติเหมาะสมสำหรับตำแหน่งที่เปิดรับสมัคร | เพื่อแสดงลำโพง |
1,001,740 | B | ocr | 1740 | finegrained_perception (instance-level) | null | dev | null | สูตรนี้แสดงการดำเนินการทางเศษส่วนชนิดใด | หาร | บวก | ลบ | คูณ | |
1,001,741 | C | ocr | 1741 | finegrained_perception (instance-level) | null | dev | null | สูตรนี้แสดงการดำเนินการทางเศษส่วนชนิดใด | หาร | บวก | ลบ | คูณ | |
1,001,743 | A | ocr | 1743 | finegrained_perception (instance-level) | null | dev | null | สูตรนี้แสดงการดำเนินการทางเศษส่วนชนิดใด | หาร | บวก | ลบ | คูณ | |
1,001,744 | D | ocr | 1744 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7-qKXCoA-bI1xOyi8AvJruHweugCsw6Vd5M1CfzTtbMWT_ft7wkK7AWjoS3c_gwJQV24&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | ภาพนี้ต้องการสื่ออะไร? | เราคาดหวังให้ทำงานหนัก | เราคาดหวังให้ดูแลต้นไม้สีเขียว | เราคาดหวังให้ดูแลโลก | เราคาดหวังให้มีทัศนคติเชิงบวก |
1,001,745 | C | ocr | 1745 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTGJbdrZS2MiJFmGIPLG6IYX-TGdkg4VGmUCQ&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | ภาพนี้ต้องการสื่ออะไร? | เราคาดหวังให้ทำงานหนัก | เราคาดหวังให้ดูแลต้นไม้สีเขียว | เราคาดหวังให้ดูแลโลก | เราคาดหวังให้มีทัศนคติเชิงบวก |
1,001,749 | A | ocr | 1749 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-YK7mUIdadmwEqod_xkppGX-EGMNGw9O5uMAGPoSCEJhew60w35t6TKPMqyiwtXkYJX4&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | จุดประสงค์หลักของโปสเตอร์นี้คืออะไร? | เพื่อเฉลิมฉลองวันชาติ | เพื่อเฉลิมฉลองปีใหม่ | เพื่อเฉลิมฉลองวันเกิดของใครบางคน | เพื่อเฉลิมฉลองคริสต์มาส |
1,001,750 | C | ocr | 1750 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRC_f5B0z4ZnW4I-bUZX5OCr6RRVaSsDsUoVQ&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | จุดประสงค์หลักของโปสเตอร์นี้คืออะไร? | เพื่อเฉลิมฉลองวันชาติ | เพื่อเฉลิมฉลองปีใหม่ | เพื่อเฉลิมฉลองวันเกิดของใครบางคน | เพื่อเฉลิมฉลองคริสต์มาส |
1,001,751 | D | ocr | 1751 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvoMjXHzu84g50xKIJTJhUhQJ6wCwU_f5m1A&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้? | วันแม่ | วันโลก | วันอ่านหนังสือแห่งชาติ | วันน้ำโลก |
1,001,752 | B | ocr | 1752 | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้? | วันแม่ | วันโลก | วันอ่านหนังสือแห่งชาติ | วันน้ำโลก | |
1,001,753 | C | ocr | 1753 | https://www.google.com.hk/url?sa=i&url=https%3A%2F%2Fwww.uniquenewsonline.com%2Fnational-reading-day-2022-in-india-on-june-19-top-quotes-images-wishes-greetings-and-posters%2F&psig=AOvVaw2IeisT37ZKRVE8pBpqnfA5&ust=1687316508882000&source=images&cd=vfe&ved=0CA4QjRxqFwoTCLir_Pzt0P8CFQAAAAAdAAAAABAJ | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้? | วันแม่ | วันโลก | วันอ่านหนังสือแห่งชาติ | วันน้ำโลก |
1,001,754 | A | ocr | 1754 | https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSa5g38-A_o2WyQditZiatKIsh43n4LT6yUHg&usqp=CAU | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้? | วันแม่ | วันโลก | วันอ่านหนังสือแห่งชาติ | วันน้ำโลก |
1,001,755 | D | ocr | 1755 | https://www.google.com.hk/imgres?imgurl=https%3A%2F%2Fimages.cdn1.stockunlimited.net%2Fpreview1300%2Ffather-s-day-poster_1538707.jpg&tbnid=ed5JF4YsXPPrFM&vet=12ahUKEwih_bO57tD_AhWWDN4KHYwpB-IQMygPegUIARDsAQ..i&imgrefurl=https%3A%2F%2Fwww.stockunlimited.com%2Fvector-illustration%2Ffather-s-day-poster_1538707.html&docid=... | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้? | วันแม่ | วันโลก | วันอ่านหนังสือแห่งชาติ | วันพ่อ |
1,001,756 | C | ocr | 1756 | https://www.vecteezy.com/vector-art/699849-happy-children-s-day-balloon-poster | finegrained_perception (instance-level) | null | dev | null | วันพิเศษใดที่เกี่ยวข้องกับโปสเตอร์นี้ | วันแม่ | วันโลก | วันเด็ก | วันพ่อ |
1,001,757 | A | ocr | 1757 | finegrained_perception (instance-level) | null | dev | null | พื้นที่ของรูปใดสามารถคำนวณได้โดยใช้สูตรในภาพนี้ | วงกลม | สี่เหลี่ยมจัตุรัส | สี่เหลี่ยมผืนผ้า | สามเหลี่ยม | |
1,001,758 | D | ocr | 1758 | finegrained_perception (instance-level) | null | dev | null | พื้นที่ของรูปใดสามารถคำนวณได้โดยใช้สูตรในภาพนี้ | วงกลม | สี่เหลี่ยมจัตุรัส | สี่เหลี่ยมผืนผ้า | สามเหลี่ยม | |
1,001,760 | B | ocr | 1760 | finegrained_perception (instance-level) | null | dev | null | พื้นที่ของรูปใดสามารถคำนวณได้โดยใช้สูตรในภาพนี้ | วงกลม | สี่เหลี่ยมจัตุรัส | สี่เหลี่ยมผืนผ้า | สามเหลี่ยม | |
1,001,762 | B | ocr | 1762 | finegrained_perception (instance-level) | null | dev | null | พื้นที่ของรูปใดสามารถคำนวณได้โดยใช้สูตรในรูปภาพนี้ | วงกลม | สี่เหลี่ยมคางหมู | วงรี | สามเหลี่ยม | |
1,001,764 | C | ocr | 1764 | finegrained_perception (instance-level) | null | dev | null | ปริมาตรของวัตถุใดที่สามารถคำนวณได้โดยใช้สูตรในรูป? | ทรงกลม | ทรงสี่เหลี่ยมมุมฉาก | ทรงกระบอก | ทรงกรวย | |
1,001,765 | D | ocr | 1765 | finegrained_perception (instance-level) | null | dev | null | ปริมาตรของวัตถุใดที่สามารถคำนวณได้โดยใช้สูตรในรูป? | ทรงกลม | ทรงสี่เหลี่ยมมุมฉาก | ทรงกระบอก | ทรงกรวย | |
1,001,769 | A | ocr | 1769 | finegrained_perception (instance-level) | null | dev | null | สูตรใดให้ผลลัพธ์การคำนวณเหมือนกับสูตรในรูปภาพ? | a^2 + 2*a*b + b^2 | a^2 – 2*a*b + b^2 | a^2 – 2*a*b - b^2 | a^2 – 2*a*b + b^2 | |
1,001,770 | B | ocr | 1770 | finegrained_perception (instance-level) | null | dev | null | สูตรใดให้ผลลัพธ์การคำนวณเหมือนกับสูตรในรูปภาพ? | a^2 + 2*a*b + b^2 | a^2 – 2*a*b + b^2 | a^2 – 2*a*b - b^2 | a^2 – 2*a*b + b^2 | |
1,001,771 | C | ocr | 1771 | finegrained_perception (instance-level) | null | dev | null | สูตรในรูปภาพนี้สามารถนำไปใช้ทำอะไรได้? | เพื่อคำนวณผลรวมของสองค่า | เพื่อคำนวณพื้นที่ของวัตถุ | เพื่อคำนวณความน่าจะเป็นของเหตุการณ์เฉพาะ | เพื่อคำนวณระยะทางระหว่างสองจุด | |
1,001,772 | B | ocr | 1772 | finegrained_perception (instance-level) | null | dev | null | สูตรใดให้ผลลัพธ์การคำนวณเหมือนกับสูตรในรูปภาพ? | a-b | (a+b)*(a-b) | (a+b)*(a+b) | (a-b)*(a-b) | |
1,001,773 | D | structuralized_imagetext_understanding | 1773 | logic_reasoning | null | dev | null | รูปภาพนี้แสดงงานบ้านของแอนนาทุกวันในสัปดาห์ คุณช่วยบอกได้ไหมว่าแอนนาควรทำอะไรในวันอังคาร? | เขียนภาษาอังกฤษและเรียนภาษาฮินดี | เขียนภาษาฮินดีและเรียนคณิตศาสตร์ | เขียนคณิตศาสตร์และเรียนภาษาฮินดี | เขียนภาษาฮินดีและเรียนภาษาอังกฤษ | |
1,001,774 | A | structuralized_imagetext_understanding | 1774 | logic_reasoning | null | dev | null | รูปภาพนี้แสดงแผนการเรียนของไมค์ คุณช่วยบอกได้ไหมว่าไมค์ควรเรียนวิชาชีววิทยาในวันพุธเวลาใด | 14:45-16:15 | 10:00-11:30 | 11:30-12:30 | 13:00-14:30 | |
1,001,780 | C | structuralized_imagetext_understanding | 1780 | logic_reasoning | null | dev | null | จากรูปภาพนี้ เดนนิสอายุเท่าไร | 47 | 38 | 45 | 29 | |
1,001,781 | B | image_scene | 1781 | https://images.unsplash.com/photo-1598880513655-d1c6d4b2dfbf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDE0fHx8ZW58MHx8fHx8&w=1000&q=80 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | เด็กกำลังเล่นลูกบอลในสวนสาธารณะ | กลุ่มคนที่กำลังเล่นฟุตบอลในทุ่ง | ผู้หญิงคนหนึ่งกำลังพาหมาของเธอเดินเล่นบนชายหาด | ผู้ชายคนหนึ่งกำลังปั่นจักรยานบนเส้นทางบนภูเขา |
1,001,783 | D | image_scene | 1783 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | เด็กกำลังเล่นลูกบอลในสวนสาธารณะ | กลุ่มคนที่กำลังเล่นฟุตบอลในทุ่ง | ผู้หญิงคนหนึ่งกำลังพาหมาของเธอเดินเล่นบนชายหาด | ผู้ชายคนหนึ่งกำลังปั่นจักรยานบนเส้นทางบนภูเขา | |
1,001,785 | B | image_scene | 1785 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | พิซซ่าหน้าเปปเปอโรนี เห็ด และมะกอก | ชามผลไม้ที่มีแอปเปิล กล้วย และส้ม | จานสปาเก็ตตี้กับมิ้ทบอลและซอสมะเขือเทศ | แซนวิชที่มีแฮม ผักกาดแก้ว และชีส | |
1,001,787 | D | image_scene | 1787 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | พิซซ่าหน้าเปปเปอโรนี เห็ด และมะกอก | ชามผลไม้ที่มีแอปเปิล กล้วย และส้ม | จานสปาเก็ตตี้กับมิ้ทบอลและซอสมะเขือเทศ | แซนวิชที่มีแฮม ผักกาดแก้ว และชีส | |
1,001,791 | D | image_scene | 1791 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | ผู้หญิงคนหนึ่งยืนอยู่บนระเบียงมองออกไปเห็นเมือง | คู่รักนั่งอยู่บนม้านั่งในสวนสาธารณะ | กลุ่มคนเดินข้ามสะพาน | บุคคลหนึ่งนั่งอยู่บนโขดหินใกล้แม่น้ำ | |
1,001,792 | A | image_scene | 1792 | https://images.unsplash.com/photo-1653316834393-ddaa68981fd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | ผู้หญิงคนหนึ่งยืนอยู่บนระเบียงมองออกไปเห็นเมือง | คู่รักนั่งอยู่บนม้านั่งในสวนสาธารณะ | กลุ่มคนเดินข้ามสะพาน | บุคคลหนึ่งนั่งอยู่บนโขดหินใกล้แม่น้ำ |
1,001,793 | B | image_scene | 1793 | coarse_perception | null | dev | null | คำบรรยายใดต่อไปนี้อธิบายภาพนี้ได้ดีที่สุด | เรือกำลังแล่นบนทะเลสาบ | รถยนต์กำลังขับบนทางหลวงในเวลากลางคืน | รถไฟกำลังเดินทางผ่านอุโมงค์ | เครื่องบินกำลังบินผ่านเมฆ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.