index
int64
1
3M
question
stringclasses
382 values
hint
stringclasses
98 values
A
stringlengths
1
460
B
stringlengths
1
460
C
stringlengths
1
460
D
stringlengths
1
460
answer
stringclasses
4 values
category
stringclasses
20 values
image
imagewidth (px)
55
512
source
stringclasses
569 values
l2-category
stringclasses
6 values
comment
stringclasses
180 values
split
stringclasses
1 value
2,001,620
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
C
image_style
https://upload.wikimedia…_hand_screen.jpg
coarse_perception
nan
dev
2,001,621
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
C
image_style
https://upload.wikimedia…Splashed_Ink.jpg
coarse_perception
nan
dev
2,001,623
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
D
image_style
https://upload.wikimedia…%A9zanne_151.jpg
coarse_perception
nan
dev
2,001,628
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
B
image_style
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ8zKWV_vEQ2DdaDkW8O18gKbV1JoBW1mvW-w&usqp=CAU
coarse_perception
nan
dev
2,001,629
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
B
image_style
https://achillesportfoli…_penandink-1.jpg
coarse_perception
nan
dev
2,001,630
what style is this painting?
nan
gouache painting
pen and ink
ink wash painting
watercolor painting
B
image_style
https://texashistory.unt.edu/ark:/67531/metapth861210/m1/1/med_res/
coarse_perception
nan
dev
2,001,632
what python code is gonna generate the result as shown in the image?
nan
#This is a comment. print("Hello, World!")
if 5 > 2: print("Five is greater than two!")
if 5 > 2: print("Five is greater than two!") print("Five is greater than two!")
if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!")
D
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_indentation2
logic_reasoning
nan
dev
2,001,636
what python code is gonna generate the result as shown in the image?
nan
thisdict = { "brand": "Ford", "electric": False, "year": 1965, "colors": ["red", "white", "blue"] } print(thisdict)
thisdict = dict(name = "John", age = 37, country = "Norway") print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1965 } print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1965 } print(thisdict["brand"])
D
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_dictionary_brand
logic_reasoning
nan
dev
2,001,637
what python code is gonna generate the result as shown in the image?
nan
thisdict = { "brand": "Ford", "electric": False, "year": 1966, "colors": ["red", "white", "blue"] } print(thisdict)
thisdict = dict(name = "John", age = 38, country = "Norway") print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1966 } print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1966 } print(thisdict["brand"])
A
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_dict_datatypes
logic_reasoning
nan
dev
2,001,638
what python code is gonna generate the result as shown in the image?
nan
thisdict = { "brand": "Ford", "electric": False, "year": 1967, "colors": ["red", "white", "blue"] } print(thisdict)
thisdict = dict(name = "John", age = 39, country = "Norway") print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1967 } print(thisdict)
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1967 } print(thisdict["brand"])
B
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_dict_constructor
logic_reasoning
nan
dev
2,001,639
what python code is gonna generate the result as shown in the image?
nan
fruits = ["apple", "banana", "cherry"] for x in fruits: if x == "banana": break print(x)
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
C
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_for_string
logic_reasoning
nan
dev
2,001,642
what python code is gonna generate the result as shown in the image?
nan
fruits = ["apple", "banana", "cherry"] for x in fruits: if x == "banana": break print(x)
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
B
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_for_continue
logic_reasoning
nan
dev
2,001,643
what python code is gonna generate the result as shown in the image?
nan
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()
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)
C
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_for_continue
logic_reasoning
nan
dev
2,001,645
what python code is gonna generate the result as shown in the image?
nan
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()
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)
A
structuralized_imagetext_understanding
https://www.w3schools.com/python/trypython.asp?filename=demo_class4
logic_reasoning
nan
dev
2,001,647
what code would generate this webpage in the browser?
nan
<!DOCTYPE html> <html> <body> <h1>JavaScript Functions</h1> <p>Invoke (call) a function to convert from Fahrenheit to Celsius:</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>
<!DOCTYPE html> <html> <body> <h1>JavaScript Functions</h1> <p>Using a function as a variable:</p> <p id="demo"></p> <script> let text = "The temperature is " + toCelsius(77) + " Celsius."; document.getElementById("demo").innerHTML = text; function toCelsius(fahrenheit) { return (5/9) * (fahrenheit-32); } </script...
<!DOCTYPE html> <html> <body> <h1>JavaScript Functions</h1> <p>Call a function which performs a calculation and returns the result:</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 Functions</h1> <p>Invoke (call) a function that converts from Fahrenheit to Celsius:</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>
C
structuralized_imagetext_understanding
https://www.w3schools.com/js/tryit.asp?filename=tryjs_function_return
logic_reasoning
nan
dev
2,001,651
what code would generate this webpage in the browser?
nan
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>An object method is a function definition, stored as a property value.</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName: "Doe", id: 5566, fullName: function() { return this.firstName + " " + this.lastName; } ...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>If you access an object method without (), it will return the function definition:</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName : "Doe", id : 5566, fullName : function() { return this.firstName + " " + t...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName: "Doe", age: 50, eyeColor: "blue" }; // Display some data from the object: document.getElementById("demo").innerHTML = person.firstName + " is " + person.age + " yea...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>There are two different ways to access an object property.</p> <p>You can use person.property or person["property"].</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName : "Doe", id : 5566 }; // Display some d...
C
structuralized_imagetext_understanding
https://www.w3schools.com/js/tryit.asp?filename=tryjs_objects_create_2
logic_reasoning
nan
dev
2,001,653
what code would generate this webpage in the browser?
nan
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>An object method is a function definition, stored as a property value.</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName: "Doe", id: 5568, fullName: function() { return this.firstName + " " + this.lastName; } ...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>If you access an object method without (), it will return the function definition:</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName : "Doe", id : 5568, fullName : function() { return this.firstName + " " + t...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName: "Doe", age: 52, eyeColor: "blue" }; // Display some data from the object: document.getElementById("demo").innerHTML = person.firstName + " is " + person.age + " yea...
<!DOCTYPE html> <html> <body> <h2>JavaScript Objects</h2> <p>There are two different ways to access an object property.</p> <p>You can use person.property or person["property"].</p> <p id="demo"></p> <script> // Create an object: const person = { firstName: "John", lastName : "Doe", id : 5568 }; // Display some d...
A
structuralized_imagetext_understanding
https://www.w3schools.com/js/tryit.asp?filename=tryjs_objects_method
logic_reasoning
nan
dev
2,001,655
Which Python code can generate the content of the image?
nan
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))
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))
B
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461054
logic_reasoning
nan
dev
2,001,656
Which Python code can generate the content of the image?
nan
a, b = 1,0 try: print(a/b) except ZeroDivisionError: print("Can not divide by zero") finally: print("block")
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")
D
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461055
logic_reasoning
nan
dev
2,001,657
Which Python code can generate the content of the image?
nan
list = ["Hello", "world", "Bye!"] combined_string = " ".join(list) print(combined_string)
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)
C
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461056
logic_reasoning
nan
dev
2,001,658
Which Python code can generate the content of the image?
nan
from collections import Counter result = Counter('banana') print(result)
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)
A
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461057
logic_reasoning
nan
dev
2,001,659
Which Python code can generate the content of the image?
nan
count = 1 while (count < 9): print 'The count is:', count count = count + 1 print "Good bye!"
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!"
D
structuralized_imagetext_understanding
https://www.runoob.com/python/python-while-loop.html
logic_reasoning
nan
dev
2,001,660
Which Python code can generate the content of the image?
nan
count = 0 while count < 5: print count, " is less than 5" count = count + 1 else: print count, " is not less than 6"
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"
D
structuralized_imagetext_understanding
https://www.runoob.com/python/python-while-loop.html
logic_reasoning
nan
dev
2,001,662
Which Python code can generate the content of the image?
nan
list = [] list.append(’Microsoft') list.append('Runoob') print list
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
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-lists.html
logic_reasoning
nan
dev
2,001,663
Which Python code can generate the content of the image?
nan
list1 = ['physics', 'chemistry', 1997, 2000] print list1 del list1[2] print "After deleting value at index 2 : " print list1
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
A
structuralized_imagetext_understanding
https://www.runoob.com/python/python-lists.html
logic_reasoning
nan
dev
2,001,664
Which Python code can generate the content of the image?
nan
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]
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]
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-tuples.html
logic_reasoning
nan
dev
2,001,665
Which Python code can generate the content of the image?
nan
counter = 100 miles = 1000.0 name = "John" print counter print miles print name
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
A
structuralized_imagetext_understanding
https://www.runoob.com/python/python-variable-types.html
logic_reasoning
nan
dev
2,001,666
Which Python code can generate the content of the image?
nan
print str print str[0] print str[1:5] print str[2:] print str * 2 print str + "TEST"
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"
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-variable-types.html
logic_reasoning
nan
dev
2,001,667
Which Python code can generate the content of the image?
nan
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
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
B
structuralized_imagetext_understanding
https://www.runoob.com/python/python-variable-types.html
logic_reasoning
nan
dev
2,001,668
Which Python code can generate the content of the image?
nan
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()
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()
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-variable-types.html
logic_reasoning
nan
dev
2,001,669
Which Python code can generate the content of the image?
nan
import re print(re.match('http', 'www.runoob.com').span()) print(re.match('com', 'www.runoob.com'))
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'))
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-reg-expressions.html
logic_reasoning
nan
dev
2,001,670
Which Python code can generate the content of the image?
nan
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!!"
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!!"
D
structuralized_imagetext_understanding
https://www.runoob.com/python/python-reg-expressions.html
logic_reasoning
nan
dev
2,001,671
Which Python code can generate the content of the image?
nan
import re def double(matched): value = int(matched.group('value')) return str(value * 2) s = 'A23G4HFD568' print(re.sub('(?P<value>\d+)', double, s))
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))
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-reg-expressions.html
logic_reasoning
nan
dev
2,001,672
Which Python code can generate the content of the image?
nan
import re result = re.findall(r'(\w+)=(\d+)', 'set width=20 and height=15') print(result)
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)
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-reg-expressions.html
logic_reasoning
nan
dev
2,001,674
Which Python code can generate the content of the image?
nan
import numpy content = dir(math) print content
import math content = locals(math) print content
import math content = dir(math) print content
import re content = dir(math) print content
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-modules.html
logic_reasoning
nan
dev
2,001,675
Which Python code can generate the content of the image?
nan
flag = False name = 'lemon' 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 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'
B
structuralized_imagetext_understanding
https://www.runoob.com/python/python-if-statement.html
logic_reasoning
nan
dev
2,001,676
Which Python code can generate the content of the image?
nan
print "My name is %s and weight is %d g!" % ('Zara', 21)
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)
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-strings.html
logic_reasoning
nan
dev
2,001,677
Which Python code can generate the content of the image?
nan
def printinfo( name, age = 33 ): print "Name: ", name print "Age ", age return printinfo( age=52, name="miki" ) printinfo( name="miki" )
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" )
C
structuralized_imagetext_understanding
https://www.runoob.com/python/python-functions.html
logic_reasoning
nan
dev
2,001,679
Which Python code can generate the content of the image?
nan
n = 7 string = "Hello!" print(string * n)
n = 2 string = "Hello!" print(string * n)
n = 6 string = "Hello!" print(string * n)
n = 5 string = "Hello!" print(string * n)
D
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461054
logic_reasoning
nan
dev
2,001,680
Which Python code can generate the content of the image?
nan
def get_vowels(string): return [vowel for vowel in string if vowel in 'aeiou'] print("Vowels are:", get_vowels('This is a string'))
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'))
C
structuralized_imagetext_understanding
https://zhuanlan.zhihu.com/p/374461054
logic_reasoning
nan
dev
2,001,681
What's the function of the demonstrated object?
nan
Water purification
Boiling water
Cut vegetables
stir
C
function_reasoning
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
nan
dev
2,001,683
What's the function of the demonstrated object?
nan
Water purification
Boiling water
Cut vegetables
stir
A
function_reasoning
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
nan
dev
2,001,684
What's the function of the demonstrated object?
nan
Water purification
Boiling water
Cut vegetables
stir
B
function_reasoning
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
nan
dev
2,001,685
What's the function of the demonstrated object?
nan
binding
copy
Write
compute
C
function_reasoning
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
nan
dev
2,001,688
What's the function of the demonstrated object?
nan
binding
copy
Write
compute
B
function_reasoning
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
nan
dev
2,001,689
What's the function of the demonstrated object?
nan
deposit
refrigeration
Draw
cut
C
function_reasoning
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
nan
dev
2,001,691
What's the function of the demonstrated object?
nan
deposit
refrigeration
Draw
cut
A
function_reasoning
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
nan
dev
2,001,693
What's the function of the demonstrated object?
nan
adjust
Clamping
hit
Tighten tightly
C
function_reasoning
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
nan
dev
2,001,695
What's the function of the demonstrated object?
nan
adjust
Clamping
hit
Tighten tightly
A
function_reasoning
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
nan
dev
2,001,696
What's the function of the demonstrated object?
nan
adjust
Clamping
hit
Tighten tightly
B
function_reasoning
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
nan
dev
2,001,697
What's the function of the demonstrated object?
nan
drill
incise
Separatist
Clamping
C
function_reasoning
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
nan
dev
2,001,700
What's the function of the demonstrated object?
nan
drill
incise
Separatist
Clamping
A
function_reasoning
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
nan
dev
2,001,701
What's the function of the demonstrated object?
nan
weld
Measure the level
excavate
transport
C
function_reasoning
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
nan
dev
2,001,702
What's the function of the demonstrated object?
nan
weld
Measure the level
excavate
transport
D
function_reasoning
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
nan
dev
2,001,703
What's the function of the demonstrated object?
nan
weld
Measure the level
excavate
transport
A
function_reasoning
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
nan
dev
2,001,706
What's the function of the demonstrated object?
nan
burnish
Brushing
Cut the grass
Measure the temperature
D
function_reasoning
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
nan
dev
2,001,707
What's the function of the demonstrated object?
nan
burnish
Brushing
Cut the grass
Measure the temperature
A
function_reasoning
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
nan
dev
2,001,710
What's the function of the demonstrated object?
nan
Bulldozing
Cutting platform
clean
measurement
D
function_reasoning
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
nan
dev
2,001,711
What's the function of the demonstrated object?
nan
Bulldozing
Cutting platform
clean
measurement
A
function_reasoning
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
nan
dev
2,001,712
What's the function of the demonstrated object?
nan
Bulldozing
Cutting platform
clean
measurement
B
function_reasoning
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
nan
dev
2,001,713
What's the function of the demonstrated object?
nan
Fry
steam
Cooking
Cook soup
C
function_reasoning
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
nan
dev
2,001,714
What's the function of the demonstrated object?
nan
Fry
steam
Cooking
Cook soup
D
function_reasoning
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
nan
dev
2,001,715
What's the function of the demonstrated object?
nan
Fry
steam
Cooking
Cook soup
A
function_reasoning
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
nan
dev
2,001,717
What's the function of the demonstrated object?
nan
flavouring
Pick-up
grill
filtration
C
function_reasoning
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
nan
dev
2,001,718
What's the function of the demonstrated object?
nan
flavouring
Pick-up
grill
filtration
D
function_reasoning
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
nan
dev
2,001,719
What's the function of the demonstrated object?
nan
flavouring
Pick-up
grill
filtration
A
function_reasoning
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
nan
dev
2,001,720
What's the function of the demonstrated object?
nan
flavouring
Pick-up
grill
filtration
B
function_reasoning
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
nan
dev
2,001,722
What's the function of the demonstrated object?
nan
flavouring
Pick-up
baking
heating
D
function_reasoning
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
nan
dev
2,001,726
What's the function of the demonstrated object?
nan
Stationery
record
gluing
Receive
B
function_reasoning
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
nan
dev
2,001,727
What's the function of the demonstrated object?
nan
Observe the interstellar
Military defense
Recognize the direction
Look into the distance
C
function_reasoning
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
nan
dev
2,001,728
What's the function of the demonstrated object?
nan
Observe the interstellar
Military defense
Recognize the direction
Look into the distance
D
function_reasoning
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
nan
dev
2,001,730
What's the function of the demonstrated object?
nan
Observe the interstellar
Military defense
Recognize the direction
Look into the distance
B
function_reasoning
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
nan
dev
2,001,732
What does this sign mean?
nan
No photography allowed
Take care of your speed.
Smoking is prohibited here.
Something is on sale.
C
ocr
https://cdn11.bigcommerc…?c=1?imbypass=on
finegrained_perception (instance-level)
nan
dev
2,001,734
What does this sign mean?
nan
No photography allowed
Take care of your speed.
Smoking is prohibited here.
Something is on sale.
A
ocr
https://img.freepik.com/…b92b5f35d2d8a336
finegrained_perception (instance-level)
nan
dev
2,001,736
What is the most likely purpose of this poster?
nan
To celebrate Christmas.
To celebrate National Day.
To celebrate New Year.
To celebrate someone's birthday.
A
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT55_oJSaM0PViy5nuIDlDnp1mTDA8BCCB-Ng&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,737
Which two teams will take part in this game?
nan
Team B and Team C.
Team A and Team D.
Team A and Team B.
Team A and Team C.
C
ocr
https://www.fotor.com/templates/green-football-event-poster-5694e6/
finegrained_perception (instance-level)
nan
dev
2,001,738
What is the most likely purpose of this poster?
nan
To show the loudspeaker.
To ask for help.
To advertise for a store.
To find qualified candidates for the open positions.
D
ocr
https://www.canva.com/p/templates/EAE9LRMRVKU-orange-white-creative-we-re-hiring-poster/
finegrained_perception (instance-level)
nan
dev
2,001,740
Which operation of fractions is represented by this formula?
nan
Multiply
Devide
Add
Subtract
C
ocr
https://cdn1.byjus.com/w…ths-formulas.png
finegrained_perception (instance-level)
nan
dev
2,001,741
Which operation of fractions is represented by this formula?
nan
Multiply
Devide
Add
Subtract
D
ocr
https://cdn1.byjus.com/w…ths-formulas.png
finegrained_perception (instance-level)
nan
dev
2,001,743
Which operation of fractions is represented by this formula?
nan
Multiply
Devide
Add
Subtract
B
ocr
https://cdn1.byjus.com/w…ths-formulas.png
finegrained_perception (instance-level)
nan
dev
2,001,744
What does this picture want to express?
nan
We are expected to stay positive.
We are expected to work hard.
We are expected to care for green plants.
We are expected to care for the earth.
A
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7-qKXCoA-bI1xOyi8AvJruHweugCsw6Vd5M1CfzTtbMWT_ft7wkK7AWjoS3c_gwJQV24&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,745
What does this picture want to express?
nan
We are expected to stay positive.
We are expected to work hard.
We are expected to care for green plants.
We are expected to care for the earth.
D
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTGJbdrZS2MiJFmGIPLG6IYX-TGdkg4VGmUCQ&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,749
What is the most likely purpose of this poster?
nan
To celebrate Christmas.
To celebrate National Day.
To celebrate New Year.
To celebrate someone's birthday.
B
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-YK7mUIdadmwEqod_xkppGX-EGMNGw9O5uMAGPoSCEJhew60w35t6TKPMqyiwtXkYJX4&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,750
What is the most likely purpose of this poster?
nan
To celebrate Christmas.
To celebrate National Day.
To celebrate New Year.
To celebrate someone's birthday.
D
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRC_f5B0z4ZnW4I-bUZX5OCr6RRVaSsDsUoVQ&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,751
Which special day is associated with this poster?
nan
Water Day.
Mother's Day
Earth Day.
National Reading Day.
A
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQvoMjXHzu84g50xKIJTJhUhQJ6wCwU_f5m1A&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,752
Which special day is associated with this poster?
nan
Water Day.
Mother's Day
Earth Day.
National Reading Day.
C
ocr
https://m.media-amazon.c…4,1000_QL80_.jpg
finegrained_perception (instance-level)
nan
dev
2,001,753
Which special day is associated with this poster?
nan
Water Day.
Mother's Day
Earth Day.
National Reading Day.
D
ocr
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)
nan
dev
2,001,754
Which special day is associated with this poster?
nan
Water Day.
Mother's Day
Earth Day.
National Reading Day.
B
ocr
https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSa5g38-A_o2WyQditZiatKIsh43n4LT6yUHg&usqp=CAU
finegrained_perception (instance-level)
nan
dev
2,001,755
Which special day is associated with this poster?
nan
Father's Day.
Mother's Day
Earth Day.
National Reading Day.
A
ocr
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)
nan
dev
2,001,756
Which special day is associated with this poster?
nan
Father's Day.
Mother's Day
Earth Day.
Children's Day.
D
ocr
https://www.vecteezy.com/vector-art/699849-happy-children-s-day-balloon-poster
finegrained_perception (instance-level)
nan
dev
2,001,757
The area of which figure can be calculated using the formula in this picture?
nan
Triangle.
Circle.
Square.
Rectangle.
B
ocr
https://media.geeksforge…-05-05-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,758
The area of which figure can be calculated using the formula in this picture?
nan
Triangle.
Circle.
Square.
Rectangle.
A
ocr
https://media.geeksforge…-05-05-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,759
The area of which figure can be calculated using the formula in this picture?
nan
Triangle.
Circle.
Square.
Rectangle.
D
ocr
https://media.geeksforge…-05-05-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,760
The area of which figure can be calculated using the formula in this picture?
nan
Triangle.
Circle.
Square.
Rectangle.
C
ocr
https://media.geeksforge…-05-05-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,762
The area of which figure can be calculated using the formula in this picture?
nan
Triangle.
Circle.
Trapezoid.
Ellipse.
C
ocr
https://media.geeksforge…-05-05-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,764
The volume of which object can be calculated using the formula in the figure?
nan
Cone.
Sphere.
Cuboid.
Cylinder.
D
ocr
https://media.geeksforge…-06-06-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,765
The volume of which object can be calculated using the formula in the figure?
nan
Cone.
Sphere.
Cuboid.
Cylinder.
A
ocr
https://media.geeksforge…-06-06-copy.webp
finegrained_perception (instance-level)
nan
dev
2,001,769
Which formula has the same calculation result with the formula in the figure?
nan
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
B
ocr
https://media.geeksforge…-chart-3-(1).png
finegrained_perception (instance-level)
nan
dev
2,001,770
Which formula has the same calculation result with the formula in the figure?
nan
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
C
ocr
https://media.geeksforge…-chart-3-(1).png
finegrained_perception (instance-level)
nan
dev
2,001,771
What can the formula in this picture be used to do?
nan
To calculate the distance of two points.
To calculate the sum of two values.
To calculate the area of an object.
To calculate the probability of a particular event.
D
ocr
https://pic2.zhimg.com/8…eafed_1440w.webp
finegrained_perception (instance-level)
nan
dev