-
Notifications
You must be signed in to change notification settings - Fork 0
/
prompts.txt
2301 lines (2301 loc) · 865 KB
/
prompts.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Let us play a game named Bongard-Tool. I will give you 6 tools that can perform a function, and 6 tools that can not perform that function. Then I will ask you whether another tool could perform that function. All you need to do is guess the possible function, and tell me yes or no. For example, there is a function that can be performed by these tools: ['Styrofoam', 'Stone', 'Balsa-Wood', 'Cardboard', 'Wooden-Block', 'Clay'], and this function can not be performed by these tools: ['Anchors', 'Padlock', 'Smartphone', 'Hacksaw', 'Tile-Saw', 'Scrub-Brush']. What function it may be? Can Plaster be used to perform this function? Can Robot-Arm be used to perform this function? You just need to answer: Possible functions: carving, crafting, or sculpture. Yes, No.
There is a function that can be performed by these tools: ['Screwdriver', 'Hacksaw', 'Hammer', 'Chisel', 'File', 'Drill-Bit'], and this function cannot be performed by these tools: ['Cheese', 'Padlock', 'Table-Saw', 'Clay', 'Luggage-Lock', 'LED-Lights']. What function it may be? Can Pencil be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Mouse', 'Monitor', 'Webcam', 'Gamepad', 'Scanner'], and this function cannot be performed by these tools: ['Tow-Truck', 'Paint-Palette', 'Pressure-Gauge', 'CSV-File', 'Door', 'Smartwatch']. What function it may be? Can Microphone be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Mouse', 'Game-Controller', 'Touchscreen-Monitor', 'Joystick', 'Light-Switch'], and this function cannot be performed by these tools: ['Robot-Car', 'CSV-Files', 'Crimp-Tool', 'Paintbrush-Holder', 'Rag', 'Pitchfork']. What function it may be? Can Tablet be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Stool', 'Chair', 'Desk', 'Bookshelf', 'Couch'], and this function cannot be performed by these tools: ['Yarn', 'Robot-Arm', 'Cardboard', 'Cane', 'Magnetic-Tape', 'Mailbox-Lock']. What function it may be? Can Cabinet be used to perform this function? Can Doorknob be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Stool', 'Bookshelf', 'Bed', 'Desk', 'Cabinet'], and this function cannot be performed by these tools: ['Mailbox-Lock', 'Yarn', 'Cardboard', 'Doorknob', 'Magnetic-Tape', 'Robot-Arm']. What function it may be? Can Chair be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['Styrofoam', 'Stone', 'Balsa-Wood', 'Cardboard', 'Wooden-Block', 'Clay'], and this function cannot be performed by these tools: ['Anchors', 'Padlock', 'Smartphone', 'Hacksaw', 'Tile-Saw', 'Scrub-Brush']. What function it may be? Can Plaster be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'String', 'Float', 'Boolean', 'File', 'List'], and this function cannot be performed by these tools: ['Flagpole', 'Desk', 'Rocking-Horse', 'Fabric', 'Flash-Drive', 'Recording-Software']. What function it may be? Can Class be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Buoys', 'Floating-Logs', 'Wharfs', 'Boats', 'Pilings'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Microcontroller', 'Sticky-Notes', 'Circular-Saw', 'Clamps', 'Socket']. What function it may be? Can Piers be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Joystick', 'Light-Switch', 'Mouse', 'Gesture-Sensor', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Robot-Car', 'CSV-Files', 'Crimp-Tool', 'Jump-Rope', 'Paintbrush-Holder', 'Rag']. What function it may be? Can Tablet be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Smartphone', 'Tablet', 'Drone', 'Laptop', 'Robot'], and this function cannot be performed by these tools: ['Vice', 'Garage-Door-Lock', 'Golf-Ball', 'Yarn', 'Dice-Shaker', 'Robot-Vacuum']. What function it may be? Can Microcontroller be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Bookshelf', 'Chair', 'Desk', 'Bed', 'Cabinet'], and this function cannot be performed by these tools: ['Doorknob', 'Magnetic-Tape', 'Robot-Arm', 'Cardboard', 'Yarn', 'Mailbox-Lock']. What function it may be? Can Couch be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Speakers', 'Mouse', 'Microphone', 'Webcam', 'Scanner'], and this function cannot be performed by these tools: ['CSV-File', 'Tow-Truck', 'Leather', 'Door', 'Pressure-Gauge', 'Paint-Palette']. What function it may be? Can Monitor be used to perform this function? Can Smartwatch be used to perform this function?
There is a function that can be performed by these tools: ['Pen', 'Highlighter', 'Paper-Clip', 'Stapler', 'Scissors', 'Glue-Stick'], and this function cannot be performed by these tools: ['Bench', 'Screwdriver-Bit', 'Tightrope', 'Memory-Card', 'Jigsaw', 'Calculator']. What function it may be? Can White-Out be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Cabinet', 'Chair', 'Dresser', 'Stool', 'Bookshelf'], and this function cannot be performed by these tools: ['Socket-Set', 'Dodecahedron', 'Memory-Card', 'Ribbon', 'Filter', 'Anchors']. What function it may be? Can Table be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Chain', 'Towel', 'Cable', 'Hook', 'Handle', 'Rope'], and this function cannot be performed by these tools: ['Storage-Device', 'Paint-Brush-Cleaner', 'Rugby-Ball', 'Beam', 'Clamp', 'Napkin']. What function it may be? Can Bungee-Cord be used to perform this function? Can Soldering-Iron be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Glue-Stick', 'Pen', 'Stapler', 'Scissors', 'White-Out'], and this function cannot be performed by these tools: ['Calculator', 'USB-Mouse', 'Screwdriver-Bit', 'Jigsaw', 'Bench', 'Memory-Card']. What function it may be? Can Highlighter be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Sensor', 'Raspberry-Pi', 'GPS-Tracker', 'Computer', 'Microcontroller', 'Robot'], and this function cannot be performed by these tools: ['Laptop', 'Excel-Spreadsheet', 'Stopwatch', 'Magnetic-Tape', 'Plate', 'Joystick']. What function it may be? Can Drone be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Bookshelf', 'Desk', 'Chair', 'Cabinet', 'Bed'], and this function cannot be performed by these tools: ['Doorknob', 'Yarn', 'Cardboard', 'Mailbox-Lock', 'Cane', 'Magnetic-Tape']. What function it may be? Can Stool be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Floor', 'Wall', 'Bookshelf', 'Chair', 'Desk', 'Door'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'Drill-Press', 'API-Endpoints', 'Table-Saw', 'Diaphragm', 'Thimble']. What function it may be? Can Cabinet be used to perform this function? Can Cabinet-Handle be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Tuple', 'File', 'List', 'Class', 'Float'], and this function cannot be performed by these tools: ['Desk', 'Flash-Drive', 'Flagpole', 'Recording-Software', 'Optical-Disc', 'Rocking-Horse']. What function it may be? Can String be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Microphone', 'Recording-Software', 'Speakers', 'Mouse', 'Cables'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Pulley', 'Netting', 'Ribbon', 'Graph-Paper', 'Storage-Device']. What function it may be? Can Monitor be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Rivets', 'Nails', 'Anchors', 'Clamps', 'Staples', 'Screws'], and this function cannot be performed by these tools: ['Gamepad', 'Dictionary', 'SD-Card', 'Awl', 'Clock', 'Table-Saw']. What function it may be? Can Adhesives be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Mouse', 'Scanner', 'Webcam', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Tow-Truck', 'Door', 'Leather', 'Pressure-Gauge', 'Smartwatch', 'Paint-Palette']. What function it may be? Can Microphone be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Pen', 'Scissors', 'Stapler', 'Glue-Stick', 'Paper-Clip'], and this function cannot be performed by these tools: ['Tightrope', 'Calculator', 'Memory-Card', 'Bench', 'Jigsaw', 'Screwdriver-Bit']. What function it may be? Can Highlighter be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Speakers', 'Recording-Software', 'Microphone', 'Audio-Interface'], and this function cannot be performed by these tools: ['Graph-Paper', 'Storage-Device', 'Seam-Ripper', 'Ribbon', 'Scissor-Lift', 'Netting']. What function it may be? Can Cables be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Styrofoam', 'Plaster', 'Clay', 'Balsa-Wood', 'Cardboard'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Hacksaw', 'Tile-Saw', 'Anchors', 'Padlock', 'Robot-Arm']. What function it may be? Can Stone be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['List', 'File', 'Float', 'Class', 'Tuple', 'Boolean'], and this function cannot be performed by these tools: ['Fabric', 'Optical-Disc', 'Desk', 'Flash-Drive', 'Flagpole', 'Rocking-Horse']. What function it may be? Can String be used to perform this function? Can Recording-Software be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Dial', 'Slider', 'Button', 'Joystick', 'Pedal'], and this function cannot be performed by these tools: ['Digital-Level', 'Mouse', 'Clamp', 'Paper', 'Bobbins', 'Napkin']. What function it may be? Can Handle be used to perform this function? Can Spirit-Level be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Smartwatch', 'Laptop', 'Smart-TV', 'Smart-Speaker', 'Printer'], and this function cannot be performed by these tools: ['Needle', 'Polish-Flag', 'Sound-Card', 'Staple-Punch', 'Rugby-Ball', 'Refrigerator']. What function it may be? Can Tablet be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Mouse', 'Joystick', 'Light-Switch', 'Touchscreen-Monitor', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['CSV-Files', 'Rag', 'Jump-Rope', 'Pitchfork', 'Crimp-Tool', 'Paintbrush-Holder']. What function it may be? Can Tablet be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['List', 'Class', 'Tuple', 'String', 'Float', 'Boolean'], and this function cannot be performed by these tools: ['Fabric', 'Optical-Disc', 'Desk', 'Recording-Software', 'Flash-Drive', 'Flagpole']. What function it may be? Can File be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Smartphone', 'Smart-TV', 'Laptop', 'Smart-Speaker', 'Smartwatch'], and this function cannot be performed by these tools: ['Refrigerator', 'Rugby-Ball', 'Staple-Punch', 'Polish-Flag', 'Needle', 'Sharpener']. What function it may be? Can Printer be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Monitor', 'Mouse', 'Scanner', 'Speakers', 'Webcam'], and this function cannot be performed by these tools: ['Paint-Palette', 'Smartwatch', 'CSV-File', 'Tow-Truck', 'Pressure-Gauge', 'Door']. What function it may be? Can Gamepad be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Floor', 'Bookshelf', 'Cabinet', 'Chair', 'Desk'], and this function cannot be performed by these tools: ['Table-Saw', 'API-Endpoints', 'Thimble', 'Cabinet-Handle', 'Diaphragm', 'Raspberry-Pi']. What function it may be? Can Wall be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Clay', 'Stone', 'Plaster', 'Styrofoam', 'Wooden-Block'], and this function cannot be performed by these tools: ['Hacksaw', 'Anchors', 'Padlock', 'Tile-Saw', 'Robot-Arm', 'Scrub-Brush']. What function it may be? Can Balsa-Wood be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Cargo-Container', 'Wheelbarrow', 'Pallet-Jack', 'Crane', 'Hand-Truck'], and this function cannot be performed by these tools: ['Crimp-Caps', 'Crowbar', 'Clip', 'Anvil', 'Handle', 'Tow-Truck']. What function it may be? Can Dolly be used to perform this function? Can HTML-Tables be used to perform this function?
There is a function that can be performed by these tools: ['Touchscreen-Monitor', 'Game-Controller', 'Joystick', 'Tablet', 'Light-Switch', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Pitchfork', 'CSV-Files', 'Robot-Car', 'Jump-Rope', 'Rag', 'Crimp-Tool']. What function it may be? Can Mouse be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Chain', 'Rope', 'Towel', 'Handle', 'Hook', 'Cable'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Clamp', 'Napkin', 'Storage-Device', 'Soldering-Iron', 'Beam']. What function it may be? Can Bungee-Cord be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Wooden-Block', 'Clay', 'Plaster', 'Cardboard', 'Styrofoam'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Tile-Saw', 'Smartphone', 'Robot-Arm', 'Hacksaw', 'Padlock']. What function it may be? Can Balsa-Wood be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Bungee-Cord', 'Rope', 'Chain', 'Cable', 'Hook', 'Handle'], and this function cannot be performed by these tools: ['Clamp', 'Soldering-Iron', 'Rugby-Ball', 'Storage-Device', 'Paint-Brush-Cleaner', 'Beam']. What function it may be? Can Towel be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Docks', 'Buoys', 'Piers', 'Wharfs', 'Boats'], and this function cannot be performed by these tools: ['Microcontroller', 'Sticky-Notes', 'Descenders', 'Circular-Saw', 'Clamps', 'Strain-Gauge']. What function it may be? Can Floating-Logs be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Bookshelf', 'Desk', 'Cabinet', 'Floor', 'Door'], and this function cannot be performed by these tools: ['Thimble', 'Raspberry-Pi', 'Cabinet-Handle', 'API-Endpoints', 'Drill-Press', 'Diaphragm']. What function it may be? Can Chair be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'List', 'String', 'Boolean', 'Float', 'File'], and this function cannot be performed by these tools: ['Optical-Disc', 'Recording-Software', 'Flagpole', 'Desk', 'Fabric', 'Flash-Drive']. What function it may be? Can Class be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Laptop', 'Drone', 'Desktop-Computer', 'Smartphone', 'Robot'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Robot-Vacuum', 'Yarn', 'Golf-Ball', 'Vice', 'Dice-Shaker']. What function it may be? Can Microcontroller be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smartwatch', 'Smart-Speaker', 'Smartphone', 'Tablet', 'Smart-TV'], and this function cannot be performed by these tools: ['Refrigerator', 'Sharpener', 'Staple-Punch', 'Polish-Flag', 'Needle', 'Sound-Card']. What function it may be? Can Printer be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Cabinet', 'Wall', 'Floor', 'Bookshelf', 'Door'], and this function cannot be performed by these tools: ['Thimble', 'Drill-Press', 'Raspberry-Pi', 'API-Endpoints', 'Cabinet-Handle', 'Table-Saw']. What function it may be? Can Desk be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Pilings', 'Wharfs', 'Floating-Logs', 'Docks', 'Boats'], and this function cannot be performed by these tools: ['Socket', 'Clamps', 'Microcontroller', 'Circular-Saw', 'Strain-Gauge', 'Sticky-Notes']. What function it may be? Can Buoys be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Dial', 'Joystick', 'Slider', 'Button', 'Pedal'], and this function cannot be performed by these tools: ['Spirit-Level', 'Paper', 'Clamp', 'Napkin', 'Digital-Level', 'Bobbins']. What function it may be? Can Handle be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Speakers', 'Scanner', 'Microphone', 'Gamepad', 'Monitor'], and this function cannot be performed by these tools: ['Door', 'Pressure-Gauge', 'Tow-Truck', 'Smartwatch', 'Paint-Palette', 'Leather']. What function it may be? Can Webcam be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['Hand-Truck', 'Pallet-Jack', 'Wheelbarrow', 'Crane', 'Dolly', 'Forklift'], and this function cannot be performed by these tools: ['HTML-Tables', 'Crowbar', 'Tow-Truck', 'Clip', 'Crimp-Caps', 'Handle']. What function it may be? Can Cargo-Container be used to perform this function? Can Anvil be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Smartphone', 'Drone', 'Robot', 'Tablet', 'Laptop'], and this function cannot be performed by these tools: ['Ceiling', 'Golf-Ball', 'Yarn', 'Garage-Door-Lock', 'Dice-Shaker', 'Robot-Vacuum']. What function it may be? Can Desktop-Computer be used to perform this function? Can Vice be used to perform this function?
There is a function that can be performed by these tools: ['Clay', 'Cardboard', 'Plaster', 'Balsa-Wood', 'Styrofoam', 'Stone'], and this function cannot be performed by these tools: ['Tile-Saw', 'Padlock', 'Hacksaw', 'Scrub-Brush', 'Robot-Arm', 'Smartphone']. What function it may be? Can Wooden-Block be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Paper-Clip', 'White-Out', 'Stapler', 'Pen', 'Glue-Stick'], and this function cannot be performed by these tools: ['Bench', 'USB-Mouse', 'Jigsaw', 'Calculator', 'Memory-Card', 'Tightrope']. What function it may be? Can Highlighter be used to perform this function? Can Screwdriver-Bit be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Joystick', 'Button', 'Handle', 'Slider', 'Switch'], and this function cannot be performed by these tools: ['Napkin', 'Clamp', 'Spirit-Level', 'Bobbins', 'Digital-Level', 'Mouse']. What function it may be? Can Pedal be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Cable', 'Bungee-Cord', 'Hook', 'Chain', 'Towel'], and this function cannot be performed by these tools: ['Napkin', 'Storage-Device', 'Clamp', 'Rugby-Ball', 'Paint-Brush-Cleaner', 'Soldering-Iron']. What function it may be? Can Rope be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Joystick', 'Speakers', 'USB-Drive', 'Monitor', 'Printer'], and this function cannot be performed by these tools: ['Robot-Dog', 'LED-Lights', 'Chalkboard', 'Polish-Music-Instruments', 'Vegetables', 'Paint-Tray']. What function it may be? Can Headphones be used to perform this function? Can Mixer be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Recording-Software', 'Audio-Interface', 'Speakers', 'Microphone'], and this function cannot be performed by these tools: ['Storage-Device', 'Netting', 'Scissor-Lift', 'Seam-Ripper', 'Pulley', 'Ribbon']. What function it may be? Can Cables be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'USB-Drive', 'Webcam', 'Keyboard', 'Mouse', 'Monitor'], and this function cannot be performed by these tools: ['Compass', 'Staple-Punch', 'Dremel-Tool', 'Ohmmeter', 'Helmets', 'Measuring-Tape']. What function it may be? Can Microphone be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Smart-TV', 'Smartphone', 'Laptop', 'Smartwatch', 'Printer'], and this function cannot be performed by these tools: ['Polish-Flag', 'Rugby-Ball', 'Refrigerator', 'Sound-Card', 'Staple-Punch', 'Needle']. What function it may be? Can Tablet be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Boats', 'Docks', 'Buoys', 'Piers', 'Wharfs'], and this function cannot be performed by these tools: ['Circular-Saw', 'Strain-Gauge', 'Sticky-Notes', 'Clamps', 'Socket', 'Microcontroller']. What function it may be? Can Floating-Logs be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Smartwatch', 'Smart-TV', 'Tablet', 'Smart-Speaker', 'Printer'], and this function cannot be performed by these tools: ['Needle', 'Rugby-Ball', 'Polish-Flag', 'Refrigerator', 'Staple-Punch', 'Sharpener']. What function it may be? Can Laptop be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Light-Switch', 'Gesture-Sensor', 'Tablet', 'Mouse', 'Game-Controller'], and this function cannot be performed by these tools: ['Crimp-Tool', 'Paintbrush-Holder', 'Rag', 'Jump-Rope', 'Robot-Car', 'CSV-Files']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'List', 'Float', 'Boolean', 'File', 'String'], and this function cannot be performed by these tools: ['Fabric', 'Desk', 'Optical-Disc', 'Rocking-Horse', 'Recording-Software', 'Flash-Drive']. What function it may be? Can Tuple be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Smartwatch', 'Laptop', 'Smart-TV', 'Tablet', 'Smart-Speaker', 'Smartphone'], and this function cannot be performed by these tools: ['Refrigerator', 'Sound-Card', 'Rugby-Ball', 'Polish-Flag', 'Staple-Punch', 'Needle']. What function it may be? Can Printer be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Gesture-Sensor', 'Game-Controller', 'Tablet', 'Joystick', 'Mouse'], and this function cannot be performed by these tools: ['Pitchfork', 'Rag', 'Paintbrush-Holder', 'CSV-Files', 'Jump-Rope', 'Robot-Car']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Crimp-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'String', 'Tuple', 'Boolean', 'Float', 'File'], and this function cannot be performed by these tools: ['Recording-Software', 'Optical-Disc', 'Rocking-Horse', 'Flagpole', 'Flash-Drive', 'Fabric']. What function it may be? Can List be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Tablet', 'Smartphone', 'Printer', 'Smart-Speaker', 'Smart-TV'], and this function cannot be performed by these tools: ['Refrigerator', 'Staple-Punch', 'Sound-Card', 'Rugby-Ball', 'Polish-Flag', 'Sharpener']. What function it may be? Can Smartwatch be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'Float', 'Boolean', 'File', 'Class', 'List'], and this function cannot be performed by these tools: ['Fabric', 'Recording-Software', 'Flagpole', 'Rocking-Horse', 'Flash-Drive', 'Optical-Disc']. What function it may be? Can String be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Adhesives', 'Screws', 'Staples', 'Nails', 'Clamps', 'Anchors'], and this function cannot be performed by these tools: ['Awl', 'Clock', 'Table-Saw', 'Lace', 'Dictionary', 'Gamepad']. What function it may be? Can Rivets be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Button', 'Handle', 'Pedal', 'Switch', 'Slider', 'Dial'], and this function cannot be performed by these tools: ['Digital-Level', 'Clamp', 'Napkin', 'Mouse', 'Paper', 'Spirit-Level']. What function it may be? Can Joystick be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'USB-Flash-Drive', 'Router', 'Monitor', 'Smartphone', 'Laptop'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Robot-Vacuum', 'Crate', 'Wheel', 'Copper-Wire', 'Seam-Ripper']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Pen', 'White-Out', 'Scissors', 'Paper-Clip', 'Highlighter', 'Glue-Stick'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Bench', 'Calculator', 'Memory-Card', 'USB-Mouse', 'Jigsaw']. What function it may be? Can Stapler be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Webcam', 'Keyboard', 'USB-Drive', 'Monitor', 'Mouse'], and this function cannot be performed by these tools: ['Compass', 'Staple-Punch', 'Tug-of-War-Rope', 'Ohmmeter', 'Measuring-Tape', 'Dremel-Tool']. What function it may be? Can Headphones be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Screws', 'Staples', 'Adhesives', 'Rivets', 'Clamps', 'Nails'], and this function cannot be performed by these tools: ['Table-Saw', 'Awl', 'Dictionary', 'SD-Card', 'Gamepad', 'Clock']. What function it may be? Can Anchors be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Pilings', 'Piers', 'Wharfs', 'Buoys', 'Docks'], and this function cannot be performed by these tools: ['Circular-Saw', 'Sticky-Notes', 'Clamps', 'Socket', 'Descenders', 'Strain-Gauge']. What function it may be? Can Boats be used to perform this function? Can Microcontroller be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'File', 'Pencil', 'Drill-Bit', 'Screwdriver', 'Chisel'], and this function cannot be performed by these tools: ['LED-Lights', 'Table-Saw', 'Luggage-Lock', 'Clay', 'Cheese', 'Padlock']. What function it may be? Can Hammer be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Joystick', 'Switch', 'Button', 'Pedal', 'Slider'], and this function cannot be performed by these tools: ['Paper', 'Clamp', 'Spirit-Level', 'Bobbins', 'Napkin', 'Mouse']. What function it may be? Can Handle be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Monitor', 'Keyboard', 'Mouse', 'Microphone', 'USB-Drive'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Tug-of-War-Rope', 'Compass', 'Ohmmeter', 'Staple-Punch', 'Dremel-Tool']. What function it may be? Can Webcam be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Crowbar', 'Hammer', 'Saw', 'Drill', 'Pliers'], and this function cannot be performed by these tools: ['Door', 'Wharfs', 'Scissors', 'Buoys', 'Boolean', 'Flash-Memory-Card']. What function it may be? Can Rope be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Button', 'Dial', 'Switch', 'Handle', 'Pedal'], and this function cannot be performed by these tools: ['Paper', 'Mouse', 'Clamp', 'Digital-Level', 'Bobbins', 'Spirit-Level']. What function it may be? Can Slider be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Robot', 'Raspberry-Pi', 'Computer', 'Drone', 'Sensor'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Robot-Vacuum', 'Joystick', 'Stopwatch', 'Excel-Spreadsheet', 'Plate']. What function it may be? Can GPS-Tracker be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'USB-Flash-Drive', 'Smartphone', 'External-Hard-Drive', 'Router', 'Keyboard'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Robot-Vacuum', 'Copper-Wire', 'Crate', 'Wheel', 'Fishing-Rod']. What function it may be? Can Monitor be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Boats', 'Buoys', 'Wharfs', 'Docks', 'Piers', 'Floating-Logs'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Strain-Gauge', 'Microcontroller', 'Descenders', 'Clamps', 'Circular-Saw']. What function it may be? Can Pilings be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'External-Hard-Drive', 'USB-Flash-Drive', 'Laptop', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Wheel', 'Copper-Wire', 'Crate', 'Robot-Vacuum', 'Fishing-Rod', 'Seam-Ripper']. What function it may be? Can Router be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Chair', 'Desk', 'Stool', 'Bed', 'Bookshelf'], and this function cannot be performed by these tools: ['Yarn', 'Doorknob', 'Cardboard', 'Magnetic-Tape', 'Cane', 'Mailbox-Lock']. What function it may be? Can Cabinet be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Pliers', 'Hammer', 'Saw', 'Drill', 'Crowbar', 'Tape-Measure'], and this function cannot be performed by these tools: ['Scissors', 'Wharfs', 'Buoys', 'Flash-Memory-Card', 'Boolean', 'Rug']. What function it may be? Can Rope be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Highlighter', 'Scissors', 'Glue-Stick', 'Pen', 'Paper-Clip'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Calculator', 'Tightrope', 'Bench', 'Memory-Card', 'Jigsaw']. What function it may be? Can Stapler be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['USB-Flash-Drive', 'Smartphone', 'Router', 'External-Hard-Drive', 'Laptop', 'Keyboard'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Crate', 'Fishing-Rod', 'Robot-Vacuum', 'Copper-Wire', 'Wheel']. What function it may be? Can Monitor be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Bookshelf', 'Cabinet', 'Chair', 'Bed', 'Desk'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Doorknob', 'Robot-Arm', 'Cane', 'Cardboard', 'Mailbox-Lock']. What function it may be? Can Couch be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Pedal', 'Slider', 'Handle', 'Dial', 'Switch', 'Button'], and this function cannot be performed by these tools: ['Bobbins', 'Spirit-Level', 'Paper', 'Napkin', 'Mouse', 'Clamp']. What function it may be? Can Joystick be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Smart-TV', 'Printer', 'Tablet', 'Smartwatch'], and this function cannot be performed by these tools: ['Sharpener', 'Refrigerator', 'Rugby-Ball', 'Polish-Flag', 'Sound-Card', 'Staple-Punch']. What function it may be? Can Smart-Speaker be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Monitor', 'USB-Flash-Drive', 'Keyboard', 'Laptop', 'Router'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Robot-Vacuum', 'Crate', 'Docks', 'Wheel', 'Copper-Wire']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'USB-Drive', 'Joystick', 'Headphones', 'Printer', 'Monitor'], and this function cannot be performed by these tools: ['Paint-Tray', 'Mixer', 'Robot-Dog', 'LED-Lights', 'Vegetables', 'Chalkboard']. What function it may be? Can Keyboard be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Light-Switch', 'Joystick', 'Gesture-Sensor', 'Game-Controller', 'Mouse'], and this function cannot be performed by these tools: ['Jump-Rope', 'Crimp-Tool', 'Robot-Car', 'CSV-Files', 'Rag', 'Paintbrush-Holder']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Headphones', 'Microphone', 'Monitor', 'USB-Drive', 'Keyboard'], and this function cannot be performed by these tools: ['Helmets', 'Ohmmeter', 'Measuring-Tape', 'Compass', 'Staple-Punch', 'Tug-of-War-Rope']. What function it may be? Can Mouse be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Bed', 'Dresser', 'Table', 'Bookshelf', 'Stool'], and this function cannot be performed by these tools: ['Dodecahedron', 'Anchors', 'Ribbon', 'Filter', 'Memory-Card', 'Glass']. What function it may be? Can Cabinet be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Chisel', 'Screwdriver', 'Drill-Bit', 'Pencil', 'File'], and this function cannot be performed by these tools: ['Table-Saw', 'Luggage-Lock', 'Cheese', 'Desktop-Computer', 'Padlock', 'Clay']. What function it may be? Can Hacksaw be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Bungee-Cord', 'Rope', 'Hook', 'Chain', 'Towel', 'Handle'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Napkin', 'Paint-Brush-Cleaner', 'Clamp', 'Storage-Device', 'Beam']. What function it may be? Can Cable be used to perform this function? Can Soldering-Iron be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Microphone', 'Mouse', 'Monitor', 'Scanner', 'Gamepad'], and this function cannot be performed by these tools: ['CSV-File', 'Door', 'Pressure-Gauge', 'Tow-Truck', 'Leather', 'Smartwatch']. What function it may be? Can Webcam be used to perform this function? Can Paint-Palette be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Chair', 'Cabinet', 'Bookshelf', 'Floor', 'Wall'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Diaphragm', 'Drill-Press', 'Cabinet-Handle', 'Table-Saw']. What function it may be? Can Door be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Towel', 'Hook', 'Rope', 'Bungee-Cord', 'Handle', 'Chain'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Clamp', 'Napkin', 'Paint-Brush-Cleaner', 'Storage-Device', 'Beam']. What function it may be? Can Cable be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Monitor', 'Mouse', 'USB-Drive', 'Microphone', 'Webcam'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Compass', 'Measuring-Tape', 'Ohmmeter', 'Tug-of-War-Rope', 'Helmets']. What function it may be? Can Keyboard be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Desktop-Computer', 'Tablet', 'Laptop', 'Microcontroller', 'Drone'], and this function cannot be performed by these tools: ['Ceiling', 'Robot-Vacuum', 'Yarn', 'Vice', 'Dice-Shaker', 'Golf-Ball']. What function it may be? Can Robot be used to perform this function? Can Garage-Door-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Monitor', 'Headphones', 'Keyboard', 'USB-Drive', 'Speakers'], and this function cannot be performed by these tools: ['Chalkboard', 'Polish-Music-Instruments', 'Vegetables', 'Robot-Dog', 'LED-Lights', 'Mixer']. What function it may be? Can Printer be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Robot', 'Computer', 'Drone', 'Sensor', 'Microcontroller'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Stopwatch', 'Joystick', 'Laptop', 'Plate', 'Magnetic-Tape']. What function it may be? Can GPS-Tracker be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Monitor', 'USB-Drive', 'Microphone', 'Keyboard', 'Headphones'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Staple-Punch', 'Compass', 'Helmets', 'Ohmmeter', 'Tug-of-War-Rope']. What function it may be? Can Webcam be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Tape-Measure', 'Saw', 'Pliers', 'Drill', 'Crowbar'], and this function cannot be performed by these tools: ['Scissors', 'Flash-Memory-Card', 'Door', 'Buoys', 'Rug', 'Wharfs']. What function it may be? Can Rope be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Microcontroller', 'Robot', 'Drone', 'Sensor', 'Computer'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Joystick', 'Robot-Vacuum', 'Stopwatch', 'Plate', 'Laptop']. What function it may be? Can GPS-Tracker be used to perform this function? Can Excel-Spreadsheet be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Wall', 'Door', 'Floor', 'Desk', 'Bookshelf'], and this function cannot be performed by these tools: ['Table-Saw', 'API-Endpoints', 'Raspberry-Pi', 'Diaphragm', 'Cabinet-Handle', 'Drill-Press']. What function it may be? Can Cabinet be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Robot', 'GPS-Tracker', 'Sensor', 'Microcontroller', 'Computer'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Excel-Spreadsheet', 'Stopwatch', 'Magnetic-Tape', 'Plate', 'Joystick']. What function it may be? Can Raspberry-Pi be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Smartwatch', 'Smartphone', 'Laptop', 'Smart-Speaker', 'Printer', 'Smart-TV'], and this function cannot be performed by these tools: ['Staple-Punch', 'Refrigerator', 'Polish-Flag', 'Sound-Card', 'Needle', 'Sharpener']. What function it may be? Can Tablet be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Microphone', 'Mouse', 'Webcam', 'Speakers', 'Gamepad'], and this function cannot be performed by these tools: ['Door', 'Paint-Palette', 'Pressure-Gauge', 'Smartwatch', 'Tow-Truck', 'CSV-File']. What function it may be? Can Scanner be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Mouse', 'Light-Switch', 'Tablet', 'Game-Controller', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'CSV-Files', 'Jump-Rope', 'Rag', 'Crimp-Tool', 'Robot-Car']. What function it may be? Can Gesture-Sensor be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'Drill-Bit', 'Chisel', 'Hammer', 'Pencil', 'Screwdriver'], and this function cannot be performed by these tools: ['Table-Saw', 'Clay', 'Padlock', 'Cheese', 'LED-Lights', 'Desktop-Computer']. What function it may be? Can File be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Microphone', 'Headphones', 'Webcam', 'Mouse', 'Keyboard'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Staple-Punch', 'Tug-of-War-Rope', 'Measuring-Tape', 'Compass', 'Ohmmeter']. What function it may be? Can Monitor be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Microcontroller', 'Raspberry-Pi', 'Sensor', 'Computer', 'Drone'], and this function cannot be performed by these tools: ['Joystick', 'Robot-Vacuum', 'Magnetic-Tape', 'Stopwatch', 'Plate', 'Excel-Spreadsheet']. What function it may be? Can Robot be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Stool', 'Scale', 'Plank', 'See-Saw', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Pulley', 'Web-Pages', 'Printer', 'Polish-Jewelry', 'Class', 'Processor']. What function it may be? Can Tightrope be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Microcontroller', 'Sensor', 'Raspberry-Pi', 'Drone', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Joystick', 'Stopwatch', 'Plate', 'Laptop', 'Excel-Spreadsheet']. What function it may be? Can Robot be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Bed', 'Stool', 'Chair', 'Bookshelf', 'Cabinet'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Yarn', 'Cardboard', 'Mailbox-Lock', 'Doorknob', 'Cane']. What function it may be? Can Desk be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Cabinet', 'Dresser', 'Stool', 'Table', 'Chair'], and this function cannot be performed by these tools: ['Ribbon', 'Anchors', 'Socket-Set', 'Filter', 'Dodecahedron', 'Glass']. What function it may be? Can Bookshelf be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Monitor', 'Router', 'Keyboard', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Wheel', 'Seam-Ripper', 'Robot-Vacuum', 'Crate', 'Copper-Wire', 'Docks']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Fishing-Rod be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Smartphone', 'Laptop', 'Smart-TV', 'Smart-Speaker', 'Tablet'], and this function cannot be performed by these tools: ['Sharpener', 'Sound-Card', 'Polish-Flag', 'Refrigerator', 'Needle', 'Rugby-Ball']. What function it may be? Can Smartwatch be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Drill-Bit', 'Chisel', 'Pencil', 'Hammer', 'File'], and this function cannot be performed by these tools: ['Luggage-Lock', 'LED-Lights', 'Clay', 'Cheese', 'Table-Saw', 'Desktop-Computer']. What function it may be? Can Hacksaw be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Hammer', 'Crowbar', 'Tape-Measure', 'Pliers', 'Drill'], and this function cannot be performed by these tools: ['Scissors', 'Door', 'Rug', 'Boolean', 'Wharfs', 'Flash-Memory-Card']. What function it may be? Can Saw be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Smartphone', 'USB-Flash-Drive', 'Monitor', 'Keyboard', 'Router'], and this function cannot be performed by these tools: ['Docks', 'Copper-Wire', 'Fishing-Rod', 'Seam-Ripper', 'Crate', 'Robot-Vacuum']. What function it may be? Can Laptop be used to perform this function? Can Wheel be used to perform this function?
There is a function that can be performed by these tools: ['See-Saw', 'Stool', 'Rocking-Horse', 'Tightrope', 'Plank', 'Ruler'], and this function cannot be performed by these tools: ['Printer', 'Polish-Jewelry', 'Web-Pages', 'Class', 'Pulley', 'Processor']. What function it may be? Can Scale be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Drill-Bit', 'Screwdriver', 'File', 'Hacksaw', 'Chisel'], and this function cannot be performed by these tools: ['LED-Lights', 'Luggage-Lock', 'Clay', 'Table-Saw', 'Cheese', 'Padlock']. What function it may be? Can Pencil be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Drill-Bit', 'Hammer', 'Hacksaw', 'Pencil', 'Chisel'], and this function cannot be performed by these tools: ['LED-Lights', 'Cheese', 'Table-Saw', 'Clay', 'Padlock', 'Desktop-Computer']. What function it may be? Can Screwdriver be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Speakers', 'Audio-Interface', 'Microphone', 'Recording-Software', 'Monitor'], and this function cannot be performed by these tools: ['Ribbon', 'Seam-Ripper', 'Scissor-Lift', 'Graph-Paper', 'Storage-Device', 'Pulley']. What function it may be? Can Cables be used to perform this function? Can Netting be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Table', 'Dresser', 'Chair', 'Bookshelf', 'Cabinet'], and this function cannot be performed by these tools: ['Memory-Card', 'Ribbon', 'Socket-Set', 'Anchors', 'Filter', 'Dodecahedron']. What function it may be? Can Bed be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'See-Saw', 'Ruler', 'Rocking-Horse', 'Tightrope', 'Stool'], and this function cannot be performed by these tools: ['Processor', 'Class', 'Printer', 'Hole-Punch', 'Pulley', 'Polish-Jewelry']. What function it may be? Can Scale be used to perform this function? Can Web-Pages be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Chair', 'Door', 'Floor', 'Bookshelf', 'Cabinet'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Diaphragm', 'Table-Saw', 'Thimble', 'Drill-Press', 'API-Endpoints']. What function it may be? Can Desk be used to perform this function? Can Raspberry-Pi be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Gesture-Sensor', 'Joystick', 'Light-Switch', 'Game-Controller', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Crimp-Tool', 'Pitchfork', 'Rag', 'Paintbrush-Holder', 'Robot-Car', 'CSV-Files']. What function it may be? Can Tablet be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Plank', 'Tightrope', 'Rocking-Horse', 'See-Saw', 'Ruler'], and this function cannot be performed by these tools: ['Pulley', 'Printer', 'Polish-Jewelry', 'Hole-Punch', 'Web-Pages', 'Class']. What function it may be? Can Scale be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['String', 'Tuple', 'Class', 'List', 'Float', 'File'], and this function cannot be performed by these tools: ['Desk', 'Fabric', 'Flash-Drive', 'Recording-Software', 'Rocking-Horse', 'Flagpole']. What function it may be? Can Boolean be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Joystick', 'Monitor', 'Headphones', 'USB-Drive', 'Speakers'], and this function cannot be performed by these tools: ['Chalkboard', 'Paint-Tray', 'Robot-Dog', 'Mixer', 'LED-Lights', 'Vegetables']. What function it may be? Can Keyboard be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Scanner', 'Monitor', 'Speakers', 'Webcam', 'Microphone', 'Mouse'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'Door', 'CSV-File', 'Tow-Truck', 'Paint-Palette', 'Smartwatch']. What function it may be? Can Gamepad be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Stool', 'Bed', 'Cabinet', 'Couch', 'Chair'], and this function cannot be performed by these tools: ['Robot-Arm', 'Doorknob', 'Cardboard', 'Cane', 'Magnetic-Tape', 'Yarn']. What function it may be? Can Desk be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Monitor', 'Mouse', 'Webcam', 'Headphones', 'Microphone'], and this function cannot be performed by these tools: ['Compass', 'Measuring-Tape', 'Ohmmeter', 'Helmets', 'Staple-Punch', 'Dremel-Tool']. What function it may be? Can USB-Drive be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Couch', 'Cabinet', 'Stool', 'Bed', 'Chair'], and this function cannot be performed by these tools: ['Cane', 'Magnetic-Tape', 'Robot-Arm', 'Cardboard', 'Mailbox-Lock', 'Doorknob']. What function it may be? Can Bookshelf be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Paper-Clip', 'Glue-Stick', 'Pen', 'Highlighter', 'Scissors'], and this function cannot be performed by these tools: ['USB-Mouse', 'Bench', 'Calculator', 'Memory-Card', 'Screwdriver-Bit', 'Tightrope']. What function it may be? Can Stapler be used to perform this function? Can Jigsaw be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Chair', 'Cabinet', 'Bookshelf', 'Floor', 'Door'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Raspberry-Pi', 'API-Endpoints', 'Table-Saw', 'Drill-Press', 'Thimble']. What function it may be? Can Desk be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Computer', 'Raspberry-Pi', 'GPS-Tracker', 'Robot', 'Drone'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Plate', 'Excel-Spreadsheet', 'Stopwatch', 'Robot-Vacuum', 'Laptop']. What function it may be? Can Sensor be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Computer', 'Sensor', 'GPS-Tracker', 'Raspberry-Pi', 'Drone'], and this function cannot be performed by these tools: ['Plate', 'Laptop', 'Joystick', 'Magnetic-Tape', 'Robot-Vacuum', 'Stopwatch']. What function it may be? Can Microcontroller be used to perform this function? Can Excel-Spreadsheet be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'GPS-Tracker', 'Drone', 'Microcontroller', 'Robot', 'Computer'], and this function cannot be performed by these tools: ['Joystick', 'Robot-Vacuum', 'Stopwatch', 'Laptop', 'Magnetic-Tape', 'Plate']. What function it may be? Can Sensor be used to perform this function? Can Excel-Spreadsheet be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Door', 'Wall', 'Chair', 'Cabinet'], and this function cannot be performed by these tools: ['Diaphragm', 'Thimble', 'API-Endpoints', 'Raspberry-Pi', 'Cabinet-Handle', 'Drill-Press']. What function it may be? Can Floor be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Bed', 'Stool', 'Dresser', 'Cabinet', 'Bookshelf'], and this function cannot be performed by these tools: ['Socket-Set', 'Filter', 'Anchors', 'Ribbon', 'Glass', 'Dodecahedron']. What function it may be? Can Table be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Desk', 'Chair', 'Door', 'Bookshelf', 'Wall'], and this function cannot be performed by these tools: ['Diaphragm', 'Table-Saw', 'Raspberry-Pi', 'Drill-Press', 'Cabinet-Handle', 'API-Endpoints']. What function it may be? Can Floor be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Towel', 'Chain', 'Rope', 'Cable', 'Handle'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Napkin', 'Paint-Brush-Cleaner', 'Beam', 'Soldering-Iron', 'Storage-Device']. What function it may be? Can Bungee-Cord be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Hand-Truck', 'Crane', 'Forklift', 'Pallet-Jack', 'Cargo-Container'], and this function cannot be performed by these tools: ['Anvil', 'Clip', 'Crowbar', 'HTML-Tables', 'Crimp-Caps', 'Tow-Truck']. What function it may be? Can Wheelbarrow be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Recording-Software', 'Audio-Interface', 'Monitor', 'Microphone', 'Cables'], and this function cannot be performed by these tools: ['Pulley', 'Storage-Device', 'Scissor-Lift', 'Graph-Paper', 'Ribbon', 'Netting']. What function it may be? Can Speakers be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Webcam', 'Headphones', 'Mouse', 'Microphone', 'Monitor'], and this function cannot be performed by these tools: ['Staple-Punch', 'Tug-of-War-Rope', 'Dremel-Tool', 'Helmets', 'Ohmmeter', 'Measuring-Tape']. What function it may be? Can Keyboard be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Hammer', 'Chisel', 'Pencil', 'Screwdriver', 'Hacksaw'], and this function cannot be performed by these tools: ['LED-Lights', 'Cheese', 'Desktop-Computer', 'Table-Saw', 'Clay', 'Padlock']. What function it may be? Can File be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Microphone', 'Monitor', 'Mouse', 'USB-Drive', 'Headphones'], and this function cannot be performed by these tools: ['Helmets', 'Tug-of-War-Rope', 'Staple-Punch', 'Compass', 'Measuring-Tape', 'Ohmmeter']. What function it may be? Can Webcam be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Bed', 'Cabinet', 'Desk', 'Couch', 'Bookshelf'], and this function cannot be performed by these tools: ['Cane', 'Yarn', 'Cardboard', 'Magnetic-Tape', 'Mailbox-Lock', 'Robot-Arm']. What function it may be? Can Chair be used to perform this function? Can Doorknob be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Cabinet', 'Bed', 'Couch', 'Stool', 'Chair'], and this function cannot be performed by these tools: ['Cane', 'Doorknob', 'Robot-Arm', 'Yarn', 'Cardboard', 'Magnetic-Tape']. What function it may be? Can Bookshelf be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Laptop', 'Monitor', 'Router', 'Smartphone', 'Keyboard'], and this function cannot be performed by these tools: ['Docks', 'Wheel', 'Fishing-Rod', 'Seam-Ripper', 'Copper-Wire', 'Crate']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Chisel', 'Screwdriver', 'Hammer', 'Hacksaw', 'Pencil'], and this function cannot be performed by these tools: ['Cheese', 'Clay', 'Table-Saw', 'Padlock', 'LED-Lights', 'Luggage-Lock']. What function it may be? Can Drill-Bit be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Cargo-Container', 'Crane', 'Forklift', 'Dolly', 'Wheelbarrow', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Crowbar', 'Tow-Truck', 'Anvil', 'Clip', 'HTML-Tables', 'Handle']. What function it may be? Can Hand-Truck be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'GPS-Tracker', 'Sensor', 'Raspberry-Pi', 'Microcontroller', 'Drone'], and this function cannot be performed by these tools: ['Plate', 'Magnetic-Tape', 'Stopwatch', 'Laptop', 'Excel-Spreadsheet', 'Joystick']. What function it may be? Can Robot be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Anchors', 'Nails', 'Rivets', 'Screws', 'Staples', 'Clamps'], and this function cannot be performed by these tools: ['Table-Saw', 'SD-Card', 'Clock', 'Dictionary', 'Awl', 'Gamepad']. What function it may be? Can Adhesives be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Microphone', 'Headphones', 'Mouse', 'USB-Drive', 'Monitor'], and this function cannot be performed by these tools: ['Compass', 'Dremel-Tool', 'Tug-of-War-Rope', 'Helmets', 'Measuring-Tape', 'Ohmmeter']. What function it may be? Can Webcam be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Hammer', 'Crowbar', 'Saw', 'Drill', 'Pliers'], and this function cannot be performed by these tools: ['Scissors', 'Boolean', 'Rug', 'Flash-Memory-Card', 'Door', 'Wharfs']. What function it may be? Can Tape-Measure be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Plank', 'Tightrope', 'Ruler', 'Scale', 'Stool'], and this function cannot be performed by these tools: ['Pulley', 'Printer', 'Web-Pages', 'Processor', 'Class', 'Hole-Punch']. What function it may be? Can See-Saw be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Clay', 'Balsa-Wood', 'Wooden-Block', 'Stone', 'Styrofoam', 'Cardboard'], and this function cannot be performed by these tools: ['Anchors', 'Scrub-Brush', 'Padlock', 'Hacksaw', 'Robot-Arm', 'Smartphone']. What function it may be? Can Plaster be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Recording-Software', 'Audio-Interface', 'Mouse', 'Microphone', 'Cables'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Netting', 'Graph-Paper', 'Storage-Device', 'Ribbon', 'Pulley']. What function it may be? Can Speakers be used to perform this function? Can Scissor-Lift be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Staples', 'Clamps', 'Screws', 'Anchors', 'Rivets'], and this function cannot be performed by these tools: ['Dictionary', 'Clock', 'Lace', 'Gamepad', 'SD-Card', 'Awl']. What function it may be? Can Adhesives be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'Float', 'String', 'Boolean', 'Class', 'List'], and this function cannot be performed by these tools: ['Fabric', 'Recording-Software', 'Optical-Disc', 'Flagpole', 'Desk', 'Rocking-Horse']. What function it may be? Can File be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Clamps', 'Adhesives', 'Anchors', 'Staples', 'Rivets'], and this function cannot be performed by these tools: ['Lace', 'Table-Saw', 'Clock', 'Awl', 'Gamepad', 'Dictionary']. What function it may be? Can Screws be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Monitor', 'Headphones', 'Mouse', 'Microphone', 'Webcam'], and this function cannot be performed by these tools: ['Tug-of-War-Rope', 'Compass', 'Dremel-Tool', 'Ohmmeter', 'Helmets', 'Measuring-Tape']. What function it may be? Can USB-Drive be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'File', 'String', 'Tuple', 'Class', 'List'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Recording-Software', 'Flagpole', 'Optical-Disc', 'Desk', 'Flash-Drive']. What function it may be? Can Float be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Hammer', 'Pencil', 'File', 'Chisel', 'Hacksaw'], and this function cannot be performed by these tools: ['Cheese', 'Padlock', 'Clay', 'Desktop-Computer', 'LED-Lights', 'Table-Saw']. What function it may be? Can Drill-Bit be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Clay', 'Plaster', 'Stone', 'Balsa-Wood', 'Wooden-Block', 'Cardboard'], and this function cannot be performed by these tools: ['Hacksaw', 'Scrub-Brush', 'Anchors', 'Tile-Saw', 'Smartphone', 'Robot-Arm']. What function it may be? Can Styrofoam be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Boats', 'Wharfs', 'Buoys', 'Docks', 'Pilings'], and this function cannot be performed by these tools: ['Clamps', 'Strain-Gauge', 'Descenders', 'Sticky-Notes', 'Microcontroller', 'Socket']. What function it may be? Can Piers be used to perform this function? Can Circular-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Smartphone', 'Tablet', 'Laptop', 'Smartwatch', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Needle', 'Staple-Punch', 'Polish-Flag', 'Refrigerator', 'Rugby-Ball', 'Sharpener']. What function it may be? Can Printer be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Floor', 'Door', 'Chair', 'Cabinet', 'Wall', 'Bookshelf'], and this function cannot be performed by these tools: ['API-Endpoints', 'Diaphragm', 'Table-Saw', 'Drill-Press', 'Cabinet-Handle', 'Raspberry-Pi']. What function it may be? Can Desk be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'White-Out', 'Stapler', 'Scissors', 'Glue-Stick', 'Pen'], and this function cannot be performed by these tools: ['Calculator', 'Bench', 'Tightrope', 'Screwdriver-Bit', 'Jigsaw', 'USB-Mouse']. What function it may be? Can Highlighter be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Drone', 'GPS-Tracker', 'Raspberry-Pi', 'Computer', 'Microcontroller'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Stopwatch', 'Robot-Vacuum', 'Plate', 'Magnetic-Tape', 'Laptop']. What function it may be? Can Sensor be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'See-Saw', 'Ruler', 'Plank', 'Stool', 'Scale'], and this function cannot be performed by these tools: ['Hole-Punch', 'Web-Pages', 'Processor', 'Pulley', 'Printer', 'Polish-Jewelry']. What function it may be? Can Tightrope be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['Cable', 'Hook', 'Bungee-Cord', 'Chain', 'Towel', 'Rope'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Storage-Device', 'Napkin', 'Rugby-Ball', 'Clamp', 'Beam']. What function it may be? Can Handle be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Clay', 'Wooden-Block', 'Styrofoam', 'Plaster', 'Stone'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Hacksaw', 'Padlock', 'Tile-Saw', 'Anchors', 'Smartphone']. What function it may be? Can Balsa-Wood be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Hand-Truck', 'Cargo-Container', 'Forklift', 'Pallet-Jack', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Crowbar', 'Crimp-Caps', 'Handle', 'Clip']. What function it may be? Can Dolly be used to perform this function? Can Anvil be used to perform this function?
There is a function that can be performed by these tools: ['Wheelbarrow', 'Hand-Truck', 'Forklift', 'Crane', 'Cargo-Container', 'Dolly'], and this function cannot be performed by these tools: ['Anvil', 'HTML-Tables', 'Crowbar', 'Tow-Truck', 'Clip', 'Crimp-Caps']. What function it may be? Can Pallet-Jack be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Laptop', 'Tablet', 'Smartphone', 'Printer', 'Smartwatch'], and this function cannot be performed by these tools: ['Staple-Punch', 'Needle', 'Polish-Flag', 'Sound-Card', 'Refrigerator', 'Sharpener']. What function it may be? Can Smart-TV be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Table', 'Bed', 'Dresser', 'Stool', 'Bookshelf'], and this function cannot be performed by these tools: ['Memory-Card', 'Glass', 'Socket-Set', 'Ribbon', 'Anchors', 'Filter']. What function it may be? Can Chair be used to perform this function? Can Dodecahedron be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Dolly', 'Forklift', 'Cargo-Container', 'Hand-Truck', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Anvil', 'Crowbar', 'Crimp-Caps', 'Handle']. What function it may be? Can Wheelbarrow be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Headphones', 'Microphone', 'Mouse', 'Keyboard', 'USB-Drive'], and this function cannot be performed by these tools: ['Compass', 'Staple-Punch', 'Tug-of-War-Rope', 'Dremel-Tool', 'Ohmmeter', 'Helmets']. What function it may be? Can Webcam be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Cabinet', 'Bookshelf', 'Bed', 'Couch', 'Desk'], and this function cannot be performed by these tools: ['Yarn', 'Doorknob', 'Cardboard', 'Mailbox-Lock', 'Robot-Arm', 'Magnetic-Tape']. What function it may be? Can Chair be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Headphones', 'Mouse', 'USB-Drive', 'Webcam', 'Microphone'], and this function cannot be performed by these tools: ['Helmets', 'Ohmmeter', 'Dremel-Tool', 'Compass', 'Measuring-Tape', 'Staple-Punch']. What function it may be? Can Monitor be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Joystick', 'Switch', 'Pedal', 'Button', 'Handle'], and this function cannot be performed by these tools: ['Clamp', 'Bobbins', 'Spirit-Level', 'Digital-Level', 'Mouse', 'Paper']. What function it may be? Can Slider be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Glue-Stick', 'White-Out', 'Stapler', 'Pen', 'Highlighter'], and this function cannot be performed by these tools: ['Memory-Card', 'Tightrope', 'Calculator', 'Bench', 'Screwdriver-Bit', 'Jigsaw']. What function it may be? Can Paper-Clip be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Scanner', 'Microphone', 'Mouse', 'Gamepad', 'Webcam'], and this function cannot be performed by these tools: ['Tow-Truck', 'CSV-File', 'Paint-Palette', 'Door', 'Smartwatch', 'Leather']. What function it may be? Can Monitor be used to perform this function? Can Pressure-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Pallet-Jack', 'Wheelbarrow', 'Hand-Truck', 'Crane', 'Dolly'], and this function cannot be performed by these tools: ['Crimp-Caps', 'Clip', 'HTML-Tables', 'Handle', 'Tow-Truck', 'Anvil']. What function it may be? Can Cargo-Container be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Drill', 'Rope', 'Saw', 'Crowbar', 'Pliers'], and this function cannot be performed by these tools: ['Scissors', 'Door', 'Boolean', 'Wharfs', 'Flash-Memory-Card', 'Rug']. What function it may be? Can Hammer be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Styrofoam', 'Cardboard', 'Wooden-Block', 'Plaster', 'Stone', 'Clay'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Anchors', 'Robot-Arm', 'Hacksaw', 'Padlock', 'Tile-Saw']. What function it may be? Can Balsa-Wood be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Docks', 'Floating-Logs', 'Piers', 'Pilings', 'Wharfs'], and this function cannot be performed by these tools: ['Circular-Saw', 'Sticky-Notes', 'Descenders', 'Microcontroller', 'Strain-Gauge', 'Clamps']. What function it may be? Can Boats be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Gesture-Sensor', 'Game-Controller', 'Mouse', 'Joystick', 'Tablet'], and this function cannot be performed by these tools: ['Jump-Rope', 'Crimp-Tool', 'Robot-Car', 'Rag', 'Pitchfork', 'Paintbrush-Holder']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Door', 'Bookshelf', 'Wall', 'Floor', 'Chair'], and this function cannot be performed by these tools: ['API-Endpoints', 'Raspberry-Pi', 'Table-Saw', 'Drill-Press', 'Diaphragm', 'Thimble']. What function it may be? Can Desk be used to perform this function? Can Cabinet-Handle be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Raspberry-Pi', 'Computer', 'Sensor', 'Microcontroller', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Stopwatch', 'Laptop', 'Joystick', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Plate']. What function it may be? Can Robot be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Desktop-Computer', 'Robot', 'Laptop', 'Microcontroller', 'Tablet'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Ceiling', 'Golf-Ball', 'Vice', 'Robot-Vacuum', 'Dice-Shaker']. What function it may be? Can Smartphone be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Crowbar', 'Rope', 'Drill', 'Tape-Measure', 'Hammer', 'Pliers'], and this function cannot be performed by these tools: ['Boolean', 'Flash-Memory-Card', 'Buoys', 'Scissors', 'Wharfs', 'Door']. What function it may be? Can Saw be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Smartwatch', 'Smart-TV', 'Smart-Speaker', 'Tablet'], and this function cannot be performed by these tools: ['Sharpener', 'Sound-Card', 'Staple-Punch', 'Polish-Flag', 'Rugby-Ball', 'Refrigerator']. What function it may be? Can Printer be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Dolly', 'Crane', 'Cargo-Container', 'Wheelbarrow', 'Forklift'], and this function cannot be performed by these tools: ['Tow-Truck', 'Anvil', 'Crimp-Caps', 'Clip', 'HTML-Tables', 'Handle']. What function it may be? Can Hand-Truck be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Button', 'Dial', 'Pedal', 'Slider', 'Switch'], and this function cannot be performed by these tools: ['Paper', 'Clamp', 'Spirit-Level', 'Digital-Level', 'Mouse', 'Bobbins']. What function it may be? Can Handle be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Sensor', 'Drone', 'Microcontroller', 'Robot', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Stopwatch', 'Plate', 'Magnetic-Tape', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Joystick']. What function it may be? Can Computer be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Joystick', 'Tablet', 'Game-Controller', 'Gesture-Sensor', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Crimp-Tool', 'Robot-Car', 'Pitchfork', 'CSV-Files', 'Rag', 'Jump-Rope']. What function it may be? Can Mouse be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Speakers', 'Joystick', 'Monitor', 'Keyboard', 'USB-Drive'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Chalkboard', 'Mixer', 'Paint-Tray', 'Robot-Dog', 'LED-Lights']. What function it may be? Can Printer be used to perform this function? Can Vegetables be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'File', 'Pencil', 'Screwdriver', 'Hammer', 'Drill-Bit'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Padlock', 'Desktop-Computer', 'Cheese', 'Clay', 'Table-Saw']. What function it may be? Can Chisel be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Scale', 'Stool', 'Plank', 'Ruler', 'Rocking-Horse', 'See-Saw'], and this function cannot be performed by these tools: ['Processor', 'Web-Pages', 'Hole-Punch', 'Pulley', 'Class', 'Polish-Jewelry']. What function it may be? Can Tightrope be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'See-Saw', 'Scale', 'Tightrope', 'Stool', 'Plank'], and this function cannot be performed by these tools: ['Hole-Punch', 'Web-Pages', 'Polish-Jewelry', 'Processor', 'Printer', 'Class']. What function it may be? Can Ruler be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Joystick', 'Game-Controller', 'Gesture-Sensor', 'Light-Switch', 'Tablet'], and this function cannot be performed by these tools: ['Robot-Car', 'Jump-Rope', 'Pitchfork', 'Paintbrush-Holder', 'Crimp-Tool', 'Rag']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Bookshelf', 'Bed', 'Chair', 'Stool', 'Desk'], and this function cannot be performed by these tools: ['Cane', 'Yarn', 'Cardboard', 'Robot-Arm', 'Doorknob', 'Mailbox-Lock']. What function it may be? Can Couch be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'File', 'Pencil', 'Hacksaw', 'Hammer', 'Drill-Bit'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Clay', 'Table-Saw', 'Desktop-Computer', 'Cheese', 'Padlock']. What function it may be? Can Chisel be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Smartphone', 'Laptop', 'External-Hard-Drive', 'USB-Flash-Drive', 'Router'], and this function cannot be performed by these tools: ['Crate', 'Docks', 'Wheel', 'Robot-Vacuum', 'Seam-Ripper', 'Fishing-Rod']. What function it may be? Can Monitor be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Bungee-Cord', 'Hook', 'Chain', 'Handle', 'Towel', 'Rope'], and this function cannot be performed by these tools: ['Storage-Device', 'Clamp', 'Beam', 'Napkin', 'Paint-Brush-Cleaner', 'Rugby-Ball']. What function it may be? Can Cable be used to perform this function? Can Soldering-Iron be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'See-Saw', 'Ruler', 'Rocking-Horse', 'Stool', 'Scale'], and this function cannot be performed by these tools: ['Pulley', 'Polish-Jewelry', 'Class', 'Processor', 'Web-Pages', 'Hole-Punch']. What function it may be? Can Tightrope be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Laptop', 'Smartphone', 'Monitor', 'Router', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Wheel', 'Fishing-Rod', 'Copper-Wire', 'Crate', 'Robot-Vacuum', 'Seam-Ripper']. What function it may be? Can Keyboard be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Dresser', 'Cabinet', 'Table', 'Bookshelf', 'Chair', 'Bed'], and this function cannot be performed by these tools: ['Anchors', 'Dodecahedron', 'Ribbon', 'Memory-Card', 'Glass', 'Filter']. What function it may be? Can Stool be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Cargo-Container', 'Wheelbarrow', 'Crane', 'Forklift', 'Hand-Truck'], and this function cannot be performed by these tools: ['Crowbar', 'Tow-Truck', 'Anvil', 'HTML-Tables', 'Handle', 'Clip']. What function it may be? Can Dolly be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Crowbar', 'Pliers', 'Rope', 'Drill', 'Hammer'], and this function cannot be performed by these tools: ['Boolean', 'Buoys', 'Wharfs', 'Door', 'Rug', 'Flash-Memory-Card']. What function it may be? Can Saw be used to perform this function? Can Scissors be used to perform this function?
There is a function that can be performed by these tools: ['Clay', 'Wooden-Block', 'Plaster', 'Cardboard', 'Styrofoam', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Smartphone', 'Padlock', 'Tile-Saw', 'Scrub-Brush', 'Hacksaw', 'Anchors']. What function it may be? Can Stone be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Microphone', 'Monitor', 'Headphones', 'Mouse', 'USB-Drive'], and this function cannot be performed by these tools: ['Staple-Punch', 'Compass', 'Dremel-Tool', 'Measuring-Tape', 'Helmets', 'Tug-of-War-Rope']. What function it may be? Can Keyboard be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Dresser', 'Table', 'Stool', 'Bookshelf', 'Chair'], and this function cannot be performed by these tools: ['Dodecahedron', 'Memory-Card', 'Socket-Set', 'Filter', 'Glass', 'Anchors']. What function it may be? Can Bed be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Joystick', 'Touchscreen-Monitor', 'Mouse', 'Game-Controller', 'Tablet'], and this function cannot be performed by these tools: ['Rag', 'Pitchfork', 'CSV-Files', 'Robot-Car', 'Crimp-Tool', 'Paintbrush-Holder']. What function it may be? Can Gesture-Sensor be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Clay', 'Wooden-Block', 'Stone', 'Cardboard', 'Styrofoam'], and this function cannot be performed by these tools: ['Smartphone', 'Hacksaw', 'Padlock', 'Robot-Arm', 'Anchors', 'Scrub-Brush']. What function it may be? Can Plaster be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'Hammer', 'Pencil', 'File', 'Chisel', 'Drill-Bit'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Clay', 'Padlock', 'Desktop-Computer', 'Table-Saw', 'Cheese']. What function it may be? Can Screwdriver be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Speakers', 'Monitor', 'Audio-Interface', 'Recording-Software', 'Cables'], and this function cannot be performed by these tools: ['Graph-Paper', 'Pulley', 'Seam-Ripper', 'Storage-Device', 'Netting', 'Scissor-Lift']. What function it may be? Can Microphone be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'Hammer', 'Drill-Bit', 'Chisel', 'Pencil', 'File'], and this function cannot be performed by these tools: ['Cheese', 'Desktop-Computer', 'LED-Lights', 'Padlock', 'Luggage-Lock', 'Clay']. What function it may be? Can Screwdriver be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Paper-Clip', 'Highlighter', 'White-Out', 'Pen', 'Glue-Stick'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Calculator', 'Tightrope', 'Memory-Card', 'USB-Mouse', 'Jigsaw']. What function it may be? Can Scissors be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Styrofoam', 'Clay', 'Wooden-Block', 'Balsa-Wood', 'Stone'], and this function cannot be performed by these tools: ['Anchors', 'Scrub-Brush', 'Tile-Saw', 'Robot-Arm', 'Padlock', 'Hacksaw']. What function it may be? Can Plaster be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['Wheelbarrow', 'Dolly', 'Crane', 'Forklift', 'Cargo-Container', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Crowbar', 'Handle', 'Clip', 'HTML-Tables', 'Anvil', 'Crimp-Caps']. What function it may be? Can Hand-Truck be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Scanner', 'Microphone', 'Mouse', 'Speakers', 'Gamepad'], and this function cannot be performed by these tools: ['Tow-Truck', 'CSV-File', 'Pressure-Gauge', 'Leather', 'Smartwatch', 'Paint-Palette']. What function it may be? Can Monitor be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Class', 'File', 'Tuple', 'String', 'List'], and this function cannot be performed by these tools: ['Fabric', 'Flash-Drive', 'Recording-Software', 'Flagpole', 'Optical-Disc', 'Desk']. What function it may be? Can Float be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Laptop', 'Robot', 'Drone', 'Tablet', 'Smartphone'], and this function cannot be performed by these tools: ['Vice', 'Ceiling', 'Robot-Vacuum', 'Yarn', 'Garage-Door-Lock', 'Dice-Shaker']. What function it may be? Can Desktop-Computer be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Bookshelf', 'Cabinet', 'Dresser', 'Chair', 'Table'], and this function cannot be performed by these tools: ['Filter', 'Ribbon', 'Anchors', 'Glass', 'Memory-Card', 'Dodecahedron']. What function it may be? Can Bed be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Screwdriver', 'Drill-Bit', 'Hacksaw', 'File', 'Chisel'], and this function cannot be performed by these tools: ['Clay', 'Luggage-Lock', 'Cheese', 'Desktop-Computer', 'Padlock', 'LED-Lights']. What function it may be? Can Pencil be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Float', 'String', 'List', 'File', 'Tuple'], and this function cannot be performed by these tools: ['Fabric', 'Rocking-Horse', 'Flagpole', 'Recording-Software', 'Flash-Drive', 'Optical-Disc']. What function it may be? Can Class be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Game-Controller', 'Light-Switch', 'Joystick', 'Tablet', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Robot-Car', 'Jump-Rope', 'Crimp-Tool', 'Pitchfork', 'Rag']. What function it may be? Can Gesture-Sensor be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Tightrope', 'Ruler', 'Stool', 'Rocking-Horse', 'Scale', 'See-Saw'], and this function cannot be performed by these tools: ['Pulley', 'Processor', 'Hole-Punch', 'Web-Pages', 'Printer', 'Class']. What function it may be? Can Plank be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Headphones', 'Monitor', 'USB-Drive', 'Keyboard', 'Printer'], and this function cannot be performed by these tools: ['Mixer', 'Paint-Tray', 'Robot-Dog', 'Chalkboard', 'Vegetables', 'LED-Lights']. What function it may be? Can Speakers be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Touchscreen-Monitor', 'Light-Switch', 'Game-Controller', 'Mouse', 'Joystick', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Rag', 'Crimp-Tool', 'Paintbrush-Holder', 'CSV-Files', 'Robot-Car', 'Pitchfork']. What function it may be? Can Tablet be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Chair', 'Bookshelf', 'Cabinet', 'Couch', 'Bed'], and this function cannot be performed by these tools: ['Doorknob', 'Robot-Arm', 'Cardboard', 'Magnetic-Tape', 'Yarn', 'Mailbox-Lock']. What function it may be? Can Stool be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['String', 'Float', 'List', 'Boolean', 'File', 'Tuple'], and this function cannot be performed by these tools: ['Flagpole', 'Flash-Drive', 'Recording-Software', 'Optical-Disc', 'Desk', 'Rocking-Horse']. What function it may be? Can Class be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Highlighter', 'Paper-Clip', 'Glue-Stick', 'Pen', 'White-Out'], and this function cannot be performed by these tools: ['Memory-Card', 'USB-Mouse', 'Screwdriver-Bit', 'Calculator', 'Bench', 'Tightrope']. What function it may be? Can Stapler be used to perform this function? Can Jigsaw be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Scissors', 'Pen', 'Stapler', 'Paper-Clip', 'Glue-Stick'], and this function cannot be performed by these tools: ['Jigsaw', 'Calculator', 'Tightrope', 'Bench', 'USB-Mouse', 'Memory-Card']. What function it may be? Can Highlighter be used to perform this function? Can Screwdriver-Bit be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Recording-Software', 'Monitor', 'Mouse', 'Audio-Interface', 'Speakers'], and this function cannot be performed by these tools: ['Graph-Paper', 'Pulley', 'Ribbon', 'Scissor-Lift', 'Netting', 'Storage-Device']. What function it may be? Can Cables be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Joystick', 'Game-Controller', 'Touchscreen-Monitor', 'Tablet', 'Light-Switch'], and this function cannot be performed by these tools: ['CSV-Files', 'Robot-Car', 'Crimp-Tool', 'Jump-Rope', 'Pitchfork', 'Paintbrush-Holder']. What function it may be? Can Gesture-Sensor be used to perform this function? Can Rag be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Boats', 'Floating-Logs', 'Docks', 'Wharfs', 'Piers'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Clamps', 'Socket', 'Sticky-Notes', 'Circular-Saw', 'Microcontroller']. What function it may be? Can Buoys be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Speakers', 'Printer', 'Keyboard', 'Joystick', 'Monitor'], and this function cannot be performed by these tools: ['Chalkboard', 'Robot-Dog', 'LED-Lights', 'Vegetables', 'Paint-Tray', 'Mixer']. What function it may be? Can Headphones be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['USB-Flash-Drive', 'Monitor', 'Router', 'Smartphone', 'External-Hard-Drive', 'Laptop'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Copper-Wire', 'Fishing-Rod', 'Crate', 'Wheel', 'Robot-Vacuum']. What function it may be? Can Keyboard be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'White-Out', 'Pen', 'Stapler', 'Scissors', 'Highlighter'], and this function cannot be performed by these tools: ['USB-Mouse', 'Jigsaw', 'Screwdriver-Bit', 'Calculator', 'Memory-Card', 'Tightrope']. What function it may be? Can Glue-Stick be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Desktop-Computer', 'Drone', 'Smartphone', 'Laptop', 'Tablet'], and this function cannot be performed by these tools: ['Golf-Ball', 'Robot-Vacuum', 'Dice-Shaker', 'Ceiling', 'Yarn', 'Garage-Door-Lock']. What function it may be? Can Robot be used to perform this function? Can Vice be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Wharfs', 'Floating-Logs', 'Buoys', 'Pilings', 'Piers'], and this function cannot be performed by these tools: ['Microcontroller', 'Descenders', 'Circular-Saw', 'Clamps', 'Sticky-Notes', 'Strain-Gauge']. What function it may be? Can Boats be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Mouse', 'Gesture-Sensor', 'Game-Controller', 'Tablet', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Pitchfork', 'Rag', 'Robot-Car', 'Paintbrush-Holder', 'CSV-Files', 'Crimp-Tool']. What function it may be? Can Joystick be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Tablet', 'Laptop', 'Robot', 'Drone', 'Microcontroller'], and this function cannot be performed by these tools: ['Dice-Shaker', 'Yarn', 'Vice', 'Ceiling', 'Garage-Door-Lock', 'Golf-Ball']. What function it may be? Can Smartphone be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Pedal', 'Switch', 'Handle', 'Button', 'Joystick', 'Dial'], and this function cannot be performed by these tools: ['Mouse', 'Digital-Level', 'Clamp', 'Bobbins', 'Napkin', 'Spirit-Level']. What function it may be? Can Slider be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'Joystick', 'Speakers', 'Monitor', 'Printer'], and this function cannot be performed by these tools: ['Robot-Dog', 'LED-Lights', 'Mixer', 'Polish-Music-Instruments', 'Vegetables', 'Paint-Tray']. What function it may be? Can USB-Drive be used to perform this function? Can Chalkboard be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Docks', 'Wharfs', 'Boats', 'Floating-Logs', 'Pilings'], and this function cannot be performed by these tools: ['Microcontroller', 'Strain-Gauge', 'Clamps', 'Socket', 'Circular-Saw', 'Descenders']. What function it may be? Can Piers be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Bookshelf', 'Couch', 'Desk', 'Chair', 'Stool'], and this function cannot be performed by these tools: ['Mailbox-Lock', 'Yarn', 'Doorknob', 'Robot-Arm', 'Cane', 'Cardboard']. What function it may be? Can Cabinet be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Desk', 'Couch', 'Cabinet', 'Bed', 'Chair'], and this function cannot be performed by these tools: ['Cane', 'Robot-Arm', 'Doorknob', 'Magnetic-Tape', 'Mailbox-Lock', 'Yarn']. What function it may be? Can Stool be used to perform this function? Can Cardboard be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Speakers', 'Recording-Software', 'Microphone', 'Audio-Interface', 'Monitor'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Seam-Ripper', 'Graph-Paper', 'Netting', 'Storage-Device', 'Pulley']. What function it may be? Can Cables be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Laptop', 'Monitor', 'Smartphone', 'Router', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Docks', 'Robot-Vacuum', 'Fishing-Rod', 'Crate', 'Wheel', 'Seam-Ripper']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Clay', 'Wooden-Block', 'Plaster', 'Balsa-Wood', 'Styrofoam', 'Cardboard'], and this function cannot be performed by these tools: ['Hacksaw', 'Robot-Arm', 'Padlock', 'Tile-Saw', 'Smartphone', 'Anchors']. What function it may be? Can Stone be used to perform this function? Can Scrub-Brush be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Door', 'Chair', 'Floor', 'Desk', 'Bookshelf'], and this function cannot be performed by these tools: ['Table-Saw', 'Raspberry-Pi', 'Cabinet-Handle', 'Thimble', 'Diaphragm', 'Drill-Press']. What function it may be? Can Cabinet be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Monitor', 'Router', 'Smartphone', 'USB-Flash-Drive', 'Laptop'], and this function cannot be performed by these tools: ['Wheel', 'Seam-Ripper', 'Copper-Wire', 'Crate', 'Fishing-Rod', 'Robot-Vacuum']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Hacksaw', 'Pencil', 'Chisel', 'Hammer', 'Drill-Bit'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Clay', 'LED-Lights', 'Padlock', 'Table-Saw', 'Cheese']. What function it may be? Can File be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Tightrope', 'Rocking-Horse', 'Plank', 'Stool', 'See-Saw', 'Ruler'], and this function cannot be performed by these tools: ['Polish-Jewelry', 'Class', 'Web-Pages', 'Printer', 'Hole-Punch', 'Pulley']. What function it may be? Can Scale be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Bookshelf', 'Wall', 'Chair', 'Desk', 'Floor'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'Table-Saw', 'Drill-Press', 'Cabinet-Handle', 'Thimble', 'Diaphragm']. What function it may be? Can Door be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Laptop', 'Tablet', 'Microcontroller', 'Smartphone', 'Drone'], and this function cannot be performed by these tools: ['Yarn', 'Robot-Vacuum', 'Garage-Door-Lock', 'Golf-Ball', 'Dice-Shaker', 'Ceiling']. What function it may be? Can Desktop-Computer be used to perform this function? Can Vice be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Bed', 'Dresser', 'Bookshelf', 'Chair', 'Cabinet'], and this function cannot be performed by these tools: ['Ribbon', 'Socket-Set', 'Memory-Card', 'Glass', 'Anchors', 'Dodecahedron']. What function it may be? Can Table be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'USB-Drive', 'Headphones', 'Mouse', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Helmets', 'Ohmmeter', 'Compass', 'Staple-Punch', 'Measuring-Tape']. What function it may be? Can Microphone be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Button', 'Handle', 'Switch', 'Pedal', 'Joystick', 'Dial'], and this function cannot be performed by these tools: ['Clamp', 'Mouse', 'Napkin', 'Digital-Level', 'Spirit-Level', 'Bobbins']. What function it may be? Can Slider be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Rivets', 'Clamps', 'Staples', 'Adhesives', 'Nails', 'Anchors'], and this function cannot be performed by these tools: ['Gamepad', 'Table-Saw', 'Clock', 'Dictionary', 'Lace', 'Awl']. What function it may be? Can Screws be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Light-Switch', 'Game-Controller', 'Tablet', 'Touchscreen-Monitor', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Pitchfork', 'CSV-Files', 'Crimp-Tool', 'Rag', 'Jump-Rope']. What function it may be? Can Mouse be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Adhesives', 'Anchors', 'Clamps', 'Screws', 'Staples', 'Rivets'], and this function cannot be performed by these tools: ['Lace', 'Dictionary', 'SD-Card', 'Table-Saw', 'Gamepad', 'Awl']. What function it may be? Can Nails be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Monitor', 'External-Hard-Drive', 'Keyboard', 'Router', 'Smartphone'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Crate', 'Robot-Vacuum', 'Fishing-Rod', 'Copper-Wire', 'Wheel']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Monitor', 'Keyboard', 'Router', 'External-Hard-Drive', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Docks', 'Copper-Wire', 'Wheel', 'Fishing-Rod', 'Crate']. What function it may be? Can Laptop be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Keyboard', 'Router', 'USB-Flash-Drive', 'Laptop', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Docks', 'Crate', 'Fishing-Rod', 'Copper-Wire', 'Robot-Vacuum', 'Seam-Ripper']. What function it may be? Can Smartphone be used to perform this function? Can Wheel be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'USB-Drive', 'Joystick', 'Printer', 'Headphones', 'Keyboard'], and this function cannot be performed by these tools: ['Robot-Dog', 'Paint-Tray', 'Polish-Music-Instruments', 'Chalkboard', 'Mixer', 'Vegetables']. What function it may be? Can Monitor be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Tightrope', 'Scale', 'Rocking-Horse', 'Ruler', 'See-Saw'], and this function cannot be performed by these tools: ['Pulley', 'Processor', 'Polish-Jewelry', 'Web-Pages', 'Printer', 'Class']. What function it may be? Can Plank be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Cabinet', 'Bed', 'Bookshelf', 'Table', 'Chair'], and this function cannot be performed by these tools: ['Ribbon', 'Dodecahedron', 'Glass', 'Memory-Card', 'Socket-Set', 'Anchors']. What function it may be? Can Dresser be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Microphone', 'Recording-Software', 'Cables', 'Mouse', 'Monitor'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Graph-Paper', 'Netting', 'Ribbon', 'Storage-Device', 'Scissor-Lift']. What function it may be? Can Audio-Interface be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Mouse', 'Tablet', 'Game-Controller', 'Light-Switch', 'Joystick'], and this function cannot be performed by these tools: ['CSV-Files', 'Pitchfork', 'Paintbrush-Holder', 'Robot-Car', 'Jump-Rope', 'Rag']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Crimp-Tool be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Raspberry-Pi', 'Computer', 'Robot', 'Drone', 'Sensor'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Magnetic-Tape', 'Robot-Vacuum', 'Laptop', 'Joystick', 'Stopwatch']. What function it may be? Can Microcontroller be used to perform this function? Can Plate be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Bed', 'Stool', 'Table', 'Cabinet', 'Dresser'], and this function cannot be performed by these tools: ['Filter', 'Dodecahedron', 'Ribbon', 'Anchors', 'Memory-Card', 'Socket-Set']. What function it may be? Can Bookshelf be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Pedal', 'Switch', 'Handle', 'Joystick', 'Button', 'Slider'], and this function cannot be performed by these tools: ['Spirit-Level', 'Clamp', 'Mouse', 'Napkin', 'Digital-Level', 'Bobbins']. What function it may be? Can Dial be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Wharfs', 'Boats', 'Pilings', 'Piers', 'Buoys'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Circular-Saw', 'Descenders', 'Sticky-Notes', 'Microcontroller', 'Socket']. What function it may be? Can Docks be used to perform this function? Can Clamps be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Paper-Clip', 'Highlighter', 'Pen', 'White-Out', 'Scissors'], and this function cannot be performed by these tools: ['Jigsaw', 'Tightrope', 'Screwdriver-Bit', 'USB-Mouse', 'Calculator', 'Bench']. What function it may be? Can Glue-Stick be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Cargo-Container', 'Pallet-Jack', 'Forklift', 'Dolly', 'Crane', 'Hand-Truck'], and this function cannot be performed by these tools: ['HTML-Tables', 'Tow-Truck', 'Clip', 'Handle', 'Crimp-Caps', 'Crowbar']. What function it may be? Can Wheelbarrow be used to perform this function? Can Anvil be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Desk', 'Chair', 'Couch', 'Cabinet', 'Bookshelf'], and this function cannot be performed by these tools: ['Robot-Arm', 'Yarn', 'Cane', 'Magnetic-Tape', 'Mailbox-Lock', 'Doorknob']. What function it may be? Can Stool be used to perform this function? Can Cardboard be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Towel', 'Bungee-Cord', 'Handle', 'Rope', 'Cable'], and this function cannot be performed by these tools: ['Napkin', 'Beam', 'Soldering-Iron', 'Rugby-Ball', 'Paint-Brush-Cleaner', 'Storage-Device']. What function it may be? Can Chain be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'Class', 'Float', 'Boolean', 'List', 'String'], and this function cannot be performed by these tools: ['Optical-Disc', 'Flagpole', 'Rocking-Horse', 'Recording-Software', 'Flash-Drive', 'Fabric']. What function it may be? Can File be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Router', 'Laptop', 'USB-Flash-Drive', 'External-Hard-Drive', 'Monitor'], and this function cannot be performed by these tools: ['Copper-Wire', 'Fishing-Rod', 'Robot-Vacuum', 'Wheel', 'Crate', 'Seam-Ripper']. What function it may be? Can Keyboard be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Tightrope', 'Ruler', 'Plank', 'Rocking-Horse', 'Scale', 'Stool'], and this function cannot be performed by these tools: ['Class', 'Processor', 'Hole-Punch', 'Polish-Jewelry', 'Pulley', 'Web-Pages']. What function it may be? Can See-Saw be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Laptop', 'Robot', 'Drone', 'Smartphone', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Yarn', 'Ceiling', 'Vice', 'Golf-Ball', 'Robot-Vacuum', 'Garage-Door-Lock']. What function it may be? Can Tablet be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Cable', 'Chain', 'Bungee-Cord', 'Rope', 'Towel'], and this function cannot be performed by these tools: ['Storage-Device', 'Beam', 'Napkin', 'Rugby-Ball', 'Soldering-Iron', 'Clamp']. What function it may be? Can Hook be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Screws', 'Staples', 'Nails', 'Clamps', 'Rivets', 'Adhesives'], and this function cannot be performed by these tools: ['Table-Saw', 'Gamepad', 'Dictionary', 'Clock', 'Awl', 'Lace']. What function it may be? Can Anchors be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Microphone', 'Monitor', 'Audio-Interface', 'Cables', 'Speakers'], and this function cannot be performed by these tools: ['Ribbon', 'Netting', 'Storage-Device', 'Seam-Ripper', 'Pulley', 'Scissor-Lift']. What function it may be? Can Recording-Software be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Pen', 'White-Out', 'Highlighter', 'Glue-Stick', 'Scissors'], and this function cannot be performed by these tools: ['Bench', 'Tightrope', 'Calculator', 'Jigsaw', 'Screwdriver-Bit', 'Memory-Card']. What function it may be? Can Paper-Clip be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Game-Controller', 'Tablet', 'Light-Switch', 'Joystick', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Pitchfork', 'Rag', 'Crimp-Tool', 'Jump-Rope', 'CSV-Files']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Keyboard', 'Smartphone', 'Router', 'Laptop', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Robot-Vacuum', 'Fishing-Rod', 'Wheel', 'Copper-Wire', 'Crate']. What function it may be? Can Monitor be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Screws', 'Clamps', 'Adhesives', 'Nails', 'Staples', 'Rivets'], and this function cannot be performed by these tools: ['Lace', 'Clock', 'SD-Card', 'Table-Saw', 'Dictionary', 'Awl']. What function it may be? Can Anchors be used to perform this function? Can Gamepad be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Dial', 'Pedal', 'Joystick', 'Handle', 'Slider'], and this function cannot be performed by these tools: ['Mouse', 'Spirit-Level', 'Napkin', 'Digital-Level', 'Clamp', 'Paper']. What function it may be? Can Button be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Floor', 'Wall', 'Door', 'Cabinet', 'Bookshelf', 'Chair'], and this function cannot be performed by these tools: ['Drill-Press', 'Thimble', 'Table-Saw', 'API-Endpoints', 'Diaphragm', 'Raspberry-Pi']. What function it may be? Can Desk be used to perform this function? Can Cabinet-Handle be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Forklift', 'Pallet-Jack', 'Wheelbarrow', 'Dolly', 'Hand-Truck'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Handle', 'Anvil', 'Crowbar', 'Crimp-Caps']. What function it may be? Can Cargo-Container be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Scissors', 'Glue-Stick', 'Highlighter', 'White-Out', 'Pen'], and this function cannot be performed by these tools: ['Calculator', 'Bench', 'Jigsaw', 'Screwdriver-Bit', 'Tightrope', 'USB-Mouse']. What function it may be? Can Stapler be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Webcam', 'USB-Drive', 'Headphones', 'Mouse', 'Microphone'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Ohmmeter', 'Helmets', 'Staple-Punch', 'Compass', 'Tug-of-War-Rope']. What function it may be? Can Keyboard be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Float', 'Class', 'List', 'File', 'String'], and this function cannot be performed by these tools: ['Flash-Drive', 'Desk', 'Rocking-Horse', 'Flagpole', 'Recording-Software', 'Fabric']. What function it may be? Can Tuple be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Rope', 'Crowbar', 'Pliers', 'Tape-Measure', 'Drill'], and this function cannot be performed by these tools: ['Scissors', 'Wharfs', 'Boolean', 'Door', 'Flash-Memory-Card', 'Rug']. What function it may be? Can Saw be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'String', 'Tuple', 'Class', 'List', 'File'], and this function cannot be performed by these tools: ['Flagpole', 'Fabric', 'Optical-Disc', 'Recording-Software', 'Rocking-Horse', 'Flash-Drive']. What function it may be? Can Float be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Smartphone', 'Laptop', 'USB-Flash-Drive', 'Monitor', 'Router'], and this function cannot be performed by these tools: ['Wheel', 'Fishing-Rod', 'Crate', 'Copper-Wire', 'Docks', 'Robot-Vacuum']. What function it may be? Can Keyboard be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Cables', 'Recording-Software', 'Speakers', 'Monitor', 'Mouse'], and this function cannot be performed by these tools: ['Pulley', 'Graph-Paper', 'Netting', 'Ribbon', 'Scissor-Lift', 'Seam-Ripper']. What function it may be? Can Audio-Interface be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Speakers', 'Printer', 'Headphones', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['LED-Lights', 'Vegetables', 'Paint-Tray', 'Chalkboard', 'Mixer', 'Robot-Dog']. What function it may be? Can USB-Drive be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Button', 'Joystick', 'Pedal', 'Dial', 'Slider', 'Switch'], and this function cannot be performed by these tools: ['Spirit-Level', 'Clamp', 'Bobbins', 'Paper', 'Mouse', 'Napkin']. What function it may be? Can Handle be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Boats', 'Buoys', 'Piers', 'Pilings', 'Docks'], and this function cannot be performed by these tools: ['Microcontroller', 'Descenders', 'Clamps', 'Sticky-Notes', 'Circular-Saw', 'Strain-Gauge']. What function it may be? Can Wharfs be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Bed', 'Cabinet', 'Bookshelf', 'Dresser', 'Stool'], and this function cannot be performed by these tools: ['Filter', 'Ribbon', 'Memory-Card', 'Socket-Set', 'Anchors', 'Dodecahedron']. What function it may be? Can Chair be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Microcontroller', 'Drone', 'Sensor', 'Computer', 'Robot'], and this function cannot be performed by these tools: ['Plate', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Laptop', 'Magnetic-Tape', 'Stopwatch']. What function it may be? Can GPS-Tracker be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Cabinet', 'Stool', 'Couch', 'Bed'], and this function cannot be performed by these tools: ['Robot-Arm', 'Cane', 'Doorknob', 'Mailbox-Lock', 'Magnetic-Tape', 'Cardboard']. What function it may be? Can Chair be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Router', 'External-Hard-Drive', 'USB-Flash-Drive', 'Laptop', 'Keyboard'], and this function cannot be performed by these tools: ['Crate', 'Seam-Ripper', 'Robot-Vacuum', 'Fishing-Rod', 'Copper-Wire', 'Wheel']. What function it may be? Can Smartphone be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Headphones', 'Speakers', 'Monitor', 'Printer', 'Keyboard'], and this function cannot be performed by these tools: ['Chalkboard', 'Robot-Dog', 'Paint-Tray', 'Vegetables', 'Mixer', 'Polish-Music-Instruments']. What function it may be? Can Joystick be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Recording-Software', 'Cables', 'Audio-Interface', 'Microphone', 'Speakers', 'Mouse'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Storage-Device', 'Netting', 'Seam-Ripper', 'Ribbon', 'Pulley']. What function it may be? Can Monitor be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Pliers', 'Tape-Measure', 'Drill', 'Crowbar', 'Saw'], and this function cannot be performed by these tools: ['Buoys', 'Door', 'Wharfs', 'Flash-Memory-Card', 'Scissors', 'Boolean']. What function it may be? Can Rope be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Keyboard', 'Monitor', 'USB-Drive', 'Headphones', 'Microphone'], and this function cannot be performed by these tools: ['Ohmmeter', 'Measuring-Tape', 'Dremel-Tool', 'Compass', 'Helmets', 'Staple-Punch']. What function it may be? Can Mouse be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Pilings', 'Docks', 'Wharfs', 'Piers', 'Boats'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Circular-Saw', 'Strain-Gauge', 'Socket', 'Clamps', 'Descenders']. What function it may be? Can Buoys be used to perform this function? Can Microcontroller be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Screwdriver', 'Pencil', 'Hacksaw', 'File', 'Chisel'], and this function cannot be performed by these tools: ['Padlock', 'Clay', 'Table-Saw', 'Desktop-Computer', 'Luggage-Lock', 'LED-Lights']. What function it may be? Can Hammer be used to perform this function? Can Cheese be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Joystick', 'Light-Switch', 'Mouse', 'Gesture-Sensor', 'Tablet'], and this function cannot be performed by these tools: ['Jump-Rope', 'Pitchfork', 'Paintbrush-Holder', 'Robot-Car', 'Crimp-Tool', 'Rag']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'USB-Drive', 'Joystick', 'Printer', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['LED-Lights', 'Mixer', 'Vegetables', 'Chalkboard', 'Paint-Tray', 'Polish-Music-Instruments']. What function it may be? Can Headphones be used to perform this function? Can Robot-Dog be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Joystick', 'Slider', 'Handle', 'Switch', 'Button'], and this function cannot be performed by these tools: ['Clamp', 'Napkin', 'Spirit-Level', 'Bobbins', 'Mouse', 'Paper']. What function it may be? Can Pedal be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Microphone', 'Recording-Software', 'Monitor', 'Cables', 'Speakers'], and this function cannot be performed by these tools: ['Netting', 'Pulley', 'Graph-Paper', 'Storage-Device', 'Scissor-Lift', 'Seam-Ripper']. What function it may be? Can Mouse be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Floor', 'Desk', 'Chair', 'Bookshelf', 'Wall'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Thimble', 'Raspberry-Pi', 'Table-Saw', 'Diaphragm', 'Drill-Press']. What function it may be? Can Door be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Pedal', 'Switch', 'Handle', 'Joystick', 'Button'], and this function cannot be performed by these tools: ['Paper', 'Digital-Level', 'Clamp', 'Napkin', 'Spirit-Level', 'Mouse']. What function it may be? Can Slider be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Cargo-Container', 'Hand-Truck', 'Pallet-Jack', 'Crane', 'Dolly'], and this function cannot be performed by these tools: ['Handle', 'Crowbar', 'HTML-Tables', 'Clip', 'Crimp-Caps', 'Anvil']. What function it may be? Can Wheelbarrow be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Drill', 'Saw', 'Pliers', 'Hammer', 'Crowbar', 'Tape-Measure'], and this function cannot be performed by these tools: ['Buoys', 'Door', 'Wharfs', 'Scissors', 'Rug', 'Boolean']. What function it may be? Can Rope be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Pen', 'Scissors', 'Paper-Clip', 'Glue-Stick', 'Stapler', 'White-Out'], and this function cannot be performed by these tools: ['Calculator', 'Memory-Card', 'Tightrope', 'Bench', 'Jigsaw', 'USB-Mouse']. What function it may be? Can Highlighter be used to perform this function? Can Screwdriver-Bit be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Recording-Software', 'Cables', 'Monitor', 'Microphone', 'Audio-Interface'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Storage-Device', 'Netting', 'Graph-Paper', 'Scissor-Lift', 'Ribbon']. What function it may be? Can Mouse be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Sensor', 'Drone', 'Raspberry-Pi', 'Microcontroller', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Plate', 'Joystick', 'Excel-Spreadsheet', 'Robot-Vacuum', 'Laptop', 'Magnetic-Tape']. What function it may be? Can Robot be used to perform this function? Can Stopwatch be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Cardboard', 'Wooden-Block', 'Plaster', 'Balsa-Wood', 'Styrofoam'], and this function cannot be performed by these tools: ['Tile-Saw', 'Hacksaw', 'Robot-Arm', 'Anchors', 'Smartphone', 'Padlock']. What function it may be? Can Clay be used to perform this function? Can Scrub-Brush be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Pallet-Jack', 'Crane', 'Dolly', 'Cargo-Container', 'Hand-Truck'], and this function cannot be performed by these tools: ['Clip', 'Crimp-Caps', 'Crowbar', 'Tow-Truck', 'Anvil', 'Handle']. What function it may be? Can Wheelbarrow be used to perform this function? Can HTML-Tables be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smartphone', 'Smart-Speaker', 'Printer', 'Smart-TV', 'Smartwatch'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Sound-Card', 'Sharpener', 'Needle', 'Staple-Punch', 'Refrigerator']. What function it may be? Can Tablet be used to perform this function? Can Polish-Flag be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Joystick', 'Keyboard', 'Speakers', 'Printer', 'Monitor'], and this function cannot be performed by these tools: ['Robot-Dog', 'Paint-Tray', 'Chalkboard', 'Mixer', 'Polish-Music-Instruments', 'LED-Lights']. What function it may be? Can USB-Drive be used to perform this function? Can Vegetables be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Tuple', 'List', 'File', 'String', 'Float'], and this function cannot be performed by these tools: ['Desk', 'Optical-Disc', 'Recording-Software', 'Rocking-Horse', 'Fabric', 'Flash-Drive']. What function it may be? Can Class be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Hammer', 'Chisel', 'Drill-Bit', 'File', 'Hacksaw'], and this function cannot be performed by these tools: ['Table-Saw', 'Luggage-Lock', 'Padlock', 'Cheese', 'Desktop-Computer', 'Clay']. What function it may be? Can Pencil be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Cargo-Container', 'Hand-Truck', 'Dolly', 'Crane', 'Pallet-Jack', 'Forklift'], and this function cannot be performed by these tools: ['Anvil', 'HTML-Tables', 'Handle', 'Crimp-Caps', 'Crowbar', 'Tow-Truck']. What function it may be? Can Wheelbarrow be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'See-Saw', 'Tightrope', 'Scale', 'Stool', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Printer', 'Hole-Punch', 'Class', 'Web-Pages', 'Processor', 'Polish-Jewelry']. What function it may be? Can Ruler be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Dolly', 'Wheelbarrow', 'Cargo-Container', 'Forklift', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Crimp-Caps', 'Crowbar', 'HTML-Tables', 'Clip', 'Tow-Truck', 'Handle']. What function it may be? Can Hand-Truck be used to perform this function? Can Anvil be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Scanner', 'Microphone', 'Speakers', 'Webcam', 'Monitor'], and this function cannot be performed by these tools: ['Leather', 'Door', 'Paint-Palette', 'Smartwatch', 'Tow-Truck', 'CSV-File']. What function it may be? Can Gamepad be used to perform this function? Can Pressure-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Styrofoam', 'Plaster', 'Cardboard', 'Wooden-Block', 'Clay'], and this function cannot be performed by these tools: ['Smartphone', 'Tile-Saw', 'Anchors', 'Scrub-Brush', 'Hacksaw', 'Padlock']. What function it may be? Can Balsa-Wood be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['String', 'Boolean', 'Class', 'Float', 'File', 'Tuple'], and this function cannot be performed by these tools: ['Recording-Software', 'Desk', 'Flash-Drive', 'Optical-Disc', 'Flagpole', 'Fabric']. What function it may be? Can List be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Router', 'Smartphone', 'Keyboard', 'USB-Flash-Drive', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Docks', 'Copper-Wire', 'Robot-Vacuum', 'Fishing-Rod', 'Seam-Ripper', 'Crate']. What function it may be? Can Monitor be used to perform this function? Can Wheel be used to perform this function?
There is a function that can be performed by these tools: ['Clamps', 'Adhesives', 'Nails', 'Anchors', 'Rivets', 'Staples'], and this function cannot be performed by these tools: ['Clock', 'Awl', 'Gamepad', 'Dictionary', 'SD-Card', 'Lace']. What function it may be? Can Screws be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Glue-Stick', 'Stapler', 'Scissors', 'White-Out', 'Pen'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'USB-Mouse', 'Jigsaw', 'Calculator', 'Bench', 'Tightrope']. What function it may be? Can Highlighter be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Wooden-Block', 'Clay', 'Styrofoam', 'Balsa-Wood', 'Stone'], and this function cannot be performed by these tools: ['Smartphone', 'Hacksaw', 'Scrub-Brush', 'Padlock', 'Tile-Saw', 'Anchors']. What function it may be? Can Plaster be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Tablet', 'Smartphone', 'Smartwatch', 'Printer', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Polish-Flag', 'Sharpener', 'Staple-Punch', 'Rugby-Ball', 'Refrigerator', 'Sound-Card']. What function it may be? Can Laptop be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Cable', 'Rope', 'Chain', 'Hook', 'Bungee-Cord'], and this function cannot be performed by these tools: ['Clamp', 'Beam', 'Rugby-Ball', 'Soldering-Iron', 'Napkin', 'Paint-Brush-Cleaner']. What function it may be? Can Towel be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Plaster', 'Clay', 'Cardboard', 'Balsa-Wood', 'Styrofoam'], and this function cannot be performed by these tools: ['Hacksaw', 'Smartphone', 'Anchors', 'Scrub-Brush', 'Padlock', 'Robot-Arm']. What function it may be? Can Stone be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Smartphone', 'Microcontroller', 'Tablet', 'Drone', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Yarn', 'Dice-Shaker', 'Golf-Ball', 'Ceiling', 'Vice', 'Robot-Vacuum']. What function it may be? Can Laptop be used to perform this function? Can Garage-Door-Lock be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Float', 'Tuple', 'String', 'Boolean', 'Class'], and this function cannot be performed by these tools: ['Recording-Software', 'Fabric', 'Flash-Drive', 'Desk', 'Optical-Disc', 'Rocking-Horse']. What function it may be? Can List be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Chair', 'Couch', 'Cabinet', 'Bookshelf', 'Bed'], and this function cannot be performed by these tools: ['Yarn', 'Robot-Arm', 'Mailbox-Lock', 'Doorknob', 'Cardboard', 'Magnetic-Tape']. What function it may be? Can Stool be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Desktop-Computer', 'Robot', 'Tablet', 'Laptop', 'Microcontroller'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Ceiling', 'Vice', 'Garage-Door-Lock', 'Yarn', 'Dice-Shaker']. What function it may be? Can Drone be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Tuple', 'Boolean', 'String', 'Float', 'List'], and this function cannot be performed by these tools: ['Recording-Software', 'Flagpole', 'Flash-Drive', 'Rocking-Horse', 'Optical-Disc', 'Fabric']. What function it may be? Can Class be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Couch', 'Cabinet', 'Stool', 'Bed', 'Chair'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Yarn', 'Doorknob', 'Robot-Arm', 'Mailbox-Lock', 'Cane']. What function it may be? Can Bookshelf be used to perform this function? Can Cardboard be used to perform this function?
There is a function that can be performed by these tools: ['Glue-Stick', 'Pen', 'Stapler', 'Highlighter', 'Scissors', 'Paper-Clip'], and this function cannot be performed by these tools: ['Tightrope', 'Screwdriver-Bit', 'Memory-Card', 'Jigsaw', 'Bench', 'USB-Mouse']. What function it may be? Can White-Out be used to perform this function? Can Calculator be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Wooden-Block', 'Cardboard', 'Plaster', 'Styrofoam', 'Clay'], and this function cannot be performed by these tools: ['Padlock', 'Hacksaw', 'Anchors', 'Smartphone', 'Scrub-Brush', 'Tile-Saw']. What function it may be? Can Stone be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smartphone', 'Keyboard', 'Monitor', 'USB-Flash-Drive', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Copper-Wire', 'Wheel', 'Robot-Vacuum', 'Crate', 'Docks']. What function it may be? Can Router be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Button', 'Switch', 'Slider', 'Pedal', 'Handle'], and this function cannot be performed by these tools: ['Paper', 'Digital-Level', 'Bobbins', 'Napkin', 'Clamp', 'Spirit-Level']. What function it may be? Can Joystick be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Microphone', 'USB-Drive', 'Headphones', 'Keyboard'], and this function cannot be performed by these tools: ['Ohmmeter', 'Measuring-Tape', 'Dremel-Tool', 'Staple-Punch', 'Helmets', 'Compass']. What function it may be? Can Webcam be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Microphone', 'Recording-Software', 'Speakers', 'Monitor', 'Mouse'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Pulley', 'Storage-Device', 'Netting', 'Graph-Paper', 'Ribbon']. What function it may be? Can Audio-Interface be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Couch', 'Bookshelf', 'Bed', 'Desk', 'Stool'], and this function cannot be performed by these tools: ['Yarn', 'Magnetic-Tape', 'Robot-Arm', 'Doorknob', 'Cardboard', 'Cane']. What function it may be? Can Chair be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Webcam', 'Microphone', 'Headphones', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Compass', 'Helmets', 'Measuring-Tape', 'Staple-Punch', 'Tug-of-War-Rope', 'Ohmmeter']. What function it may be? Can Mouse be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Cable', 'Chain', 'Handle', 'Rope', 'Bungee-Cord', 'Towel'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Napkin', 'Storage-Device', 'Soldering-Iron', 'Rugby-Ball', 'Clamp']. What function it may be? Can Hook be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Microphone', 'USB-Drive', 'Headphones', 'Keyboard', 'Mouse'], and this function cannot be performed by these tools: ['Ohmmeter', 'Tug-of-War-Rope', 'Dremel-Tool', 'Helmets', 'Staple-Punch', 'Measuring-Tape']. What function it may be? Can Webcam be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Staples', 'Clamps', 'Rivets', 'Adhesives', 'Anchors'], and this function cannot be performed by these tools: ['Lace', 'Table-Saw', 'Gamepad', 'SD-Card', 'Dictionary', 'Clock']. What function it may be? Can Screws be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Pedal', 'Switch', 'Handle', 'Button', 'Slider'], and this function cannot be performed by these tools: ['Mouse', 'Spirit-Level', 'Bobbins', 'Napkin', 'Digital-Level', 'Paper']. What function it may be? Can Dial be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Highlighter', 'Scissors', 'Glue-Stick', 'Stapler', 'Pen'], and this function cannot be performed by these tools: ['Jigsaw', 'Memory-Card', 'Calculator', 'Bench', 'Screwdriver-Bit', 'USB-Mouse']. What function it may be? Can White-Out be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Clay', 'Plaster', 'Balsa-Wood', 'Styrofoam', 'Wooden-Block'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Hacksaw', 'Padlock', 'Tile-Saw', 'Smartphone', 'Robot-Arm']. What function it may be? Can Stone be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Laptop', 'Robot', 'Desktop-Computer', 'Microcontroller', 'Tablet'], and this function cannot be performed by these tools: ['Vice', 'Ceiling', 'Robot-Vacuum', 'Yarn', 'Garage-Door-Lock', 'Dice-Shaker']. What function it may be? Can Smartphone be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Plaster', 'Cardboard', 'Clay', 'Stone', 'Wooden-Block', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Smartphone', 'Hacksaw', 'Padlock', 'Tile-Saw', 'Anchors']. What function it may be? Can Styrofoam be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Hammer', 'Pencil', 'Drill-Bit', 'Chisel', 'Screwdriver'], and this function cannot be performed by these tools: ['Padlock', 'LED-Lights', 'Luggage-Lock', 'Clay', 'Table-Saw', 'Cheese']. What function it may be? Can Hacksaw be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Chair', 'Cabinet', 'Stool', 'Bed', 'Dresser'], and this function cannot be performed by these tools: ['Anchors', 'Filter', 'Ribbon', 'Glass', 'Dodecahedron', 'Socket-Set']. What function it may be? Can Bookshelf be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Crane', 'Hand-Truck', 'Wheelbarrow', 'Pallet-Jack', 'Dolly'], and this function cannot be performed by these tools: ['Handle', 'Crimp-Caps', 'Anvil', 'Tow-Truck', 'HTML-Tables', 'Clip']. What function it may be? Can Cargo-Container be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Gesture-Sensor', 'Touchscreen-Monitor', 'Light-Switch', 'Tablet', 'Game-Controller'], and this function cannot be performed by these tools: ['Robot-Car', 'Rag', 'Paintbrush-Holder', 'Pitchfork', 'Crimp-Tool', 'CSV-Files']. What function it may be? Can Joystick be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Scanner', 'Gamepad', 'Mouse', 'Microphone', 'Monitor'], and this function cannot be performed by these tools: ['Leather', 'CSV-File', 'Smartwatch', 'Tow-Truck', 'Pressure-Gauge', 'Paint-Palette']. What function it may be? Can Webcam be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Highlighter', 'Scissors', 'Glue-Stick', 'White-Out', 'Paper-Clip'], and this function cannot be performed by these tools: ['USB-Mouse', 'Screwdriver-Bit', 'Tightrope', 'Jigsaw', 'Bench', 'Memory-Card']. What function it may be? Can Pen be used to perform this function? Can Calculator be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Docks', 'Buoys', 'Boats', 'Pilings', 'Piers'], and this function cannot be performed by these tools: ['Clamps', 'Microcontroller', 'Socket', 'Sticky-Notes', 'Strain-Gauge', 'Circular-Saw']. What function it may be? Can Wharfs be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Pilings', 'Piers', 'Floating-Logs', 'Boats', 'Docks'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Socket', 'Microcontroller', 'Clamps', 'Descenders', 'Circular-Saw']. What function it may be? Can Wharfs be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Mouse', 'Monitor', 'Gamepad', 'Microphone', 'Speakers'], and this function cannot be performed by these tools: ['Paint-Palette', 'Pressure-Gauge', 'Tow-Truck', 'Leather', 'Door', 'Smartwatch']. What function it may be? Can Scanner be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Raspberry-Pi', 'Sensor', 'Microcontroller', 'Computer', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Robot-Vacuum', 'Stopwatch', 'Plate', 'Laptop', 'Excel-Spreadsheet']. What function it may be? Can Drone be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Recording-Software', 'Microphone', 'Cables', 'Mouse', 'Monitor', 'Audio-Interface'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Netting', 'Storage-Device', 'Pulley', 'Seam-Ripper', 'Graph-Paper']. What function it may be? Can Speakers be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'USB-Drive', 'Microphone', 'Monitor', 'Mouse'], and this function cannot be performed by these tools: ['Compass', 'Ohmmeter', 'Tug-of-War-Rope', 'Helmets', 'Staple-Punch', 'Dremel-Tool']. What function it may be? Can Webcam be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Webcam', 'Speakers', 'Scanner', 'Mouse', 'Gamepad'], and this function cannot be performed by these tools: ['CSV-File', 'Paint-Palette', 'Tow-Truck', 'Door', 'Smartwatch', 'Pressure-Gauge']. What function it may be? Can Microphone be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Chisel', 'Hacksaw', 'Pencil', 'Drill-Bit', 'File'], and this function cannot be performed by these tools: ['Cheese', 'Desktop-Computer', 'LED-Lights', 'Table-Saw', 'Padlock', 'Luggage-Lock']. What function it may be? Can Hammer be used to perform this function? Can Clay be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Chair', 'Desk', 'Bed', 'Bookshelf', 'Stool'], and this function cannot be performed by these tools: ['Doorknob', 'Cane', 'Robot-Arm', 'Magnetic-Tape', 'Cardboard', 'Mailbox-Lock']. What function it may be? Can Cabinet be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Cables', 'Audio-Interface', 'Speakers', 'Monitor', 'Microphone'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Seam-Ripper', 'Storage-Device', 'Netting', 'Graph-Paper', 'Pulley']. What function it may be? Can Recording-Software be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Scanner', 'Mouse', 'Monitor', 'Gamepad', 'Speakers', 'Microphone'], and this function cannot be performed by these tools: ['Paint-Palette', 'Pressure-Gauge', 'Door', 'Smartwatch', 'CSV-File', 'Leather']. What function it may be? Can Webcam be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Pliers', 'Saw', 'Hammer', 'Crowbar', 'Drill', 'Tape-Measure'], and this function cannot be performed by these tools: ['Wharfs', 'Flash-Memory-Card', 'Scissors', 'Door', 'Rug', 'Buoys']. What function it may be? Can Rope be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Smartphone', 'Desktop-Computer', 'Tablet', 'Robot', 'Laptop'], and this function cannot be performed by these tools: ['Dice-Shaker', 'Vice', 'Golf-Ball', 'Yarn', 'Garage-Door-Lock', 'Robot-Vacuum']. What function it may be? Can Drone be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'File', 'List', 'Float', 'String', 'Boolean'], and this function cannot be performed by these tools: ['Desk', 'Recording-Software', 'Flash-Drive', 'Optical-Disc', 'Fabric', 'Rocking-Horse']. What function it may be? Can Class be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Webcam', 'Scanner', 'Monitor', 'Gamepad', 'Speakers'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'CSV-File', 'Paint-Palette', 'Leather', 'Smartwatch', 'Door']. What function it may be? Can Mouse be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Cable', 'Hook', 'Rope', 'Towel', 'Bungee-Cord', 'Handle'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Napkin', 'Storage-Device', 'Paint-Brush-Cleaner', 'Clamp', 'Beam']. What function it may be? Can Chain be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Buoys', 'Piers', 'Pilings', 'Wharfs', 'Floating-Logs'], and this function cannot be performed by these tools: ['Microcontroller', 'Clamps', 'Socket', 'Sticky-Notes', 'Descenders', 'Circular-Saw']. What function it may be? Can Boats be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Drill', 'Hammer', 'Crowbar', 'Saw', 'Pliers'], and this function cannot be performed by these tools: ['Rug', 'Wharfs', 'Door', 'Boolean', 'Flash-Memory-Card', 'Scissors']. What function it may be? Can Tape-Measure be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Pedal', 'Joystick', 'Switch', 'Handle', 'Button'], and this function cannot be performed by these tools: ['Clamp', 'Napkin', 'Paper', 'Bobbins', 'Digital-Level', 'Spirit-Level']. What function it may be? Can Dial be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Wall', 'Desk', 'Bookshelf', 'Chair', 'Floor'], and this function cannot be performed by these tools: ['Diaphragm', 'Cabinet-Handle', 'Raspberry-Pi', 'Drill-Press', 'Table-Saw', 'Thimble']. What function it may be? Can Cabinet be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Rivets', 'Anchors', 'Staples', 'Adhesives', 'Screws', 'Clamps'], and this function cannot be performed by these tools: ['Awl', 'Table-Saw', 'SD-Card', 'Dictionary', 'Clock', 'Gamepad']. What function it may be? Can Nails be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Keyboard', 'Headphones', 'Printer', 'Joystick', 'USB-Drive'], and this function cannot be performed by these tools: ['Vegetables', 'Polish-Music-Instruments', 'Mixer', 'Paint-Tray', 'Robot-Dog', 'Chalkboard']. What function it may be? Can Monitor be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Speakers', 'USB-Drive', 'Monitor', 'Keyboard', 'Headphones'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Paint-Tray', 'LED-Lights', 'Vegetables', 'Chalkboard', 'Mixer']. What function it may be? Can Joystick be used to perform this function? Can Robot-Dog be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Microphone', 'Webcam', 'Monitor', 'Speakers', 'Scanner'], and this function cannot be performed by these tools: ['CSV-File', 'Smartwatch', 'Tow-Truck', 'Pressure-Gauge', 'Paint-Palette', 'Door']. What function it may be? Can Mouse be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Door', 'Bookshelf', 'Floor', 'Chair', 'Cabinet'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Raspberry-Pi', 'API-Endpoints', 'Table-Saw', 'Diaphragm', 'Thimble']. What function it may be? Can Desk be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Drill-Bit', 'Pencil', 'Screwdriver', 'Hammer', 'File'], and this function cannot be performed by these tools: ['Table-Saw', 'Padlock', 'Clay', 'Cheese', 'LED-Lights', 'Luggage-Lock']. What function it may be? Can Hacksaw be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Floating-Logs', 'Docks', 'Piers', 'Boats', 'Wharfs'], and this function cannot be performed by these tools: ['Circular-Saw', 'Socket', 'Descenders', 'Microcontroller', 'Clamps', 'Sticky-Notes']. What function it may be? Can Buoys be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Hammer', 'Hacksaw', 'Drill-Bit', 'Chisel', 'Pencil'], and this function cannot be performed by these tools: ['Cheese', 'Clay', 'Table-Saw', 'LED-Lights', 'Desktop-Computer', 'Luggage-Lock']. What function it may be? Can Screwdriver be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Headphones', 'USB-Drive', 'Mouse', 'Monitor', 'Webcam'], and this function cannot be performed by these tools: ['Helmets', 'Ohmmeter', 'Measuring-Tape', 'Dremel-Tool', 'Tug-of-War-Rope', 'Staple-Punch']. What function it may be? Can Keyboard be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Tightrope', 'See-Saw', 'Scale', 'Ruler', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Processor', 'Hole-Punch', 'Class', 'Web-Pages', 'Printer', 'Pulley']. What function it may be? Can Plank be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Monitor', 'Microphone', 'USB-Drive', 'Keyboard', 'Webcam'], and this function cannot be performed by these tools: ['Compass', 'Ohmmeter', 'Tug-of-War-Rope', 'Dremel-Tool', 'Measuring-Tape', 'Staple-Punch']. What function it may be? Can Headphones be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Speakers', 'Keyboard', 'Headphones', 'Joystick', 'USB-Drive'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Paint-Tray', 'Vegetables', 'Robot-Dog', 'Mixer', 'Chalkboard']. What function it may be? Can Monitor be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Scale', 'See-Saw', 'Ruler', 'Plank', 'Tightrope', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Hole-Punch', 'Pulley', 'Web-Pages', 'Polish-Jewelry', 'Processor', 'Printer']. What function it may be? Can Stool be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Cables', 'Recording-Software', 'Monitor', 'Speakers', 'Microphone'], and this function cannot be performed by these tools: ['Storage-Device', 'Netting', 'Graph-Paper', 'Pulley', 'Scissor-Lift', 'Ribbon']. What function it may be? Can Audio-Interface be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['String', 'Class', 'Float', 'File', 'List', 'Tuple'], and this function cannot be performed by these tools: ['Recording-Software', 'Desk', 'Rocking-Horse', 'Fabric', 'Flagpole', 'Optical-Disc']. What function it may be? Can Boolean be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Desk', 'Cabinet', 'Chair', 'Door', 'Wall'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'Table-Saw', 'Drill-Press', 'Diaphragm', 'API-Endpoints', 'Cabinet-Handle']. What function it may be? Can Floor be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Microcontroller', 'Robot', 'Sensor', 'GPS-Tracker', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Laptop', 'Plate', 'Joystick', 'Robot-Vacuum', 'Stopwatch', 'Excel-Spreadsheet']. What function it may be? Can Computer be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Scale', 'Plank', 'Ruler', 'See-Saw', 'Rocking-Horse', 'Tightrope'], and this function cannot be performed by these tools: ['Polish-Jewelry', 'Web-Pages', 'Processor', 'Class', 'Hole-Punch', 'Printer']. What function it may be? Can Stool be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Recording-Software', 'Microphone', 'Speakers', 'Cables'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Pulley', 'Netting', 'Graph-Paper', 'Scissor-Lift', 'Ribbon']. What function it may be? Can Audio-Interface be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'File', 'Tuple', 'Boolean', 'Class', 'String'], and this function cannot be performed by these tools: ['Flagpole', 'Rocking-Horse', 'Optical-Disc', 'Flash-Drive', 'Desk', 'Fabric']. What function it may be? Can List be used to perform this function? Can Recording-Software be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'Tuple', 'List', 'File', 'String', 'Float'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Flash-Drive', 'Recording-Software', 'Flagpole', 'Desk', 'Fabric']. What function it may be? Can Boolean be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'External-Hard-Drive', 'Smartphone', 'Keyboard', 'USB-Flash-Drive', 'Laptop'], and this function cannot be performed by these tools: ['Docks', 'Fishing-Rod', 'Seam-Ripper', 'Crate', 'Wheel', 'Robot-Vacuum']. What function it may be? Can Router be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Sensor', 'Microcontroller', 'Drone', 'Robot', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Stopwatch', 'Plate', 'Joystick', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Magnetic-Tape']. What function it may be? Can Computer be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Plaster', 'Clay', 'Cardboard', 'Wooden-Block', 'Stone'], and this function cannot be performed by these tools: ['Smartphone', 'Hacksaw', 'Anchors', 'Robot-Arm', 'Tile-Saw', 'Padlock']. What function it may be? Can Styrofoam be used to perform this function? Can Scrub-Brush be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Speakers', 'Microphone', 'Webcam', 'Mouse', 'Scanner'], and this function cannot be performed by these tools: ['Paint-Palette', 'Leather', 'CSV-File', 'Smartwatch', 'Pressure-Gauge', 'Door']. What function it may be? Can Gamepad be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Speakers', 'Monitor', 'Joystick', 'Printer', 'Headphones'], and this function cannot be performed by these tools: ['Chalkboard', 'Robot-Dog', 'Polish-Music-Instruments', 'Paint-Tray', 'Mixer', 'LED-Lights']. What function it may be? Can Keyboard be used to perform this function? Can Vegetables be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Dial', 'Slider', 'Pedal', 'Button', 'Handle'], and this function cannot be performed by these tools: ['Napkin', 'Digital-Level', 'Mouse', 'Paper', 'Spirit-Level', 'Clamp']. What function it may be? Can Switch be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Router', 'USB-Flash-Drive', 'External-Hard-Drive', 'Keyboard', 'Laptop', 'Smartphone'], and this function cannot be performed by these tools: ['Docks', 'Copper-Wire', 'Robot-Vacuum', 'Fishing-Rod', 'Wheel', 'Seam-Ripper']. What function it may be? Can Monitor be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Game-Controller', 'Joystick', 'Touchscreen-Monitor', 'Tablet', 'Mouse'], and this function cannot be performed by these tools: ['Robot-Car', 'CSV-Files', 'Jump-Rope', 'Rag', 'Paintbrush-Holder', 'Crimp-Tool']. What function it may be? Can Light-Switch be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Wharfs', 'Pilings', 'Buoys', 'Boats', 'Docks'], and this function cannot be performed by these tools: ['Circular-Saw', 'Descenders', 'Microcontroller', 'Clamps', 'Socket', 'Sticky-Notes']. What function it may be? Can Piers be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Mouse', 'Recording-Software', 'Microphone', 'Audio-Interface', 'Cables'], and this function cannot be performed by these tools: ['Netting', 'Storage-Device', 'Graph-Paper', 'Seam-Ripper', 'Pulley', 'Scissor-Lift']. What function it may be? Can Monitor be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Hacksaw', 'Chisel', 'File', 'Screwdriver', 'Pencil'], and this function cannot be performed by these tools: ['Cheese', 'Clay', 'Desktop-Computer', 'Table-Saw', 'Luggage-Lock', 'Padlock']. What function it may be? Can Drill-Bit be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['See-Saw', 'Ruler', 'Rocking-Horse', 'Stool', 'Plank', 'Tightrope'], and this function cannot be performed by these tools: ['Processor', 'Printer', 'Web-Pages', 'Pulley', 'Polish-Jewelry', 'Hole-Punch']. What function it may be? Can Scale be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['See-Saw', 'Plank', 'Ruler', 'Rocking-Horse', 'Stool', 'Scale'], and this function cannot be performed by these tools: ['Hole-Punch', 'Web-Pages', 'Processor', 'Printer', 'Class', 'Pulley']. What function it may be? Can Tightrope be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Smartphone', 'Router', 'External-Hard-Drive', 'Keyboard', 'Laptop'], and this function cannot be performed by these tools: ['Copper-Wire', 'Seam-Ripper', 'Robot-Vacuum', 'Fishing-Rod', 'Wheel', 'Docks']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'USB-Drive', 'Microphone', 'Webcam', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Compass', 'Ohmmeter', 'Staple-Punch', 'Tug-of-War-Rope', 'Helmets', 'Dremel-Tool']. What function it may be? Can Headphones be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Smartphone', 'Smart-Speaker', 'Smartwatch', 'Laptop', 'Tablet'], and this function cannot be performed by these tools: ['Sound-Card', 'Staple-Punch', 'Sharpener', 'Polish-Flag', 'Needle', 'Refrigerator']. What function it may be? Can Printer be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Saw', 'Rope', 'Tape-Measure', 'Drill', 'Pliers', 'Crowbar'], and this function cannot be performed by these tools: ['Wharfs', 'Buoys', 'Flash-Memory-Card', 'Boolean', 'Rug', 'Scissors']. What function it may be? Can Hammer be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Recording-Software', 'Cables', 'Mouse', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['Pulley', 'Scissor-Lift', 'Ribbon', 'Storage-Device', 'Netting', 'Graph-Paper']. What function it may be? Can Audio-Interface be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Pallet-Jack', 'Forklift', 'Crane', 'Hand-Truck', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Handle', 'Anvil', 'Crimp-Caps', 'HTML-Tables', 'Clip', 'Tow-Truck']. What function it may be? Can Cargo-Container be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Webcam', 'Mouse', 'Headphones', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Helmets', 'Ohmmeter', 'Dremel-Tool', 'Staple-Punch', 'Tug-of-War-Rope']. What function it may be? Can Microphone be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Pliers', 'Tape-Measure', 'Hammer', 'Crowbar', 'Drill'], and this function cannot be performed by these tools: ['Wharfs', 'Boolean', 'Door', 'Rug', 'Buoys', 'Flash-Memory-Card']. What function it may be? Can Saw be used to perform this function? Can Scissors be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'USB-Drive', 'Printer', 'Speakers', 'Monitor', 'Headphones'], and this function cannot be performed by these tools: ['Vegetables', 'Polish-Music-Instruments', 'Chalkboard', 'LED-Lights', 'Robot-Dog', 'Paint-Tray']. What function it may be? Can Keyboard be used to perform this function? Can Mixer be used to perform this function?
There is a function that can be performed by these tools: ['Router', 'Laptop', 'Keyboard', 'Monitor', 'External-Hard-Drive', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Crate', 'Seam-Ripper', 'Wheel', 'Copper-Wire', 'Docks']. What function it may be? Can Smartphone be used to perform this function? Can Fishing-Rod be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Webcam', 'Mouse', 'Gamepad', 'Microphone', 'Scanner'], and this function cannot be performed by these tools: ['Smartwatch', 'Pressure-Gauge', 'Paint-Palette', 'Leather', 'Door', 'Tow-Truck']. What function it may be? Can Monitor be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Printer', 'Speakers', 'Headphones', 'Monitor', 'Keyboard'], and this function cannot be performed by these tools: ['Paint-Tray', 'Mixer', 'Robot-Dog', 'Vegetables', 'LED-Lights', 'Chalkboard']. What function it may be? Can Joystick be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Floating-Logs', 'Pilings', 'Docks', 'Buoys', 'Wharfs'], and this function cannot be performed by these tools: ['Socket', 'Clamps', 'Circular-Saw', 'Sticky-Notes', 'Microcontroller', 'Descenders']. What function it may be? Can Boats be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Mouse', 'Headphones', 'USB-Drive', 'Webcam', 'Monitor'], and this function cannot be performed by these tools: ['Ohmmeter', 'Staple-Punch', 'Helmets', 'Dremel-Tool', 'Measuring-Tape', 'Tug-of-War-Rope']. What function it may be? Can Keyboard be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Tightrope', 'Plank', 'Rocking-Horse', 'Ruler', 'Scale'], and this function cannot be performed by these tools: ['Class', 'Hole-Punch', 'Polish-Jewelry', 'Pulley', 'Web-Pages', 'Processor']. What function it may be? Can See-Saw be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Float', 'Tuple', 'String', 'List', 'Class'], and this function cannot be performed by these tools: ['Desk', 'Optical-Disc', 'Recording-Software', 'Rocking-Horse', 'Flagpole', 'Fabric']. What function it may be? Can File be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Stapler', 'Glue-Stick', 'White-Out', 'Highlighter', 'Pen'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Memory-Card', 'Tightrope', 'Jigsaw', 'Calculator', 'Bench']. What function it may be? Can Scissors be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Adhesives', 'Clamps', 'Screws', 'Anchors', 'Rivets', 'Nails'], and this function cannot be performed by these tools: ['Clock', 'Table-Saw', 'Awl', 'Dictionary', 'Lace', 'SD-Card']. What function it may be? Can Staples be used to perform this function? Can Gamepad be used to perform this function?
There is a function that can be performed by these tools: ['Screws', 'Anchors', 'Rivets', 'Staples', 'Nails', 'Adhesives'], and this function cannot be performed by these tools: ['Dictionary', 'SD-Card', 'Table-Saw', 'Clock', 'Lace', 'Awl']. What function it may be? Can Clamps be used to perform this function? Can Gamepad be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Handle', 'Button', 'Pedal', 'Switch', 'Dial'], and this function cannot be performed by these tools: ['Napkin', 'Bobbins', 'Mouse', 'Spirit-Level', 'Digital-Level', 'Clamp']. What function it may be? Can Joystick be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Bed', 'Bookshelf', 'Stool', 'Cabinet', 'Table'], and this function cannot be performed by these tools: ['Dodecahedron', 'Filter', 'Anchors', 'Ribbon', 'Socket-Set', 'Glass']. What function it may be? Can Dresser be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Tightrope', 'Plank', 'Stool', 'Rocking-Horse', 'See-Saw'], and this function cannot be performed by these tools: ['Pulley', 'Polish-Jewelry', 'Hole-Punch', 'Class', 'Web-Pages', 'Printer']. What function it may be? Can Scale be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['Pencil', 'Drill-Bit', 'Chisel', 'File', 'Hammer', 'Hacksaw'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Table-Saw', 'Padlock', 'Clay', 'Cheese', 'LED-Lights']. What function it may be? Can Screwdriver be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Stool', 'Bookshelf', 'Dresser', 'Bed', 'Table'], and this function cannot be performed by these tools: ['Dodecahedron', 'Socket-Set', 'Memory-Card', 'Filter', 'Ribbon', 'Glass']. What function it may be? Can Chair be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Plank', 'Tightrope', 'Rocking-Horse', 'Scale', 'See-Saw'], and this function cannot be performed by these tools: ['Hole-Punch', 'Class', 'Polish-Jewelry', 'Printer', 'Processor', 'Web-Pages']. What function it may be? Can Ruler be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Saw', 'Pliers', 'Rope', 'Tape-Measure', 'Drill'], and this function cannot be performed by these tools: ['Door', 'Boolean', 'Rug', 'Buoys', 'Flash-Memory-Card', 'Wharfs']. What function it may be? Can Crowbar be used to perform this function? Can Scissors be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Mouse', 'Joystick', 'Light-Switch', 'Gesture-Sensor', 'Game-Controller'], and this function cannot be performed by these tools: ['CSV-Files', 'Paintbrush-Holder', 'Rag', 'Robot-Car', 'Jump-Rope', 'Crimp-Tool']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['See-Saw', 'Ruler', 'Rocking-Horse', 'Tightrope', 'Stool', 'Scale'], and this function cannot be performed by these tools: ['Processor', 'Class', 'Hole-Punch', 'Pulley', 'Polish-Jewelry', 'Printer']. What function it may be? Can Plank be used to perform this function? Can Web-Pages be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Joystick', 'Game-Controller', 'Gesture-Sensor', 'Touchscreen-Monitor', 'Mouse'], and this function cannot be performed by these tools: ['Rag', 'Robot-Car', 'Jump-Rope', 'Paintbrush-Holder', 'Crimp-Tool', 'Pitchfork']. What function it may be? Can Tablet be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Floor', 'Door', 'Cabinet', 'Chair', 'Bookshelf'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Thimble', 'Raspberry-Pi', 'Diaphragm', 'Table-Saw', 'API-Endpoints']. What function it may be? Can Wall be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Audio-Interface', 'Monitor', 'Mouse', 'Cables', 'Recording-Software'], and this function cannot be performed by these tools: ['Pulley', 'Scissor-Lift', 'Seam-Ripper', 'Netting', 'Storage-Device', 'Ribbon']. What function it may be? Can Speakers be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Screws', 'Rivets', 'Staples', 'Anchors', 'Adhesives'], and this function cannot be performed by these tools: ['Awl', 'Gamepad', 'Clock', 'SD-Card', 'Table-Saw', 'Dictionary']. What function it may be? Can Clamps be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Laptop', 'Drone', 'Microcontroller', 'Robot', 'Tablet'], and this function cannot be performed by these tools: ['Vice', 'Garage-Door-Lock', 'Ceiling', 'Golf-Ball', 'Dice-Shaker', 'Yarn']. What function it may be? Can Smartphone be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Saw', 'Tape-Measure', 'Pliers', 'Hammer', 'Drill', 'Rope'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Wharfs', 'Door', 'Rug', 'Boolean', 'Scissors']. What function it may be? Can Crowbar be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Laptop', 'Microcontroller', 'Drone', 'Desktop-Computer', 'Smartphone'], and this function cannot be performed by these tools: ['Yarn', 'Dice-Shaker', 'Garage-Door-Lock', 'Ceiling', 'Robot-Vacuum', 'Golf-Ball']. What function it may be? Can Robot be used to perform this function? Can Vice be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'Scissors', 'Paper-Clip', 'Stapler', 'Pen', 'White-Out'], and this function cannot be performed by these tools: ['Bench', 'Screwdriver-Bit', 'Tightrope', 'Memory-Card', 'Calculator', 'Jigsaw']. What function it may be? Can Glue-Stick be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Styrofoam', 'Clay', 'Balsa-Wood', 'Stone', 'Plaster', 'Wooden-Block'], and this function cannot be performed by these tools: ['Tile-Saw', 'Hacksaw', 'Smartphone', 'Anchors', 'Scrub-Brush', 'Robot-Arm']. What function it may be? Can Cardboard be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Smart-TV', 'Smart-Speaker', 'Smartphone', 'Smartwatch', 'Printer'], and this function cannot be performed by these tools: ['Refrigerator', 'Rugby-Ball', 'Sound-Card', 'Staple-Punch', 'Polish-Flag', 'Sharpener']. What function it may be? Can Laptop be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Chisel', 'Pencil', 'Hammer', 'File', 'Hacksaw'], and this function cannot be performed by these tools: ['Padlock', 'Cheese', 'LED-Lights', 'Clay', 'Table-Saw', 'Desktop-Computer']. What function it may be? Can Screwdriver be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Scanner', 'Speakers', 'Microphone', 'Monitor', 'Gamepad'], and this function cannot be performed by these tools: ['Smartwatch', 'Paint-Palette', 'Leather', 'CSV-File', 'Door', 'Pressure-Gauge']. What function it may be? Can Mouse be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Switch', 'Pedal', 'Dial', 'Handle', 'Slider'], and this function cannot be performed by these tools: ['Napkin', 'Spirit-Level', 'Paper', 'Mouse', 'Clamp', 'Bobbins']. What function it may be? Can Button be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Drill', 'Tape-Measure', 'Pliers', 'Rope', 'Hammer', 'Crowbar'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Rug', 'Scissors', 'Wharfs', 'Buoys', 'Door']. What function it may be? Can Saw be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Computer', 'Raspberry-Pi', 'Sensor', 'GPS-Tracker', 'Robot'], and this function cannot be performed by these tools: ['Plate', 'Magnetic-Tape', 'Stopwatch', 'Joystick', 'Robot-Vacuum', 'Excel-Spreadsheet']. What function it may be? Can Microcontroller be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Tablet', 'Laptop', 'Printer', 'Smartphone', 'Smartwatch'], and this function cannot be performed by these tools: ['Needle', 'Staple-Punch', 'Polish-Flag', 'Sharpener', 'Refrigerator', 'Sound-Card']. What function it may be? Can Smart-TV be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Chisel', 'Screwdriver', 'Hammer', 'Pencil', 'Hacksaw'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Cheese', 'Clay', 'Desktop-Computer', 'LED-Lights', 'Table-Saw']. What function it may be? Can File be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Microphone', 'USB-Drive', 'Webcam', 'Keyboard'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Helmets', 'Staple-Punch', 'Ohmmeter', 'Tug-of-War-Rope', 'Compass']. What function it may be? Can Headphones be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Forklift', 'Crane', 'Hand-Truck', 'Cargo-Container', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Handle', 'HTML-Tables', 'Clip', 'Tow-Truck', 'Anvil', 'Crimp-Caps']. What function it may be? Can Pallet-Jack be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Audio-Interface', 'Mouse', 'Speakers', 'Cables', 'Microphone'], and this function cannot be performed by these tools: ['Graph-Paper', 'Storage-Device', 'Netting', 'Scissor-Lift', 'Ribbon', 'Seam-Ripper']. What function it may be? Can Recording-Software be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Joystick', 'Mouse', 'Touchscreen-Monitor', 'Game-Controller', 'Light-Switch'], and this function cannot be performed by these tools: ['Jump-Rope', 'Rag', 'Robot-Car', 'CSV-Files', 'Crimp-Tool', 'Paintbrush-Holder']. What function it may be? Can Gesture-Sensor be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Mouse', 'Tablet', 'Touchscreen-Monitor', 'Gesture-Sensor', 'Light-Switch'], and this function cannot be performed by these tools: ['Crimp-Tool', 'Pitchfork', 'Paintbrush-Holder', 'Robot-Car', 'Rag', 'Jump-Rope']. What function it may be? Can Joystick be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Bookshelf', 'Desk', 'Chair', 'Cabinet', 'Couch'], and this function cannot be performed by these tools: ['Cardboard', 'Doorknob', 'Yarn', 'Robot-Arm', 'Magnetic-Tape', 'Cane']. What function it may be? Can Stool be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Speakers', 'Gamepad', 'Monitor', 'Mouse', 'Microphone'], and this function cannot be performed by these tools: ['CSV-File', 'Tow-Truck', 'Door', 'Smartwatch', 'Paint-Palette', 'Pressure-Gauge']. What function it may be? Can Scanner be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Plaster', 'Balsa-Wood', 'Cardboard', 'Stone', 'Styrofoam', 'Clay'], and this function cannot be performed by these tools: ['Tile-Saw', 'Hacksaw', 'Robot-Arm', 'Anchors', 'Smartphone', 'Scrub-Brush']. What function it may be? Can Wooden-Block be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'Boolean', 'String', 'File', 'Float', 'List'], and this function cannot be performed by these tools: ['Fabric', 'Recording-Software', 'Optical-Disc', 'Flagpole', 'Rocking-Horse', 'Desk']. What function it may be? Can Tuple be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Smartphone', 'Smartwatch', 'Smart-TV', 'Laptop', 'Tablet'], and this function cannot be performed by these tools: ['Sharpener', 'Polish-Flag', 'Staple-Punch', 'Needle', 'Sound-Card', 'Refrigerator']. What function it may be? Can Smart-Speaker be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Tablet', 'Printer', 'Smart-TV', 'Smartwatch', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Sound-Card', 'Rugby-Ball', 'Staple-Punch', 'Sharpener', 'Refrigerator', 'Polish-Flag']. What function it may be? Can Laptop be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Joystick', 'Pedal', 'Button', 'Switch', 'Handle'], and this function cannot be performed by these tools: ['Digital-Level', 'Mouse', 'Napkin', 'Paper', 'Clamp', 'Bobbins']. What function it may be? Can Dial be used to perform this function? Can Spirit-Level be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Joystick', 'Pedal', 'Handle', 'Dial', 'Slider'], and this function cannot be performed by these tools: ['Digital-Level', 'Spirit-Level', 'Napkin', 'Bobbins', 'Mouse', 'Clamp']. What function it may be? Can Button be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Chair', 'Cabinet', 'Stool', 'Dresser', 'Table'], and this function cannot be performed by these tools: ['Dodecahedron', 'Anchors', 'Glass', 'Memory-Card', 'Ribbon', 'Socket-Set']. What function it may be? Can Bookshelf be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Stool', 'Bed', 'Bookshelf', 'Chair', 'Dresser'], and this function cannot be performed by these tools: ['Ribbon', 'Socket-Set', 'Anchors', 'Dodecahedron', 'Glass', 'Filter']. What function it may be? Can Table be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Printer', 'Tablet', 'Smartwatch', 'Laptop', 'Smartphone'], and this function cannot be performed by these tools: ['Polish-Flag', 'Refrigerator', 'Rugby-Ball', 'Sound-Card', 'Needle', 'Staple-Punch']. What function it may be? Can Smart-TV be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Bungee-Cord', 'Hook', 'Cable', 'Chain', 'Towel'], and this function cannot be performed by these tools: ['Napkin', 'Rugby-Ball', 'Paint-Brush-Cleaner', 'Soldering-Iron', 'Beam', 'Clamp']. What function it may be? Can Handle be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Tightrope', 'See-Saw', 'Scale', 'Ruler', 'Plank'], and this function cannot be performed by these tools: ['Polish-Jewelry', 'Web-Pages', 'Printer', 'Hole-Punch', 'Pulley', 'Class']. What function it may be? Can Stool be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Cargo-Container', 'Dolly', 'Crane', 'Wheelbarrow', 'Forklift'], and this function cannot be performed by these tools: ['HTML-Tables', 'Crowbar', 'Clip', 'Tow-Truck', 'Crimp-Caps', 'Anvil']. What function it may be? Can Hand-Truck be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Scissors', 'Highlighter', 'White-Out', 'Paper-Clip', 'Pen'], and this function cannot be performed by these tools: ['USB-Mouse', 'Bench', 'Tightrope', 'Jigsaw', 'Memory-Card', 'Screwdriver-Bit']. What function it may be? Can Glue-Stick be used to perform this function? Can Calculator be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'Boolean', 'Tuple', 'String', 'File', 'List'], and this function cannot be performed by these tools: ['Desk', 'Fabric', 'Flash-Drive', 'Optical-Disc', 'Rocking-Horse', 'Flagpole']. What function it may be? Can Float be used to perform this function? Can Recording-Software be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Chair', 'Bookshelf', 'Cabinet', 'Dresser', 'Stool'], and this function cannot be performed by these tools: ['Glass', 'Anchors', 'Filter', 'Dodecahedron', 'Socket-Set', 'Memory-Card']. What function it may be? Can Table be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Smart-Speaker', 'Tablet', 'Laptop', 'Printer', 'Smartphone'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Staple-Punch', 'Sharpener', 'Refrigerator', 'Sound-Card', 'Needle']. What function it may be? Can Smartwatch be used to perform this function? Can Polish-Flag be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Crane', 'Hand-Truck', 'Cargo-Container', 'Forklift', 'Dolly'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Crimp-Caps', 'Handle', 'Anvil', 'Clip']. What function it may be? Can Wheelbarrow be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Robot', 'Drone', 'Desktop-Computer', 'Microcontroller', 'Laptop'], and this function cannot be performed by these tools: ['Golf-Ball', 'Dice-Shaker', 'Garage-Door-Lock', 'Yarn', 'Robot-Vacuum', 'Vice']. What function it may be? Can Smartphone be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Crowbar', 'Tape-Measure', 'Drill', 'Pliers', 'Rope'], and this function cannot be performed by these tools: ['Door', 'Rug', 'Boolean', 'Buoys', 'Flash-Memory-Card', 'Scissors']. What function it may be? Can Saw be used to perform this function? Can Wharfs be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Plank', 'Scale', 'Ruler', 'Stool', 'Tightrope'], and this function cannot be performed by these tools: ['Class', 'Hole-Punch', 'Polish-Jewelry', 'Pulley', 'Processor', 'Web-Pages']. What function it may be? Can See-Saw be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Pen', 'Scissors', 'Highlighter', 'White-Out', 'Glue-Stick', 'Paper-Clip'], and this function cannot be performed by these tools: ['Calculator', 'Tightrope', 'Memory-Card', 'Bench', 'Jigsaw', 'Screwdriver-Bit']. What function it may be? Can Stapler be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Printer', 'Smart-Speaker', 'Smartwatch', 'Smartphone', 'Laptop'], and this function cannot be performed by these tools: ['Polish-Flag', 'Needle', 'Staple-Punch', 'Rugby-Ball', 'Refrigerator', 'Sound-Card']. What function it may be? Can Smart-TV be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Wall', 'Chair', 'Cabinet', 'Door'], and this function cannot be performed by these tools: ['Diaphragm', 'Cabinet-Handle', 'Raspberry-Pi', 'Thimble', 'API-Endpoints', 'Table-Saw']. What function it may be? Can Floor be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Towel', 'Handle', 'Hook', 'Bungee-Cord', 'Cable', 'Rope'], and this function cannot be performed by these tools: ['Clamp', 'Beam', 'Storage-Device', 'Napkin', 'Paint-Brush-Cleaner', 'Rugby-Ball']. What function it may be? Can Chain be used to perform this function? Can Soldering-Iron be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'Hammer', 'Pencil', 'Drill-Bit', 'Screwdriver', 'Chisel'], and this function cannot be performed by these tools: ['Table-Saw', 'Clay', 'Padlock', 'Cheese', 'Desktop-Computer', 'Luggage-Lock']. What function it may be? Can File be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Pedal', 'Button', 'Handle', 'Slider', 'Joystick'], and this function cannot be performed by these tools: ['Clamp', 'Digital-Level', 'Bobbins', 'Spirit-Level', 'Mouse', 'Napkin']. What function it may be? Can Dial be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Tightrope', 'See-Saw', 'Plank', 'Ruler', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Class', 'Hole-Punch', 'Web-Pages', 'Polish-Jewelry', 'Processor', 'Printer']. What function it may be? Can Scale be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Boats', 'Buoys', 'Piers', 'Floating-Logs', 'Pilings', 'Docks'], and this function cannot be performed by these tools: ['Clamps', 'Sticky-Notes', 'Circular-Saw', 'Strain-Gauge', 'Socket', 'Descenders']. What function it may be? Can Wharfs be used to perform this function? Can Microcontroller be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Floor', 'Door', 'Cabinet', 'Bookshelf', 'Wall'], and this function cannot be performed by these tools: ['Diaphragm', 'Cabinet-Handle', 'API-Endpoints', 'Table-Saw', 'Drill-Press', 'Thimble']. What function it may be? Can Chair be used to perform this function? Can Raspberry-Pi be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Floating-Logs', 'Piers', 'Wharfs', 'Boats', 'Docks'], and this function cannot be performed by these tools: ['Microcontroller', 'Strain-Gauge', 'Sticky-Notes', 'Socket', 'Descenders', 'Circular-Saw']. What function it may be? Can Buoys be used to perform this function? Can Clamps be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Smart-TV', 'Tablet', 'Smartwatch', 'Laptop', 'Smartphone'], and this function cannot be performed by these tools: ['Needle', 'Staple-Punch', 'Refrigerator', 'Sharpener', 'Sound-Card', 'Rugby-Ball']. What function it may be? Can Printer be used to perform this function? Can Polish-Flag be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Mouse', 'Cables', 'Microphone', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Seam-Ripper', 'Netting', 'Ribbon', 'Graph-Paper', 'Storage-Device']. What function it may be? Can Recording-Software be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Scanner', 'Mouse', 'Microphone', 'Webcam', 'Gamepad'], and this function cannot be performed by these tools: ['Leather', 'CSV-File', 'Smartwatch', 'Paint-Palette', 'Door', 'Tow-Truck']. What function it may be? Can Speakers be used to perform this function? Can Pressure-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Pallet-Jack', 'Wheelbarrow', 'Cargo-Container', 'Crane', 'Forklift'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Crowbar', 'Anvil', 'Crimp-Caps', 'Clip']. What function it may be? Can Hand-Truck be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Tablet', 'Laptop', 'Drone', 'Desktop-Computer', 'Smartphone'], and this function cannot be performed by these tools: ['Vice', 'Golf-Ball', 'Robot-Vacuum', 'Yarn', 'Dice-Shaker', 'Garage-Door-Lock']. What function it may be? Can Robot be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Mouse', 'Microphone', 'USB-Drive', 'Headphones', 'Webcam'], and this function cannot be performed by these tools: ['Staple-Punch', 'Tug-of-War-Rope', 'Ohmmeter', 'Compass', 'Dremel-Tool', 'Measuring-Tape']. What function it may be? Can Keyboard be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'USB-Flash-Drive', 'External-Hard-Drive', 'Laptop', 'Router', 'Keyboard'], and this function cannot be performed by these tools: ['Crate', 'Fishing-Rod', 'Robot-Vacuum', 'Seam-Ripper', 'Wheel', 'Copper-Wire']. What function it may be? Can Monitor be used to perform this function? Can Docks be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Pliers', 'Tape-Measure', 'Crowbar', 'Rope', 'Saw'], and this function cannot be performed by these tools: ['Door', 'Scissors', 'Wharfs', 'Flash-Memory-Card', 'Buoys', 'Boolean']. What function it may be? Can Drill be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Wall', 'Cabinet', 'Desk', 'Floor', 'Bookshelf'], and this function cannot be performed by these tools: ['API-Endpoints', 'Raspberry-Pi', 'Drill-Press', 'Thimble', 'Table-Saw', 'Cabinet-Handle']. What function it may be? Can Door be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Cabinet', 'Chair', 'Door', 'Floor'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Cabinet-Handle', 'Diaphragm', 'Drill-Press', 'Thimble']. What function it may be? Can Wall be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['USB-Flash-Drive', 'External-Hard-Drive', 'Keyboard', 'Laptop', 'Monitor', 'Smartphone'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Crate', 'Wheel', 'Robot-Vacuum', 'Seam-Ripper', 'Docks']. What function it may be? Can Router be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Smartphone', 'External-Hard-Drive', 'Laptop', 'USB-Flash-Drive', 'Router'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Copper-Wire', 'Docks', 'Seam-Ripper', 'Robot-Vacuum', 'Wheel']. What function it may be? Can Monitor be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Clamps', 'Screws', 'Rivets', 'Adhesives', 'Anchors'], and this function cannot be performed by these tools: ['Lace', 'Dictionary', 'Gamepad', 'Awl', 'SD-Card', 'Table-Saw']. What function it may be? Can Staples be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Keyboard', 'Monitor', 'USB-Flash-Drive', 'Laptop', 'Smartphone'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Crate', 'Wheel', 'Docks', 'Robot-Vacuum', 'Fishing-Rod']. What function it may be? Can Router be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Float', 'List', 'Class', 'File', 'Tuple'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Fabric', 'Optical-Disc', 'Flagpole', 'Desk', 'Recording-Software']. What function it may be? Can String be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Touchscreen-Monitor', 'Joystick', 'Mouse', 'Tablet', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Pitchfork', 'CSV-Files', 'Rag', 'Jump-Rope', 'Crimp-Tool']. What function it may be? Can Light-Switch be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Stone', 'Cardboard', 'Wooden-Block', 'Styrofoam', 'Plaster'], and this function cannot be performed by these tools: ['Smartphone', 'Anchors', 'Hacksaw', 'Padlock', 'Tile-Saw', 'Scrub-Brush']. What function it may be? Can Clay be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'Scale', 'Ruler', 'Rocking-Horse', 'Tightrope', 'See-Saw'], and this function cannot be performed by these tools: ['Processor', 'Pulley', 'Printer', 'Class', 'Web-Pages', 'Polish-Jewelry']. What function it may be? Can Stool be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Buoys', 'Boats', 'Floating-Logs', 'Wharfs', 'Piers'], and this function cannot be performed by these tools: ['Circular-Saw', 'Clamps', 'Sticky-Notes', 'Strain-Gauge', 'Descenders', 'Microcontroller']. What function it may be? Can Pilings be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Stapler', 'Paper-Clip', 'Pen', 'Highlighter', 'Glue-Stick'], and this function cannot be performed by these tools: ['USB-Mouse', 'Jigsaw', 'Screwdriver-Bit', 'Calculator', 'Memory-Card', 'Tightrope']. What function it may be? Can Scissors be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'USB-Flash-Drive', 'Keyboard', 'Monitor', 'Smartphone', 'External-Hard-Drive'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Wheel', 'Copper-Wire', 'Fishing-Rod', 'Docks', 'Crate']. What function it may be? Can Router be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Saw', 'Pliers', 'Drill', 'Tape-Measure', 'Hammer'], and this function cannot be performed by these tools: ['Door', 'Rug', 'Boolean', 'Wharfs', 'Buoys', 'Scissors']. What function it may be? Can Crowbar be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Floating-Logs', 'Boats', 'Pilings', 'Docks', 'Buoys'], and this function cannot be performed by these tools: ['Descenders', 'Socket', 'Circular-Saw', 'Clamps', 'Sticky-Notes', 'Microcontroller']. What function it may be? Can Wharfs be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Printer', 'Speakers', 'Keyboard', 'USB-Drive', 'Monitor'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Chalkboard', 'LED-Lights', 'Vegetables', 'Paint-Tray', 'Robot-Dog']. What function it may be? Can Headphones be used to perform this function? Can Mixer be used to perform this function?
There is a function that can be performed by these tools: ['Plaster', 'Balsa-Wood', 'Clay', 'Wooden-Block', 'Cardboard', 'Styrofoam'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Robot-Arm', 'Tile-Saw', 'Smartphone', 'Anchors', 'Padlock']. What function it may be? Can Stone be used to perform this function? Can Hacksaw be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Plaster', 'Stone', 'Clay', 'Cardboard', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Robot-Arm', 'Anchors', 'Scrub-Brush', 'Hacksaw', 'Padlock', 'Smartphone']. What function it may be? Can Styrofoam be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Smart-Speaker', 'Laptop', 'Printer', 'Smart-TV', 'Smartphone', 'Tablet'], and this function cannot be performed by these tools: ['Sound-Card', 'Sharpener', 'Refrigerator', 'Staple-Punch', 'Needle', 'Rugby-Ball']. What function it may be? Can Smartwatch be used to perform this function? Can Polish-Flag be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Joystick', 'Light-Switch', 'Game-Controller', 'Tablet', 'Mouse'], and this function cannot be performed by these tools: ['CSV-Files', 'Robot-Car', 'Crimp-Tool', 'Rag', 'Pitchfork', 'Paintbrush-Holder']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'File', 'Screwdriver', 'Hacksaw', 'Drill-Bit', 'Pencil'], and this function cannot be performed by these tools: ['Clay', 'Desktop-Computer', 'Table-Saw', 'Luggage-Lock', 'Padlock', 'Cheese']. What function it may be? Can Hammer be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Headphones', 'USB-Drive', 'Webcam', 'Mouse', 'Keyboard'], and this function cannot be performed by these tools: ['Helmets', 'Measuring-Tape', 'Tug-of-War-Rope', 'Dremel-Tool', 'Ohmmeter', 'Compass']. What function it may be? Can Microphone be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Desk', 'Couch', 'Bookshelf', 'Chair', 'Stool'], and this function cannot be performed by these tools: ['Doorknob', 'Yarn', 'Magnetic-Tape', 'Mailbox-Lock', 'Cane', 'Robot-Arm']. What function it may be? Can Bed be used to perform this function? Can Cardboard be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Laptop', 'Smartphone', 'Desktop-Computer', 'Microcontroller', 'Robot'], and this function cannot be performed by these tools: ['Dice-Shaker', 'Garage-Door-Lock', 'Yarn', 'Vice', 'Golf-Ball', 'Ceiling']. What function it may be? Can Tablet be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Microphone', 'Monitor', 'Mouse', 'Audio-Interface', 'Recording-Software'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Pulley', 'Graph-Paper', 'Ribbon', 'Storage-Device', 'Scissor-Lift']. What function it may be? Can Cables be used to perform this function? Can Netting be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'USB-Flash-Drive', 'External-Hard-Drive', 'Keyboard', 'Monitor', 'Smartphone'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Docks', 'Wheel', 'Crate', 'Copper-Wire', 'Fishing-Rod']. What function it may be? Can Router be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Hacksaw', 'Pencil', 'Screwdriver', 'Chisel', 'Drill-Bit'], and this function cannot be performed by these tools: ['Padlock', 'Cheese', 'LED-Lights', 'Luggage-Lock', 'Clay', 'Desktop-Computer']. What function it may be? Can Hammer be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Raspberry-Pi', 'Drone', 'Microcontroller', 'Robot', 'Sensor'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Magnetic-Tape', 'Plate', 'Joystick', 'Laptop', 'Stopwatch']. What function it may be? Can Computer be used to perform this function? Can Excel-Spreadsheet be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Smart-TV', 'Laptop', 'Smart-Speaker', 'Tablet', 'Printer'], and this function cannot be performed by these tools: ['Needle', 'Staple-Punch', 'Sharpener', 'Sound-Card', 'Rugby-Ball', 'Polish-Flag']. What function it may be? Can Smartwatch be used to perform this function? Can Refrigerator be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Microphone', 'Webcam', 'Speakers', 'Scanner', 'Mouse'], and this function cannot be performed by these tools: ['CSV-File', 'Tow-Truck', 'Paint-Palette', 'Pressure-Gauge', 'Smartwatch', 'Door']. What function it may be? Can Gamepad be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Touchscreen-Monitor', 'Gesture-Sensor', 'Game-Controller', 'Light-Switch', 'Mouse', 'Tablet'], and this function cannot be performed by these tools: ['Pitchfork', 'CSV-Files', 'Robot-Car', 'Paintbrush-Holder', 'Crimp-Tool', 'Jump-Rope']. What function it may be? Can Joystick be used to perform this function? Can Rag be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'Glue-Stick', 'Scissors', 'Pen', 'Paper-Clip', 'White-Out'], and this function cannot be performed by these tools: ['Memory-Card', 'Bench', 'Jigsaw', 'USB-Mouse', 'Calculator', 'Tightrope']. What function it may be? Can Stapler be used to perform this function? Can Screwdriver-Bit be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Nails', 'Clamps', 'Rivets', 'Adhesives', 'Anchors'], and this function cannot be performed by these tools: ['SD-Card', 'Dictionary', 'Lace', 'Awl', 'Table-Saw', 'Clock']. What function it may be? Can Screws be used to perform this function? Can Gamepad be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smart-Speaker', 'Smart-TV', 'Tablet', 'Smartwatch', 'Smartphone'], and this function cannot be performed by these tools: ['Polish-Flag', 'Needle', 'Rugby-Ball', 'Sound-Card', 'Refrigerator', 'Staple-Punch']. What function it may be? Can Printer be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Glue-Stick', 'Highlighter', 'Scissors', 'Paper-Clip', 'Pen'], and this function cannot be performed by these tools: ['Jigsaw', 'Bench', 'Memory-Card', 'Tightrope', 'Calculator', 'Screwdriver-Bit']. What function it may be? Can Stapler be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Cabinet', 'Chair', 'Dresser', 'Stool', 'Bookshelf'], and this function cannot be performed by these tools: ['Filter', 'Anchors', 'Dodecahedron', 'Ribbon', 'Glass', 'Memory-Card']. What function it may be? Can Bed be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Robot', 'Laptop', 'Tablet', 'Microcontroller', 'Drone'], and this function cannot be performed by these tools: ['Golf-Ball', 'Ceiling', 'Garage-Door-Lock', 'Yarn', 'Vice', 'Dice-Shaker']. What function it may be? Can Desktop-Computer be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Floating-Logs', 'Buoys', 'Boats', 'Docks', 'Piers'], and this function cannot be performed by these tools: ['Descenders', 'Strain-Gauge', 'Clamps', 'Sticky-Notes', 'Socket', 'Circular-Saw']. What function it may be? Can Wharfs be used to perform this function? Can Microcontroller be used to perform this function?
There is a function that can be performed by these tools: ['List', 'Float', 'Class', 'File', 'String', 'Tuple'], and this function cannot be performed by these tools: ['Desk', 'Rocking-Horse', 'Fabric', 'Flash-Drive', 'Flagpole', 'Recording-Software']. What function it may be? Can Boolean be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Wheelbarrow', 'Cargo-Container', 'Pallet-Jack', 'Dolly', 'Forklift', 'Crane'], and this function cannot be performed by these tools: ['Clip', 'Crowbar', 'Tow-Truck', 'Anvil', 'Handle', 'Crimp-Caps']. What function it may be? Can Hand-Truck be used to perform this function? Can HTML-Tables be used to perform this function?
There is a function that can be performed by these tools: ['Hacksaw', 'Pencil', 'Drill-Bit', 'Hammer', 'File', 'Screwdriver'], and this function cannot be performed by these tools: ['Table-Saw', 'Padlock', 'Cheese', 'Luggage-Lock', 'LED-Lights', 'Desktop-Computer']. What function it may be? Can Chisel be used to perform this function? Can Clay be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Laptop', 'Tablet', 'Robot', 'Drone', 'Smartphone'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Dice-Shaker', 'Yarn', 'Robot-Vacuum', 'Ceiling', 'Golf-Ball']. What function it may be? Can Microcontroller be used to perform this function? Can Vice be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Pedal', 'Slider', 'Switch', 'Dial', 'Handle'], and this function cannot be performed by these tools: ['Mouse', 'Bobbins', 'Spirit-Level', 'Napkin', 'Digital-Level', 'Clamp']. What function it may be? Can Button be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Towel', 'Cable', 'Handle', 'Bungee-Cord', 'Hook'], and this function cannot be performed by these tools: ['Clamp', 'Beam', 'Paint-Brush-Cleaner', 'Storage-Device', 'Soldering-Iron', 'Rugby-Ball']. What function it may be? Can Chain be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Monitor', 'Joystick', 'Speakers', 'Printer', 'USB-Drive'], and this function cannot be performed by these tools: ['Paint-Tray', 'Polish-Music-Instruments', 'Mixer', 'Robot-Dog', 'LED-Lights', 'Chalkboard']. What function it may be? Can Headphones be used to perform this function? Can Vegetables be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'USB-Drive', 'Joystick', 'Keyboard', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Vegetables', 'Polish-Music-Instruments', 'Paint-Tray', 'Chalkboard', 'Robot-Dog', 'LED-Lights']. What function it may be? Can Headphones be used to perform this function? Can Mixer be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Pliers', 'Drill', 'Tape-Measure', 'Saw', 'Crowbar'], and this function cannot be performed by these tools: ['Door', 'Wharfs', 'Rug', 'Buoys', 'Scissors', 'Boolean']. What function it may be? Can Hammer be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Keyboard', 'USB-Drive', 'Joystick', 'Monitor', 'Headphones'], and this function cannot be performed by these tools: ['Mixer', 'Chalkboard', 'Vegetables', 'LED-Lights', 'Polish-Music-Instruments', 'Robot-Dog']. What function it may be? Can Printer be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Wooden-Block', 'Balsa-Wood', 'Stone', 'Clay', 'Plaster'], and this function cannot be performed by these tools: ['Anchors', 'Smartphone', 'Scrub-Brush', 'Hacksaw', 'Padlock', 'Robot-Arm']. What function it may be? Can Styrofoam be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Smartwatch', 'Printer', 'Tablet', 'Smart-TV'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Polish-Flag', 'Refrigerator', 'Sharpener', 'Needle', 'Staple-Punch']. What function it may be? Can Smart-Speaker be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Headphones', 'Monitor', 'Webcam', 'Keyboard', 'Mouse'], and this function cannot be performed by these tools: ['Helmets', 'Dremel-Tool', 'Measuring-Tape', 'Staple-Punch', 'Compass', 'Tug-of-War-Rope']. What function it may be? Can USB-Drive be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Paper-Clip', 'Stapler', 'Pen', 'Highlighter', 'White-Out'], and this function cannot be performed by these tools: ['Jigsaw', 'USB-Mouse', 'Calculator', 'Screwdriver-Bit', 'Bench', 'Memory-Card']. What function it may be? Can Glue-Stick be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Light-Switch', 'Tablet', 'Gesture-Sensor', 'Game-Controller', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'CSV-Files', 'Jump-Rope', 'Rag', 'Robot-Car', 'Crimp-Tool']. What function it may be? Can Joystick be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Pedal', 'Button', 'Slider', 'Joystick', 'Dial', 'Handle'], and this function cannot be performed by these tools: ['Clamp', 'Spirit-Level', 'Mouse', 'Digital-Level', 'Bobbins', 'Napkin']. What function it may be? Can Switch be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Tightrope', 'Ruler', 'Stool', 'See-Saw', 'Rocking-Horse', 'Scale'], and this function cannot be performed by these tools: ['Hole-Punch', 'Web-Pages', 'Processor', 'Class', 'Printer', 'Polish-Jewelry']. What function it may be? Can Plank be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'External-Hard-Drive', 'Keyboard', 'USB-Flash-Drive', 'Laptop', 'Monitor'], and this function cannot be performed by these tools: ['Wheel', 'Crate', 'Docks', 'Robot-Vacuum', 'Copper-Wire', 'Fishing-Rod']. What function it may be? Can Router be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Cardboard', 'Styrofoam', 'Stone', 'Plaster', 'Clay'], and this function cannot be performed by these tools: ['Padlock', 'Anchors', 'Tile-Saw', 'Smartphone', 'Scrub-Brush', 'Robot-Arm']. What function it may be? Can Wooden-Block be used to perform this function? Can Hacksaw be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Desktop-Computer', 'Robot', 'Tablet', 'Laptop', 'Drone'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Garage-Door-Lock', 'Vice', 'Yarn', 'Ceiling', 'Dice-Shaker']. What function it may be? Can Microcontroller be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Smartphone', 'External-Hard-Drive', 'USB-Flash-Drive', 'Router', 'Monitor'], and this function cannot be performed by these tools: ['Copper-Wire', 'Robot-Vacuum', 'Crate', 'Seam-Ripper', 'Wheel', 'Docks']. What function it may be? Can Laptop be used to perform this function? Can Fishing-Rod be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Light-Switch', 'Gesture-Sensor', 'Game-Controller', 'Joystick', 'Mouse'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Crimp-Tool', 'Rag', 'CSV-Files', 'Pitchfork', 'Jump-Rope']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Bungee-Cord', 'Rope', 'Hook', 'Towel', 'Cable'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Napkin', 'Beam', 'Clamp', 'Soldering-Iron', 'Storage-Device']. What function it may be? Can Chain be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Game-Controller', 'Tablet', 'Touchscreen-Monitor', 'Mouse', 'Gesture-Sensor', 'Joystick'], and this function cannot be performed by these tools: ['Jump-Rope', 'CSV-Files', 'Robot-Car', 'Pitchfork', 'Rag', 'Crimp-Tool']. What function it may be? Can Light-Switch be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Stool', 'Cabinet', 'Bookshelf', 'Table', 'Dresser'], and this function cannot be performed by these tools: ['Socket-Set', 'Filter', 'Ribbon', 'Glass', 'Dodecahedron', 'Memory-Card']. What function it may be? Can Chair be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Webcam', 'Microphone', 'Monitor', 'Keyboard', 'USB-Drive'], and this function cannot be performed by these tools: ['Ohmmeter', 'Tug-of-War-Rope', 'Staple-Punch', 'Compass', 'Dremel-Tool', 'Measuring-Tape']. What function it may be? Can Mouse be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Audio-Interface', 'Recording-Software', 'Speakers', 'Mouse', 'Monitor'], and this function cannot be performed by these tools: ['Graph-Paper', 'Scissor-Lift', 'Storage-Device', 'Ribbon', 'Pulley', 'Netting']. What function it may be? Can Cables be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Keyboard', 'Webcam', 'Mouse', 'Monitor', 'USB-Drive'], and this function cannot be performed by these tools: ['Staple-Punch', 'Compass', 'Measuring-Tape', 'Helmets', 'Dremel-Tool', 'Tug-of-War-Rope']. What function it may be? Can Headphones be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Door', 'Bookshelf', 'Chair', 'Wall', 'Cabinet'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Cabinet-Handle', 'Thimble', 'Diaphragm', 'Table-Saw']. What function it may be? Can Floor be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'Scissors', 'Pen', 'Stapler', 'Glue-Stick', 'White-Out'], and this function cannot be performed by these tools: ['USB-Mouse', 'Calculator', 'Jigsaw', 'Memory-Card', 'Bench', 'Tightrope']. What function it may be? Can Paper-Clip be used to perform this function? Can Screwdriver-Bit be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Crane', 'Cargo-Container', 'Wheelbarrow', 'Hand-Truck', 'Dolly'], and this function cannot be performed by these tools: ['HTML-Tables', 'Crimp-Caps', 'Tow-Truck', 'Handle', 'Anvil', 'Clip']. What function it may be? Can Pallet-Jack be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Scale', 'Plank', 'Rocking-Horse', 'Stool', 'See-Saw', 'Tightrope'], and this function cannot be performed by these tools: ['Polish-Jewelry', 'Processor', 'Pulley', 'Class', 'Web-Pages', 'Printer']. What function it may be? Can Ruler be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Pencil', 'Screwdriver', 'File', 'Hacksaw', 'Hammer', 'Drill-Bit'], and this function cannot be performed by these tools: ['Clay', 'Cheese', 'LED-Lights', 'Padlock', 'Desktop-Computer', 'Table-Saw']. What function it may be? Can Chisel be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Table', 'Bed', 'Chair', 'Dresser', 'Cabinet'], and this function cannot be performed by these tools: ['Glass', 'Memory-Card', 'Filter', 'Socket-Set', 'Anchors', 'Ribbon']. What function it may be? Can Bookshelf be used to perform this function? Can Dodecahedron be used to perform this function?
There is a function that can be performed by these tools: ['Saw', 'Rope', 'Hammer', 'Tape-Measure', 'Drill', 'Crowbar'], and this function cannot be performed by these tools: ['Rug', 'Wharfs', 'Buoys', 'Boolean', 'Door', 'Scissors']. What function it may be? Can Pliers be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Table', 'Stool', 'Cabinet', 'Bed', 'Bookshelf'], and this function cannot be performed by these tools: ['Anchors', 'Memory-Card', 'Dodecahedron', 'Ribbon', 'Socket-Set', 'Glass']. What function it may be? Can Dresser be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Sensor', 'Robot', 'Computer', 'GPS-Tracker', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Excel-Spreadsheet', 'Stopwatch', 'Joystick', 'Laptop', 'Plate']. What function it may be? Can Microcontroller be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Anchors', 'Screws', 'Adhesives', 'Nails', 'Rivets', 'Clamps'], and this function cannot be performed by these tools: ['Clock', 'Dictionary', 'Table-Saw', 'Awl', 'Gamepad', 'Lace']. What function it may be? Can Staples be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Pen', 'Highlighter', 'Scissors', 'Stapler', 'White-Out'], and this function cannot be performed by these tools: ['Memory-Card', 'Screwdriver-Bit', 'Calculator', 'Bench', 'USB-Mouse', 'Jigsaw']. What function it may be? Can Glue-Stick be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Smart-TV', 'Printer', 'Tablet', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Staple-Punch', 'Polish-Flag', 'Refrigerator', 'Sound-Card', 'Sharpener', 'Needle']. What function it may be? Can Smartwatch be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Recording-Software', 'Audio-Interface', 'Mouse', 'Microphone', 'Speakers'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Storage-Device', 'Graph-Paper', 'Netting', 'Pulley', 'Ribbon']. What function it may be? Can Cables be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Dolly', 'Cargo-Container', 'Pallet-Jack', 'Forklift', 'Hand-Truck'], and this function cannot be performed by these tools: ['Crowbar', 'Handle', 'HTML-Tables', 'Tow-Truck', 'Clip', 'Anvil']. What function it may be? Can Wheelbarrow be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Adhesives', 'Screws', 'Clamps', 'Nails', 'Anchors', 'Staples'], and this function cannot be performed by these tools: ['Gamepad', 'Dictionary', 'Table-Saw', 'Awl', 'SD-Card', 'Lace']. What function it may be? Can Rivets be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Router', 'USB-Flash-Drive', 'Laptop', 'Monitor', 'Keyboard'], and this function cannot be performed by these tools: ['Crate', 'Seam-Ripper', 'Copper-Wire', 'Fishing-Rod', 'Robot-Vacuum', 'Docks']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Wheel be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Keyboard', 'Joystick', 'Printer', 'Headphones', 'Speakers'], and this function cannot be performed by these tools: ['Mixer', 'Vegetables', 'LED-Lights', 'Robot-Dog', 'Polish-Music-Instruments', 'Chalkboard']. What function it may be? Can USB-Drive be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Chair', 'Wall', 'Cabinet', 'Floor', 'Door'], and this function cannot be performed by these tools: ['Thimble', 'Cabinet-Handle', 'Table-Saw', 'API-Endpoints', 'Raspberry-Pi', 'Diaphragm']. What function it may be? Can Bookshelf be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Rope', 'Chain', 'Towel', 'Bungee-Cord', 'Cable'], and this function cannot be performed by these tools: ['Beam', 'Storage-Device', 'Soldering-Iron', 'Clamp', 'Rugby-Ball', 'Paint-Brush-Cleaner']. What function it may be? Can Hook be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'Tightrope', 'See-Saw', 'Scale', 'Stool', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Class', 'Printer', 'Web-Pages', 'Processor', 'Pulley', 'Hole-Punch']. What function it may be? Can Ruler be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Cabinet', 'Chair', 'Stool', 'Desk', 'Bookshelf'], and this function cannot be performed by these tools: ['Doorknob', 'Magnetic-Tape', 'Mailbox-Lock', 'Cardboard', 'Robot-Arm', 'Cane']. What function it may be? Can Couch be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Plaster', 'Styrofoam', 'Cardboard', 'Stone', 'Wooden-Block'], and this function cannot be performed by these tools: ['Tile-Saw', 'Padlock', 'Scrub-Brush', 'Hacksaw', 'Smartphone', 'Robot-Arm']. What function it may be? Can Clay be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'Tablet', 'Desktop-Computer', 'Smartphone', 'Robot', 'Laptop'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Garage-Door-Lock', 'Dice-Shaker', 'Vice', 'Golf-Ball', 'Yarn']. What function it may be? Can Drone be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Stool', 'Dresser', 'Cabinet', 'Bookshelf', 'Table'], and this function cannot be performed by these tools: ['Dodecahedron', 'Glass', 'Socket-Set', 'Filter', 'Ribbon', 'Memory-Card']. What function it may be? Can Chair be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Tablet', 'Desktop-Computer', 'Microcontroller', 'Laptop', 'Drone'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Vice', 'Dice-Shaker', 'Yarn', 'Golf-Ball', 'Robot-Vacuum']. What function it may be? Can Smartphone be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Table', 'Bookshelf', 'Bed', 'Dresser', 'Stool'], and this function cannot be performed by these tools: ['Anchors', 'Socket-Set', 'Filter', 'Ribbon', 'Glass', 'Memory-Card']. What function it may be? Can Chair be used to perform this function? Can Dodecahedron be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Laptop', 'Router', 'Monitor', 'Keyboard', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Crate', 'Seam-Ripper', 'Docks', 'Robot-Vacuum', 'Copper-Wire', 'Fishing-Rod']. What function it may be? Can Smartphone be used to perform this function? Can Wheel be used to perform this function?
There is a function that can be performed by these tools: ['Cargo-Container', 'Pallet-Jack', 'Forklift', 'Dolly', 'Hand-Truck', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Crowbar', 'Handle', 'HTML-Tables', 'Tow-Truck', 'Clip', 'Anvil']. What function it may be? Can Crane be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Switch', 'Slider', 'Handle', 'Pedal', 'Joystick'], and this function cannot be performed by these tools: ['Bobbins', 'Digital-Level', 'Paper', 'Napkin', 'Spirit-Level', 'Mouse']. What function it may be? Can Button be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Bed', 'Chair', 'Desk', 'Cabinet', 'Stool', 'Bookshelf'], and this function cannot be performed by these tools: ['Robot-Arm', 'Cane', 'Mailbox-Lock', 'Doorknob', 'Magnetic-Tape', 'Cardboard']. What function it may be? Can Couch be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Microphone', 'USB-Drive', 'Headphones', 'Monitor', 'Keyboard'], and this function cannot be performed by these tools: ['Staple-Punch', 'Helmets', 'Measuring-Tape', 'Ohmmeter', 'Dremel-Tool', 'Tug-of-War-Rope']. What function it may be? Can Webcam be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Chair', 'Bookshelf', 'Stool', 'Dresser', 'Cabinet'], and this function cannot be performed by these tools: ['Anchors', 'Filter', 'Socket-Set', 'Ribbon', 'Glass', 'Dodecahedron']. What function it may be? Can Bed be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'Chisel', 'Hammer', 'Hacksaw', 'Drill-Bit', 'Pencil'], and this function cannot be performed by these tools: ['Cheese', 'Luggage-Lock', 'Table-Saw', 'Clay', 'LED-Lights', 'Padlock']. What function it may be? Can File be used to perform this function? Can Desktop-Computer be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Wooden-Block', 'Cardboard', 'Styrofoam', 'Plaster', 'Clay'], and this function cannot be performed by these tools: ['Anchors', 'Robot-Arm', 'Smartphone', 'Padlock', 'Scrub-Brush', 'Tile-Saw']. What function it may be? Can Stone be used to perform this function? Can Hacksaw be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Handle', 'Pedal', 'Button', 'Dial', 'Slider'], and this function cannot be performed by these tools: ['Clamp', 'Napkin', 'Bobbins', 'Spirit-Level', 'Digital-Level', 'Paper']. What function it may be? Can Switch be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Microphone', 'Monitor', 'Mouse', 'Speakers', 'Scanner'], and this function cannot be performed by these tools: ['Tow-Truck', 'Smartwatch', 'Pressure-Gauge', 'Door', 'Leather', 'CSV-File']. What function it may be? Can Gamepad be used to perform this function? Can Paint-Palette be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Pliers', 'Drill', 'Hammer', 'Saw', 'Rope'], and this function cannot be performed by these tools: ['Rug', 'Scissors', 'Flash-Memory-Card', 'Wharfs', 'Buoys', 'Door']. What function it may be? Can Crowbar be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Pencil', 'Hacksaw', 'Hammer', 'Drill-Bit', 'Chisel'], and this function cannot be performed by these tools: ['Luggage-Lock', 'Cheese', 'Padlock', 'Desktop-Computer', 'Table-Saw', 'Clay']. What function it may be? Can Screwdriver be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Mouse', 'Cables', 'Recording-Software', 'Audio-Interface', 'Speakers'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Ribbon', 'Graph-Paper', 'Pulley', 'Seam-Ripper', 'Storage-Device']. What function it may be? Can Monitor be used to perform this function? Can Netting be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'Boolean', 'Tuple', 'Float', 'File', 'String'], and this function cannot be performed by these tools: ['Desk', 'Rocking-Horse', 'Flagpole', 'Fabric', 'Recording-Software', 'Optical-Disc']. What function it may be? Can List be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Webcam', 'Headphones', 'Microphone', 'Mouse', 'Keyboard'], and this function cannot be performed by these tools: ['Staple-Punch', 'Compass', 'Ohmmeter', 'Helmets', 'Dremel-Tool', 'Measuring-Tape']. What function it may be? Can Monitor be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Monitor', 'Audio-Interface', 'Recording-Software', 'Microphone', 'Mouse'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Storage-Device', 'Graph-Paper', 'Netting', 'Pulley', 'Ribbon']. What function it may be? Can Speakers be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Cabinet', 'Couch', 'Bookshelf', 'Bed', 'Desk'], and this function cannot be performed by these tools: ['Mailbox-Lock', 'Magnetic-Tape', 'Cane', 'Cardboard', 'Robot-Arm', 'Yarn']. What function it may be? Can Stool be used to perform this function? Can Doorknob be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'GPS-Tracker', 'Drone', 'Robot', 'Computer', 'Sensor'], and this function cannot be performed by these tools: ['Joystick', 'Plate', 'Excel-Spreadsheet', 'Robot-Vacuum', 'Stopwatch', 'Laptop']. What function it may be? Can Microcontroller be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Microcontroller', 'Drone', 'Smartphone', 'Laptop', 'Robot'], and this function cannot be performed by these tools: ['Vice', 'Ceiling', 'Dice-Shaker', 'Garage-Door-Lock', 'Robot-Vacuum', 'Yarn']. What function it may be? Can Tablet be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Joystick', 'Slider', 'Switch', 'Dial', 'Button'], and this function cannot be performed by these tools: ['Paper', 'Digital-Level', 'Mouse', 'Bobbins', 'Napkin', 'Spirit-Level']. What function it may be? Can Pedal be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Light-Switch', 'Mouse', 'Touchscreen-Monitor', 'Gesture-Sensor', 'Game-Controller'], and this function cannot be performed by these tools: ['Crimp-Tool', 'Rag', 'Robot-Car', 'Paintbrush-Holder', 'Jump-Rope', 'Pitchfork']. What function it may be? Can Tablet be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Bed', 'Stool', 'Dresser', 'Bookshelf', 'Table'], and this function cannot be performed by these tools: ['Ribbon', 'Dodecahedron', 'Memory-Card', 'Anchors', 'Glass', 'Filter']. What function it may be? Can Chair be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'Tightrope', 'Ruler', 'Scale', 'See-Saw', 'Stool'], and this function cannot be performed by these tools: ['Class', 'Web-Pages', 'Hole-Punch', 'Pulley', 'Printer', 'Polish-Jewelry']. What function it may be? Can Rocking-Horse be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Balsa-Wood', 'Styrofoam', 'Clay', 'Plaster', 'Wooden-Block'], and this function cannot be performed by these tools: ['Smartphone', 'Anchors', 'Hacksaw', 'Padlock', 'Scrub-Brush', 'Tile-Saw']. What function it may be? Can Cardboard be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Chair', 'Desk', 'Floor', 'Cabinet', 'Wall'], and this function cannot be performed by these tools: ['Table-Saw', 'Cabinet-Handle', 'API-Endpoints', 'Raspberry-Pi', 'Diaphragm', 'Drill-Press']. What function it may be? Can Bookshelf be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['Switch', 'Button', 'Handle', 'Dial', 'Joystick', 'Pedal'], and this function cannot be performed by these tools: ['Paper', 'Napkin', 'Spirit-Level', 'Clamp', 'Bobbins', 'Mouse']. What function it may be? Can Slider be used to perform this function? Can Digital-Level be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Microphone', 'Gamepad', 'Monitor', 'Scanner', 'Speakers'], and this function cannot be performed by these tools: ['Tow-Truck', 'Door', 'Leather', 'Pressure-Gauge', 'Paint-Palette', 'Smartwatch']. What function it may be? Can Mouse be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['Hand-Truck', 'Crane', 'Pallet-Jack', 'Dolly', 'Wheelbarrow', 'Forklift'], and this function cannot be performed by these tools: ['HTML-Tables', 'Handle', 'Clip', 'Anvil', 'Tow-Truck', 'Crimp-Caps']. What function it may be? Can Cargo-Container be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Webcam', 'Keyboard', 'Monitor', 'Mouse', 'Headphones'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Tug-of-War-Rope', 'Helmets', 'Compass', 'Staple-Punch', 'Ohmmeter']. What function it may be? Can Microphone be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Recording-Software', 'Mouse', 'Microphone', 'Cables', 'Speakers'], and this function cannot be performed by these tools: ['Pulley', 'Storage-Device', 'Netting', 'Ribbon', 'Seam-Ripper', 'Scissor-Lift']. What function it may be? Can Audio-Interface be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Scale', 'Tightrope', 'Plank', 'See-Saw', 'Stool'], and this function cannot be performed by these tools: ['Printer', 'Processor', 'Web-Pages', 'Pulley', 'Hole-Punch', 'Class']. What function it may be? Can Ruler be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Stool', 'Scale', 'Tightrope', 'Rocking-Horse', 'See-Saw'], and this function cannot be performed by these tools: ['Class', 'Web-Pages', 'Hole-Punch', 'Processor', 'Printer', 'Polish-Jewelry']. What function it may be? Can Plank be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Slider', 'Dial', 'Button', 'Joystick', 'Pedal'], and this function cannot be performed by these tools: ['Bobbins', 'Digital-Level', 'Clamp', 'Napkin', 'Paper', 'Spirit-Level']. What function it may be? Can Switch be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Chair', 'Bookshelf', 'Door', 'Cabinet', 'Desk'], and this function cannot be performed by these tools: ['Table-Saw', 'Drill-Press', 'Thimble', 'Cabinet-Handle', 'Diaphragm', 'Raspberry-Pi']. What function it may be? Can Floor be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Drone', 'Microcontroller', 'Robot', 'Sensor', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Laptop', 'Plate', 'Stopwatch', 'Excel-Spreadsheet', 'Robot-Vacuum']. What function it may be? Can Computer be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smartphone', 'Drone', 'Desktop-Computer', 'Robot', 'Tablet'], and this function cannot be performed by these tools: ['Vice', 'Golf-Ball', 'Robot-Vacuum', 'Ceiling', 'Garage-Door-Lock', 'Dice-Shaker']. What function it may be? Can Microcontroller be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Bungee-Cord', 'Hook', 'Handle', 'Towel', 'Chain', 'Cable'], and this function cannot be performed by these tools: ['Storage-Device', 'Soldering-Iron', 'Beam', 'Rugby-Ball', 'Clamp', 'Paint-Brush-Cleaner']. What function it may be? Can Rope be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Gamepad', 'Webcam', 'Monitor', 'Microphone', 'Scanner'], and this function cannot be performed by these tools: ['Tow-Truck', 'Door', 'Pressure-Gauge', 'Leather', 'CSV-File', 'Smartwatch']. What function it may be? Can Speakers be used to perform this function? Can Paint-Palette be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'Webcam', 'Microphone', 'Monitor', 'USB-Drive'], and this function cannot be performed by these tools: ['Staple-Punch', 'Measuring-Tape', 'Compass', 'Tug-of-War-Rope', 'Ohmmeter', 'Dremel-Tool']. What function it may be? Can Mouse be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Ruler', 'See-Saw', 'Plank', 'Tightrope', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Pulley', 'Printer', 'Web-Pages', 'Polish-Jewelry', 'Class', 'Hole-Punch']. What function it may be? Can Scale be used to perform this function? Can Processor be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Wooden-Block', 'Cardboard', 'Balsa-Wood', 'Plaster', 'Clay'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Anchors', 'Hacksaw', 'Robot-Arm', 'Tile-Saw', 'Smartphone']. What function it may be? Can Styrofoam be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Floating-Logs', 'Pilings', 'Wharfs', 'Boats', 'Buoys'], and this function cannot be performed by these tools: ['Clamps', 'Descenders', 'Circular-Saw', 'Sticky-Notes', 'Microcontroller', 'Socket']. What function it may be? Can Docks be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Joystick', 'Mouse', 'Tablet', 'Game-Controller', 'Gesture-Sensor'], and this function cannot be performed by these tools: ['Jump-Rope', 'CSV-Files', 'Crimp-Tool', 'Paintbrush-Holder', 'Rag', 'Pitchfork']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Towel', 'Rope', 'Hook', 'Bungee-Cord', 'Chain', 'Cable'], and this function cannot be performed by these tools: ['Storage-Device', 'Napkin', 'Paint-Brush-Cleaner', 'Clamp', 'Beam', 'Soldering-Iron']. What function it may be? Can Handle be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Keyboard', 'USB-Drive', 'Monitor', 'Headphones', 'Microphone'], and this function cannot be performed by these tools: ['Helmets', 'Staple-Punch', 'Compass', 'Ohmmeter', 'Dremel-Tool', 'Measuring-Tape']. What function it may be? Can Webcam be used to perform this function? Can Tug-of-War-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Floating-Logs', 'Wharfs', 'Pilings', 'Boats', 'Piers'], and this function cannot be performed by these tools: ['Microcontroller', 'Descenders', 'Strain-Gauge', 'Socket', 'Clamps', 'Sticky-Notes']. What function it may be? Can Docks be used to perform this function? Can Circular-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Webcam', 'Speakers', 'Mouse', 'Gamepad', 'Microphone'], and this function cannot be performed by these tools: ['Tow-Truck', 'Leather', 'Pressure-Gauge', 'Smartwatch', 'Paint-Palette', 'CSV-File']. What function it may be? Can Scanner be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Table', 'Bed', 'Chair', 'Stool', 'Dresser'], and this function cannot be performed by these tools: ['Anchors', 'Socket-Set', 'Dodecahedron', 'Ribbon', 'Filter', 'Memory-Card']. What function it may be? Can Cabinet be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Robot', 'Drone', 'Sensor', 'GPS-Tracker', 'Microcontroller'], and this function cannot be performed by these tools: ['Stopwatch', 'Laptop', 'Joystick', 'Plate', 'Excel-Spreadsheet', 'Robot-Vacuum']. What function it may be? Can Raspberry-Pi be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Chair', 'Wall', 'Bookshelf', 'Floor', 'Cabinet'], and this function cannot be performed by these tools: ['Drill-Press', 'Raspberry-Pi', 'API-Endpoints', 'Thimble', 'Cabinet-Handle', 'Table-Saw']. What function it may be? Can Door be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Dresser', 'Cabinet', 'Table', 'Bookshelf', 'Chair'], and this function cannot be performed by these tools: ['Socket-Set', 'Anchors', 'Glass', 'Dodecahedron', 'Ribbon', 'Filter']. What function it may be? Can Bed be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Mouse', 'Light-Switch', 'Gesture-Sensor', 'Game-Controller', 'Joystick'], and this function cannot be performed by these tools: ['Robot-Car', 'Jump-Rope', 'Pitchfork', 'CSV-Files', 'Crimp-Tool', 'Paintbrush-Holder']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Rag be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Mouse', 'Webcam', 'Microphone', 'USB-Drive', 'Monitor'], and this function cannot be performed by these tools: ['Tug-of-War-Rope', 'Staple-Punch', 'Measuring-Tape', 'Dremel-Tool', 'Ohmmeter', 'Compass']. What function it may be? Can Headphones be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Hand-Truck', 'Dolly', 'Cargo-Container', 'Pallet-Jack', 'Crane', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Crowbar', 'Handle', 'Crimp-Caps', 'HTML-Tables', 'Anvil', 'Tow-Truck']. What function it may be? Can Forklift be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Desktop-Computer', 'Laptop', 'Robot', 'Drone', 'Tablet'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Robot-Vacuum', 'Vice', 'Golf-Ball', 'Ceiling', 'Yarn']. What function it may be? Can Microcontroller be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Bookshelf', 'Chair', 'Cabinet', 'Dresser', 'Bed'], and this function cannot be performed by these tools: ['Socket-Set', 'Glass', 'Anchors', 'Dodecahedron', 'Memory-Card', 'Ribbon']. What function it may be? Can Stool be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Class', 'List', 'Boolean', 'Tuple', 'String'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Fabric', 'Recording-Software', 'Flash-Drive', 'Desk', 'Optical-Disc']. What function it may be? Can Float be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Drone', 'Tablet', 'Laptop', 'Microcontroller', 'Smartphone'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Ceiling', 'Golf-Ball', 'Yarn', 'Vice', 'Garage-Door-Lock']. What function it may be? Can Desktop-Computer be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Cardboard', 'Stone', 'Plaster', 'Clay', 'Wooden-Block', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Smartphone', 'Scrub-Brush', 'Anchors', 'Robot-Arm', 'Tile-Saw', 'Hacksaw']. What function it may be? Can Styrofoam be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Recording-Software', 'Speakers', 'Cables', 'Monitor', 'Microphone'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Pulley', 'Graph-Paper', 'Storage-Device', 'Netting', 'Ribbon']. What function it may be? Can Audio-Interface be used to perform this function? Can Scissor-Lift be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Robot', 'Sensor', 'Raspberry-Pi', 'GPS-Tracker', 'Microcontroller'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Excel-Spreadsheet', 'Joystick', 'Magnetic-Tape', 'Stopwatch', 'Plate']. What function it may be? Can Computer be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Table', 'Dresser', 'Cabinet', 'Bookshelf', 'Bed', 'Chair'], and this function cannot be performed by these tools: ['Anchors', 'Memory-Card', 'Dodecahedron', 'Ribbon', 'Filter', 'Socket-Set']. What function it may be? Can Stool be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Drill-Bit', 'Pencil', 'Chisel', 'Hacksaw', 'Screwdriver'], and this function cannot be performed by these tools: ['Cheese', 'Desktop-Computer', 'LED-Lights', 'Table-Saw', 'Clay', 'Luggage-Lock']. What function it may be? Can File be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Floor', 'Desk', 'Chair', 'Wall', 'Bookshelf'], and this function cannot be performed by these tools: ['Drill-Press', 'API-Endpoints', 'Table-Saw', 'Cabinet-Handle', 'Raspberry-Pi', 'Thimble']. What function it may be? Can Cabinet be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Floor', 'Wall', 'Chair', 'Door', 'Cabinet'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Table-Saw', 'Diaphragm', 'Thimble', 'Drill-Press']. What function it may be? Can Desk be used to perform this function? Can Cabinet-Handle be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Boats', 'Wharfs', 'Piers', 'Pilings', 'Docks'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Circular-Saw', 'Microcontroller', 'Socket', 'Descenders', 'Clamps']. What function it may be? Can Floating-Logs be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Boats', 'Wharfs', 'Buoys', 'Piers', 'Pilings'], and this function cannot be performed by these tools: ['Microcontroller', 'Clamps', 'Sticky-Notes', 'Socket', 'Circular-Saw', 'Strain-Gauge']. What function it may be? Can Floating-Logs be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Microcontroller', 'Laptop', 'Desktop-Computer', 'Robot', 'Smartphone'], and this function cannot be performed by these tools: ['Golf-Ball', 'Robot-Vacuum', 'Garage-Door-Lock', 'Dice-Shaker', 'Vice', 'Yarn']. What function it may be? Can Tablet be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Microcontroller', 'Robot', 'GPS-Tracker', 'Sensor', 'Drone'], and this function cannot be performed by these tools: ['Laptop', 'Magnetic-Tape', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Plate', 'Stopwatch']. What function it may be? Can Raspberry-Pi be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Wall', 'Desk', 'Bookshelf', 'Floor', 'Chair'], and this function cannot be performed by these tools: ['API-Endpoints', 'Table-Saw', 'Cabinet-Handle', 'Thimble', 'Drill-Press', 'Diaphragm']. What function it may be? Can Door be used to perform this function? Can Raspberry-Pi be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Tablet', 'Mouse', 'Touchscreen-Monitor', 'Joystick', 'Game-Controller'], and this function cannot be performed by these tools: ['Pitchfork', 'CSV-Files', 'Rag', 'Crimp-Tool', 'Paintbrush-Holder', 'Jump-Rope']. What function it may be? Can Light-Switch be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Hammer', 'Saw', 'Drill', 'Pliers', 'Crowbar'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Wharfs', 'Scissors', 'Door', 'Boolean', 'Buoys']. What function it may be? Can Rope be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'Paper-Clip', 'Scissors', 'Glue-Stick', 'Pen', 'White-Out'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Bench', 'Calculator', 'Jigsaw', 'Tightrope', 'USB-Mouse']. What function it may be? Can Stapler be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Cargo-Container', 'Pallet-Jack', 'Wheelbarrow', 'Forklift', 'Dolly', 'Hand-Truck'], and this function cannot be performed by these tools: ['Tow-Truck', 'Crowbar', 'HTML-Tables', 'Crimp-Caps', 'Clip', 'Anvil']. What function it may be? Can Crane be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Forklift', 'Crane', 'Hand-Truck', 'Dolly', 'Cargo-Container'], and this function cannot be performed by these tools: ['Handle', 'Tow-Truck', 'Crimp-Caps', 'Clip', 'HTML-Tables', 'Anvil']. What function it may be? Can Wheelbarrow be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Plaster', 'Balsa-Wood', 'Cardboard', 'Clay', 'Styrofoam'], and this function cannot be performed by these tools: ['Tile-Saw', 'Hacksaw', 'Anchors', 'Padlock', 'Scrub-Brush', 'Smartphone']. What function it may be? Can Wooden-Block be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Anchors', 'Nails', 'Staples', 'Rivets', 'Screws', 'Clamps'], and this function cannot be performed by these tools: ['Gamepad', 'Clock', 'Lace', 'Dictionary', 'SD-Card', 'Awl']. What function it may be? Can Adhesives be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'See-Saw', 'Scale', 'Plank', 'Tightrope', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Hole-Punch', 'Processor', 'Class', 'Polish-Jewelry', 'Printer', 'Pulley']. What function it may be? Can Stool be used to perform this function? Can Web-Pages be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Wall', 'Floor', 'Desk', 'Door', 'Bookshelf'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Drill-Press', 'Thimble', 'Raspberry-Pi', 'API-Endpoints', 'Table-Saw']. What function it may be? Can Cabinet be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Plank', 'See-Saw', 'Rocking-Horse', 'Ruler', 'Tightrope'], and this function cannot be performed by these tools: ['Printer', 'Web-Pages', 'Class', 'Hole-Punch', 'Pulley', 'Processor']. What function it may be? Can Scale be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Highlighter', 'White-Out', 'Scissors', 'Paper-Clip', 'Pen'], and this function cannot be performed by these tools: ['Tightrope', 'Screwdriver-Bit', 'Calculator', 'Bench', 'Memory-Card', 'Jigsaw']. What function it may be? Can Glue-Stick be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Piers', 'Floating-Logs', 'Pilings', 'Docks', 'Wharfs'], and this function cannot be performed by these tools: ['Socket', 'Circular-Saw', 'Clamps', 'Microcontroller', 'Strain-Gauge', 'Sticky-Notes']. What function it may be? Can Boats be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Towel', 'Chain', 'Rope', 'Bungee-Cord', 'Cable'], and this function cannot be performed by these tools: ['Clamp', 'Storage-Device', 'Soldering-Iron', 'Rugby-Ball', 'Napkin', 'Paint-Brush-Cleaner']. What function it may be? Can Handle be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Pallet-Jack', 'Dolly', 'Wheelbarrow', 'Forklift', 'Cargo-Container'], and this function cannot be performed by these tools: ['Anvil', 'Crowbar', 'Handle', 'Clip', 'HTML-Tables', 'Tow-Truck']. What function it may be? Can Hand-Truck be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Hand-Truck', 'Dolly', 'Forklift', 'Cargo-Container', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Crowbar', 'Tow-Truck', 'Anvil', 'Clip', 'Handle', 'HTML-Tables']. What function it may be? Can Pallet-Jack be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Glue-Stick', 'Highlighter', 'White-Out', 'Paper-Clip', 'Stapler'], and this function cannot be performed by these tools: ['Jigsaw', 'Memory-Card', 'Bench', 'USB-Mouse', 'Screwdriver-Bit', 'Calculator']. What function it may be? Can Pen be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Mouse', 'Microphone', 'Monitor', 'Webcam', 'USB-Drive'], and this function cannot be performed by these tools: ['Helmets', 'Staple-Punch', 'Compass', 'Tug-of-War-Rope', 'Ohmmeter', 'Dremel-Tool']. What function it may be? Can Headphones be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Audio-Interface', 'Monitor', 'Microphone', 'Speakers', 'Recording-Software'], and this function cannot be performed by these tools: ['Storage-Device', 'Netting', 'Seam-Ripper', 'Graph-Paper', 'Ribbon', 'Pulley']. What function it may be? Can Cables be used to perform this function? Can Scissor-Lift be used to perform this function?
There is a function that can be performed by these tools: ['Router', 'Monitor', 'Smartphone', 'External-Hard-Drive', 'Laptop', 'Keyboard'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Robot-Vacuum', 'Docks', 'Seam-Ripper', 'Wheel', 'Copper-Wire']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Robot', 'Microcontroller', 'Drone', 'Tablet', 'Smartphone'], and this function cannot be performed by these tools: ['Vice', 'Yarn', 'Robot-Vacuum', 'Garage-Door-Lock', 'Golf-Ball', 'Dice-Shaker']. What function it may be? Can Laptop be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Cardboard', 'Stone', 'Styrofoam', 'Clay', 'Plaster'], and this function cannot be performed by these tools: ['Hacksaw', 'Smartphone', 'Tile-Saw', 'Scrub-Brush', 'Anchors', 'Padlock']. What function it may be? Can Balsa-Wood be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Towel', 'Cable', 'Handle', 'Hook', 'Chain'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Rugby-Ball', 'Beam', 'Storage-Device', 'Clamp', 'Napkin']. What function it may be? Can Bungee-Cord be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Sensor', 'GPS-Tracker', 'Computer', 'Drone', 'Robot', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Joystick', 'Magnetic-Tape', 'Excel-Spreadsheet', 'Stopwatch', 'Laptop']. What function it may be? Can Microcontroller be used to perform this function? Can Plate be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Microcontroller', 'Drone', 'Laptop', 'Robot', 'Tablet'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Dice-Shaker', 'Vice', 'Ceiling', 'Robot-Vacuum', 'Yarn']. What function it may be? Can Smartphone be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Saw', 'Rope', 'Crowbar', 'Hammer', 'Pliers', 'Tape-Measure'], and this function cannot be performed by these tools: ['Door', 'Scissors', 'Rug', 'Boolean', 'Buoys', 'Wharfs']. What function it may be? Can Drill be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Screwdriver', 'Drill-Bit', 'Hammer', 'Hacksaw', 'Pencil'], and this function cannot be performed by these tools: ['Clay', 'Table-Saw', 'Luggage-Lock', 'Cheese', 'Padlock', 'Desktop-Computer']. What function it may be? Can File be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'Tuple', 'Boolean', 'List', 'Class', 'File'], and this function cannot be performed by these tools: ['Desk', 'Flagpole', 'Recording-Software', 'Optical-Disc', 'Rocking-Horse', 'Flash-Drive']. What function it may be? Can String be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Floating-Logs', 'Boats', 'Docks', 'Piers', 'Wharfs'], and this function cannot be performed by these tools: ['Microcontroller', 'Circular-Saw', 'Socket', 'Strain-Gauge', 'Clamps', 'Descenders']. What function it may be? Can Pilings be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Nails', 'Staples', 'Anchors', 'Screws', 'Adhesives', 'Rivets'], and this function cannot be performed by these tools: ['Table-Saw', 'Awl', 'Gamepad', 'Dictionary', 'Clock', 'SD-Card']. What function it may be? Can Clamps be used to perform this function? Can Lace be used to perform this function?
There is a function that can be performed by these tools: ['Cable', 'Towel', 'Bungee-Cord', 'Rope', 'Handle', 'Chain'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Paint-Brush-Cleaner', 'Storage-Device', 'Rugby-Ball', 'Clamp', 'Napkin']. What function it may be? Can Hook be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Drone', 'Smartphone', 'Robot', 'Microcontroller', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Vice', 'Robot-Vacuum', 'Golf-Ball', 'Yarn', 'Dice-Shaker', 'Ceiling']. What function it may be? Can Laptop be used to perform this function? Can Garage-Door-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Chain', 'Rope', 'Handle', 'Towel', 'Bungee-Cord'], and this function cannot be performed by these tools: ['Napkin', 'Beam', 'Paint-Brush-Cleaner', 'Rugby-Ball', 'Clamp', 'Soldering-Iron']. What function it may be? Can Cable be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Light-Switch', 'Game-Controller', 'Tablet', 'Joystick', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Jump-Rope', 'Rag', 'Pitchfork', 'CSV-Files', 'Robot-Car', 'Crimp-Tool']. What function it may be? Can Mouse be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Handle', 'Pedal', 'Slider', 'Switch', 'Dial'], and this function cannot be performed by these tools: ['Paper', 'Digital-Level', 'Mouse', 'Napkin', 'Spirit-Level', 'Clamp']. What function it may be? Can Button be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Speakers', 'Microphone', 'Mouse', 'Monitor', 'Scanner'], and this function cannot be performed by these tools: ['Door', 'Pressure-Gauge', 'Paint-Palette', 'Smartwatch', 'Leather', 'CSV-File']. What function it may be? Can Gamepad be used to perform this function? Can Tow-Truck be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Webcam', 'Keyboard', 'Microphone', 'Mouse', 'USB-Drive'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Helmets', 'Staple-Punch', 'Tug-of-War-Rope', 'Dremel-Tool', 'Compass']. What function it may be? Can Monitor be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Dial', 'Pedal', 'Button', 'Handle', 'Switch'], and this function cannot be performed by these tools: ['Clamp', 'Mouse', 'Napkin', 'Bobbins', 'Paper', 'Digital-Level']. What function it may be? Can Joystick be used to perform this function? Can Spirit-Level be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Screwdriver', 'Chisel', 'File', 'Hammer', 'Pencil'], and this function cannot be performed by these tools: ['Table-Saw', 'Luggage-Lock', 'LED-Lights', 'Desktop-Computer', 'Padlock', 'Cheese']. What function it may be? Can Hacksaw be used to perform this function? Can Clay be used to perform this function?
There is a function that can be performed by these tools: ['Clamps', 'Anchors', 'Staples', 'Screws', 'Nails', 'Adhesives'], and this function cannot be performed by these tools: ['Awl', 'Gamepad', 'Lace', 'Dictionary', 'Table-Saw', 'SD-Card']. What function it may be? Can Rivets be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Stool', 'See-Saw', 'Plank', 'Tightrope', 'Scale'], and this function cannot be performed by these tools: ['Web-Pages', 'Class', 'Processor', 'Pulley', 'Polish-Jewelry', 'Printer']. What function it may be? Can Ruler be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Keyboard', 'Laptop', 'Smartphone', 'Router', 'Monitor'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Fishing-Rod', 'Wheel', 'Docks', 'Crate', 'Robot-Vacuum']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Smart-Speaker', 'Smartphone', 'Smartwatch', 'Laptop', 'Tablet'], and this function cannot be performed by these tools: ['Staple-Punch', 'Sound-Card', 'Polish-Flag', 'Sharpener', 'Rugby-Ball', 'Needle']. What function it may be? Can Smart-TV be used to perform this function? Can Refrigerator be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Tablet', 'Printer', 'Smartwatch', 'Smart-Speaker', 'Smartphone'], and this function cannot be performed by these tools: ['Refrigerator', 'Staple-Punch', 'Needle', 'Rugby-Ball', 'Polish-Flag', 'Sound-Card']. What function it may be? Can Laptop be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Audio-Interface', 'Cables', 'Speakers', 'Monitor', 'Recording-Software'], and this function cannot be performed by these tools: ['Ribbon', 'Seam-Ripper', 'Graph-Paper', 'Pulley', 'Scissor-Lift', 'Storage-Device']. What function it may be? Can Mouse be used to perform this function? Can Netting be used to perform this function?
There is a function that can be performed by these tools: ['Touchscreen-Monitor', 'Joystick', 'Game-Controller', 'Gesture-Sensor', 'Tablet', 'Light-Switch'], and this function cannot be performed by these tools: ['Rag', 'Jump-Rope', 'Pitchfork', 'CSV-Files', 'Paintbrush-Holder', 'Crimp-Tool']. What function it may be? Can Mouse be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Recording-Software', 'Audio-Interface', 'Monitor', 'Mouse', 'Microphone'], and this function cannot be performed by these tools: ['Storage-Device', 'Ribbon', 'Graph-Paper', 'Pulley', 'Netting', 'Seam-Ripper']. What function it may be? Can Speakers be used to perform this function? Can Scissor-Lift be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Microphone', 'Monitor', 'Webcam', 'Speakers', 'Mouse'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'Door', 'Leather', 'Smartwatch', 'Tow-Truck', 'CSV-File']. What function it may be? Can Scanner be used to perform this function? Can Paint-Palette be used to perform this function?
There is a function that can be performed by these tools: ['Styrofoam', 'Wooden-Block', 'Cardboard', 'Balsa-Wood', 'Plaster', 'Clay'], and this function cannot be performed by these tools: ['Padlock', 'Scrub-Brush', 'Smartphone', 'Anchors', 'Hacksaw', 'Robot-Arm']. What function it may be? Can Stone be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Raspberry-Pi', 'GPS-Tracker', 'Microcontroller', 'Drone', 'Robot'], and this function cannot be performed by these tools: ['Laptop', 'Excel-Spreadsheet', 'Plate', 'Stopwatch', 'Joystick', 'Magnetic-Tape']. What function it may be? Can Sensor be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Rivets', 'Staples', 'Adhesives', 'Clamps', 'Anchors', 'Screws'], and this function cannot be performed by these tools: ['Lace', 'Dictionary', 'Gamepad', 'Table-Saw', 'Clock', 'Awl']. What function it may be? Can Nails be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Dial', 'Switch', 'Button', 'Slider', 'Handle', 'Pedal'], and this function cannot be performed by these tools: ['Bobbins', 'Spirit-Level', 'Digital-Level', 'Mouse', 'Clamp', 'Paper']. What function it may be? Can Joystick be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Dresser', 'Bed', 'Bookshelf', 'Stool', 'Cabinet'], and this function cannot be performed by these tools: ['Filter', 'Glass', 'Ribbon', 'Dodecahedron', 'Memory-Card', 'Anchors']. What function it may be? Can Table be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Floating-Logs', 'Docks', 'Wharfs', 'Boats', 'Buoys'], and this function cannot be performed by these tools: ['Socket', 'Sticky-Notes', 'Circular-Saw', 'Strain-Gauge', 'Clamps', 'Microcontroller']. What function it may be? Can Piers be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Touchscreen-Monitor', 'Gesture-Sensor', 'Mouse', 'Game-Controller', 'Light-Switch'], and this function cannot be performed by these tools: ['CSV-Files', 'Paintbrush-Holder', 'Crimp-Tool', 'Jump-Rope', 'Rag', 'Pitchfork']. What function it may be? Can Tablet be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Raspberry-Pi', 'Microcontroller', 'Robot', 'Drone', 'Sensor'], and this function cannot be performed by these tools: ['Laptop', 'Joystick', 'Plate', 'Excel-Spreadsheet', 'Robot-Vacuum', 'Magnetic-Tape']. What function it may be? Can GPS-Tracker be used to perform this function? Can Stopwatch be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Drill', 'Hammer', 'Saw', 'Pliers', 'Rope'], and this function cannot be performed by these tools: ['Buoys', 'Boolean', 'Rug', 'Scissors', 'Flash-Memory-Card', 'Wharfs']. What function it may be? Can Crowbar be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Stool', 'Bookshelf', 'Chair', 'Cabinet', 'Desk'], and this function cannot be performed by these tools: ['Cane', 'Cardboard', 'Robot-Arm', 'Mailbox-Lock', 'Magnetic-Tape', 'Doorknob']. What function it may be? Can Bed be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Door', 'Chair', 'Cabinet', 'Wall', 'Floor'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Drill-Press', 'Thimble', 'Cabinet-Handle', 'Table-Saw']. What function it may be? Can Desk be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Hammer', 'Drill', 'Saw', 'Pliers', 'Tape-Measure'], and this function cannot be performed by these tools: ['Buoys', 'Rug', 'Flash-Memory-Card', 'Door', 'Wharfs', 'Boolean']. What function it may be? Can Crowbar be used to perform this function? Can Scissors be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Bed', 'Bookshelf', 'Stool', 'Dresser', 'Table'], and this function cannot be performed by these tools: ['Filter', 'Anchors', 'Memory-Card', 'Ribbon', 'Glass', 'Dodecahedron']. What function it may be? Can Chair be used to perform this function? Can Socket-Set be used to perform this function?
There is a function that can be performed by these tools: ['Hand-Truck', 'Cargo-Container', 'Dolly', 'Crane', 'Pallet-Jack', 'Forklift'], and this function cannot be performed by these tools: ['Crowbar', 'Crimp-Caps', 'HTML-Tables', 'Anvil', 'Tow-Truck', 'Clip']. What function it may be? Can Wheelbarrow be used to perform this function? Can Handle be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Pallet-Jack', 'Crane', 'Wheelbarrow', 'Cargo-Container', 'Dolly'], and this function cannot be performed by these tools: ['Tow-Truck', 'Crimp-Caps', 'HTML-Tables', 'Anvil', 'Crowbar', 'Handle']. What function it may be? Can Hand-Truck be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Docks', 'Boats', 'Pilings', 'Floating-Logs', 'Wharfs'], and this function cannot be performed by these tools: ['Clamps', 'Descenders', 'Strain-Gauge', 'Microcontroller', 'Socket', 'Circular-Saw']. What function it may be? Can Piers be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Stone', 'Clay', 'Plaster', 'Balsa-Wood', 'Wooden-Block', 'Cardboard'], and this function cannot be performed by these tools: ['Smartphone', 'Anchors', 'Tile-Saw', 'Padlock', 'Robot-Arm', 'Scrub-Brush']. What function it may be? Can Styrofoam be used to perform this function? Can Hacksaw be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Smartphone', 'Drone', 'Microcontroller', 'Laptop', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Golf-Ball', 'Robot-Vacuum', 'Garage-Door-Lock', 'Dice-Shaker', 'Ceiling', 'Vice']. What function it may be? Can Tablet be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'White-Out', 'Scissors', 'Pen', 'Glue-Stick', 'Highlighter'], and this function cannot be performed by these tools: ['Bench', 'Tightrope', 'Memory-Card', 'Calculator', 'USB-Mouse', 'Screwdriver-Bit']. What function it may be? Can Paper-Clip be used to perform this function? Can Jigsaw be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Bed', 'Table', 'Dresser', 'Stool', 'Chair'], and this function cannot be performed by these tools: ['Socket-Set', 'Glass', 'Filter', 'Anchors', 'Memory-Card', 'Dodecahedron']. What function it may be? Can Cabinet be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Microphone', 'Keyboard', 'Headphones', 'Monitor', 'USB-Drive', 'Webcam'], and this function cannot be performed by these tools: ['Tug-of-War-Rope', 'Compass', 'Staple-Punch', 'Ohmmeter', 'Measuring-Tape', 'Helmets']. What function it may be? Can Mouse be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Pencil', 'Hacksaw', 'Screwdriver', 'Drill-Bit', 'File'], and this function cannot be performed by these tools: ['Table-Saw', 'Luggage-Lock', 'Padlock', 'Clay', 'Desktop-Computer', 'Cheese']. What function it may be? Can Hammer be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Wall', 'Floor', 'Door', 'Chair', 'Desk'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'Cabinet-Handle', 'API-Endpoints', 'Thimble', 'Drill-Press', 'Diaphragm']. What function it may be? Can Bookshelf be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Cargo-Container', 'Crane', 'Hand-Truck', 'Forklift', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Crimp-Caps', 'Clip', 'Handle', 'Tow-Truck', 'Crowbar', 'HTML-Tables']. What function it may be? Can Wheelbarrow be used to perform this function? Can Anvil be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Bed', 'Dresser', 'Table', 'Stool', 'Chair'], and this function cannot be performed by these tools: ['Anchors', 'Socket-Set', 'Ribbon', 'Glass', 'Dodecahedron', 'Filter']. What function it may be? Can Cabinet be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Door', 'Cabinet', 'Desk', 'Floor', 'Bookshelf'], and this function cannot be performed by these tools: ['Raspberry-Pi', 'API-Endpoints', 'Thimble', 'Cabinet-Handle', 'Diaphragm', 'Table-Saw']. What function it may be? Can Wall be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Smart-Speaker', 'Smartphone', 'Smartwatch', 'Printer', 'Smart-TV'], and this function cannot be performed by these tools: ['Staple-Punch', 'Sharpener', 'Polish-Flag', 'Rugby-Ball', 'Refrigerator', 'Sound-Card']. What function it may be? Can Laptop be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Cable', 'Handle', 'Chain', 'Bungee-Cord', 'Towel'], and this function cannot be performed by these tools: ['Napkin', 'Paint-Brush-Cleaner', 'Clamp', 'Rugby-Ball', 'Soldering-Iron', 'Storage-Device']. What function it may be? Can Rope be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Speakers', 'Cables', 'Microphone', 'Recording-Software', 'Audio-Interface'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Ribbon', 'Graph-Paper', 'Pulley', 'Scissor-Lift', 'Netting']. What function it may be? Can Mouse be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Wharfs', 'Buoys', 'Piers', 'Pilings', 'Docks'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Sticky-Notes', 'Descenders', 'Microcontroller', 'Circular-Saw', 'Clamps']. What function it may be? Can Boats be used to perform this function? Can Socket be used to perform this function?
There is a function that can be performed by these tools: ['Plaster', 'Clay', 'Stone', 'Styrofoam', 'Balsa-Wood', 'Cardboard'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Hacksaw', 'Padlock', 'Anchors', 'Robot-Arm', 'Tile-Saw']. What function it may be? Can Wooden-Block be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['String', 'Boolean', 'List', 'Float', 'File', 'Class'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Flagpole', 'Recording-Software', 'Optical-Disc', 'Desk', 'Fabric']. What function it may be? Can Tuple be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Stool', 'Scale', 'Plank', 'See-Saw', 'Rocking-Horse', 'Ruler'], and this function cannot be performed by these tools: ['Hole-Punch', 'Printer', 'Class', 'Pulley', 'Processor', 'Polish-Jewelry']. What function it may be? Can Tightrope be used to perform this function? Can Web-Pages be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Speakers', 'Joystick', 'Printer', 'Keyboard', 'USB-Drive'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Mixer', 'Chalkboard', 'Vegetables', 'Robot-Dog', 'Paint-Tray']. What function it may be? Can Monitor be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Microphone', 'Keyboard', 'USB-Drive', 'Webcam', 'Headphones'], and this function cannot be performed by these tools: ['Tug-of-War-Rope', 'Helmets', 'Dremel-Tool', 'Ohmmeter', 'Compass', 'Measuring-Tape']. What function it may be? Can Monitor be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Joystick', 'Pedal', 'Handle', 'Dial', 'Switch'], and this function cannot be performed by these tools: ['Paper', 'Napkin', 'Spirit-Level', 'Digital-Level', 'Mouse', 'Bobbins']. What function it may be? Can Button be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Wall', 'Chair', 'Door', 'Cabinet'], and this function cannot be performed by these tools: ['Table-Saw', 'Thimble', 'Diaphragm', 'Raspberry-Pi', 'API-Endpoints', 'Drill-Press']. What function it may be? Can Floor be used to perform this function? Can Cabinet-Handle be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Towel', 'Handle', 'Cable', 'Hook', 'Bungee-Cord'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Storage-Device', 'Rugby-Ball', 'Beam', 'Clamp', 'Soldering-Iron']. What function it may be? Can Chain be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Smartphone', 'Microcontroller', 'Drone', 'Desktop-Computer', 'Laptop'], and this function cannot be performed by these tools: ['Golf-Ball', 'Vice', 'Robot-Vacuum', 'Yarn', 'Dice-Shaker', 'Ceiling']. What function it may be? Can Tablet be used to perform this function? Can Garage-Door-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Towel', 'Chain', 'Cable', 'Bungee-Cord', 'Hook'], and this function cannot be performed by these tools: ['Beam', 'Soldering-Iron', 'Clamp', 'Rugby-Ball', 'Napkin', 'Storage-Device']. What function it may be? Can Rope be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Docks', 'Wharfs', 'Pilings', 'Floating-Logs', 'Buoys', 'Piers'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Circular-Saw', 'Socket', 'Clamps', 'Strain-Gauge', 'Microcontroller']. What function it may be? Can Boats be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'Tuple', 'File', 'String', 'Boolean', 'Float'], and this function cannot be performed by these tools: ['Flagpole', 'Recording-Software', 'Flash-Drive', 'Optical-Disc', 'Rocking-Horse', 'Fabric']. What function it may be? Can List be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Stool', 'Cabinet', 'Chair', 'Bed', 'Table'], and this function cannot be performed by these tools: ['Glass', 'Filter', 'Dodecahedron', 'Socket-Set', 'Anchors', 'Memory-Card']. What function it may be? Can Dresser be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Clamps', 'Nails', 'Screws', 'Staples', 'Rivets', 'Adhesives'], and this function cannot be performed by these tools: ['Dictionary', 'Lace', 'Clock', 'Awl', 'Table-Saw', 'Gamepad']. What function it may be? Can Anchors be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Mouse', 'Recording-Software', 'Microphone', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Storage-Device', 'Scissor-Lift', 'Pulley', 'Netting', 'Graph-Paper']. What function it may be? Can Cables be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Crowbar', 'Tape-Measure', 'Drill', 'Saw', 'Pliers'], and this function cannot be performed by these tools: ['Wharfs', 'Flash-Memory-Card', 'Boolean', 'Door', 'Rug', 'Buoys']. What function it may be? Can Hammer be used to perform this function? Can Scissors be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Hand-Truck', 'Forklift', 'Cargo-Container', 'Crane', 'Pallet-Jack'], and this function cannot be performed by these tools: ['Crowbar', 'Handle', 'Crimp-Caps', 'Anvil', 'Tow-Truck', 'Clip']. What function it may be? Can Wheelbarrow be used to perform this function? Can HTML-Tables be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Rivets', 'Nails', 'Clamps', 'Adhesives', 'Anchors'], and this function cannot be performed by these tools: ['SD-Card', 'Clock', 'Table-Saw', 'Lace', 'Dictionary', 'Gamepad']. What function it may be? Can Screws be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['Drill', 'Crowbar', 'Hammer', 'Pliers', 'Tape-Measure', 'Saw'], and this function cannot be performed by these tools: ['Buoys', 'Boolean', 'Scissors', 'Door', 'Wharfs', 'Flash-Memory-Card']. What function it may be? Can Rope be used to perform this function? Can Rug be used to perform this function?
There is a function that can be performed by these tools: ['Pallet-Jack', 'Forklift', 'Dolly', 'Cargo-Container', 'Crane', 'Wheelbarrow'], and this function cannot be performed by these tools: ['Tow-Truck', 'HTML-Tables', 'Handle', 'Crimp-Caps', 'Crowbar', 'Anvil']. What function it may be? Can Hand-Truck be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Pencil', 'Hacksaw', 'File', 'Screwdriver', 'Drill-Bit'], and this function cannot be performed by these tools: ['Luggage-Lock', 'LED-Lights', 'Padlock', 'Desktop-Computer', 'Cheese', 'Table-Saw']. What function it may be? Can Hammer be used to perform this function? Can Clay be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Screws', 'Rivets', 'Anchors', 'Adhesives', 'Nails'], and this function cannot be performed by these tools: ['Clock', 'Table-Saw', 'SD-Card', 'Lace', 'Gamepad', 'Dictionary']. What function it may be? Can Clamps be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Keyboard', 'Headphones', 'USB-Drive', 'Webcam', 'Mouse'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Tug-of-War-Rope', 'Compass', 'Staple-Punch', 'Helmets', 'Dremel-Tool']. What function it may be? Can Microphone be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Sensor', 'Computer', 'Robot', 'Drone', 'Microcontroller'], and this function cannot be performed by these tools: ['Laptop', 'Excel-Spreadsheet', 'Stopwatch', 'Robot-Vacuum', 'Plate', 'Joystick']. What function it may be? Can GPS-Tracker be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Towel', 'Cable', 'Chain', 'Hook', 'Handle'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Rugby-Ball', 'Beam', 'Clamp', 'Storage-Device', 'Napkin']. What function it may be? Can Bungee-Cord be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Robot', 'Microcontroller', 'Drone', 'Desktop-Computer', 'Laptop'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Golf-Ball', 'Vice', 'Robot-Vacuum', 'Yarn', 'Dice-Shaker']. What function it may be? Can Tablet be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Recording-Software', 'Speakers', 'Microphone', 'Monitor', 'Audio-Interface', 'Cables'], and this function cannot be performed by these tools: ['Netting', 'Seam-Ripper', 'Pulley', 'Scissor-Lift', 'Ribbon', 'Graph-Paper']. What function it may be? Can Mouse be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Gamepad', 'Mouse', 'Microphone', 'Webcam', 'Monitor'], and this function cannot be performed by these tools: ['CSV-File', 'Door', 'Pressure-Gauge', 'Tow-Truck', 'Leather', 'Smartwatch']. What function it may be? Can Scanner be used to perform this function? Can Paint-Palette be used to perform this function?
There is a function that can be performed by these tools: ['Light-Switch', 'Joystick', 'Mouse', 'Gesture-Sensor', 'Tablet', 'Game-Controller'], and this function cannot be performed by these tools: ['Pitchfork', 'Jump-Rope', 'CSV-Files', 'Rag', 'Crimp-Tool', 'Robot-Car']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Nails', 'Anchors', 'Adhesives', 'Clamps', 'Rivets'], and this function cannot be performed by these tools: ['Gamepad', 'Clock', 'Dictionary', 'Table-Saw', 'Lace', 'Awl']. What function it may be? Can Screws be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Wharfs', 'Pilings', 'Buoys', 'Boats', 'Docks'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Socket', 'Sticky-Notes', 'Clamps', 'Circular-Saw', 'Microcontroller']. What function it may be? Can Piers be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'White-Out', 'Pen', 'Paper-Clip', 'Stapler', 'Scissors'], and this function cannot be performed by these tools: ['Calculator', 'Jigsaw', 'Screwdriver-Bit', 'Memory-Card', 'Bench', 'USB-Mouse']. What function it may be? Can Glue-Stick be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Desk', 'Bed', 'Bookshelf', 'Cabinet', 'Chair'], and this function cannot be performed by these tools: ['Mailbox-Lock', 'Yarn', 'Doorknob', 'Magnetic-Tape', 'Cane', 'Cardboard']. What function it may be? Can Stool be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Pliers', 'Hammer', 'Saw', 'Rope', 'Crowbar', 'Tape-Measure'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Scissors', 'Door', 'Rug', 'Buoys', 'Boolean']. What function it may be? Can Drill be used to perform this function? Can Wharfs be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'String', 'Tuple', 'Boolean', 'File', 'List'], and this function cannot be performed by these tools: ['Flagpole', 'Recording-Software', 'Fabric', 'Flash-Drive', 'Desk', 'Optical-Disc']. What function it may be? Can Class be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Tablet', 'Smartphone', 'Smartwatch', 'Smart-Speaker', 'Laptop'], and this function cannot be performed by these tools: ['Staple-Punch', 'Needle', 'Polish-Flag', 'Rugby-Ball', 'Refrigerator', 'Sharpener']. What function it may be? Can Printer be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Laptop', 'Keyboard', 'Router', 'USB-Flash-Drive', 'Smartphone'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Copper-Wire', 'Crate', 'Docks', 'Seam-Ripper', 'Wheel']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Fishing-Rod be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Audio-Interface', 'Microphone', 'Speakers', 'Recording-Software', 'Monitor'], and this function cannot be performed by these tools: ['Storage-Device', 'Seam-Ripper', 'Scissor-Lift', 'Ribbon', 'Netting', 'Graph-Paper']. What function it may be? Can Mouse be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'File', 'Boolean', 'Class', 'List', 'String'], and this function cannot be performed by these tools: ['Flagpole', 'Flash-Drive', 'Rocking-Horse', 'Fabric', 'Recording-Software', 'Optical-Disc']. What function it may be? Can Float be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Desk', 'Cabinet', 'Chair', 'Wall', 'Bookshelf'], and this function cannot be performed by these tools: ['Diaphragm', 'Drill-Press', 'Cabinet-Handle', 'Thimble', 'Table-Saw', 'Raspberry-Pi']. What function it may be? Can Floor be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Highlighter', 'White-Out', 'Glue-Stick', 'Stapler', 'Scissors'], and this function cannot be performed by these tools: ['Tightrope', 'Jigsaw', 'Screwdriver-Bit', 'Calculator', 'Memory-Card', 'USB-Mouse']. What function it may be? Can Pen be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Stool', 'Chair', 'Bookshelf', 'Desk', 'Bed'], and this function cannot be performed by these tools: ['Cane', 'Cardboard', 'Robot-Arm', 'Magnetic-Tape', 'Yarn', 'Doorknob']. What function it may be? Can Cabinet be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Door', 'Bookshelf', 'Wall', 'Desk', 'Cabinet', 'Floor'], and this function cannot be performed by these tools: ['Thimble', 'Diaphragm', 'Table-Saw', 'Cabinet-Handle', 'API-Endpoints', 'Raspberry-Pi']. What function it may be? Can Chair be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['White-Out', 'Paper-Clip', 'Pen', 'Stapler', 'Glue-Stick', 'Scissors'], and this function cannot be performed by these tools: ['Memory-Card', 'Tightrope', 'USB-Mouse', 'Calculator', 'Screwdriver-Bit', 'Jigsaw']. What function it may be? Can Highlighter be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Bungee-Cord', 'Cable', 'Chain', 'Towel', 'Rope', 'Hook'], and this function cannot be performed by these tools: ['Storage-Device', 'Napkin', 'Paint-Brush-Cleaner', 'Rugby-Ball', 'Soldering-Iron', 'Beam']. What function it may be? Can Handle be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Float', 'String', 'Class', 'List', 'File'], and this function cannot be performed by these tools: ['Desk', 'Recording-Software', 'Flash-Drive', 'Fabric', 'Flagpole', 'Rocking-Horse']. What function it may be? Can Tuple be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Printer', 'Smart-Speaker', 'Smartphone', 'Laptop', 'Smart-TV'], and this function cannot be performed by these tools: ['Sharpener', 'Rugby-Ball', 'Refrigerator', 'Staple-Punch', 'Polish-Flag', 'Sound-Card']. What function it may be? Can Smartwatch be used to perform this function? Can Needle be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Microcontroller', 'Laptop', 'Tablet', 'Smartphone', 'Drone'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Yarn', 'Robot-Vacuum', 'Ceiling', 'Dice-Shaker', 'Vice']. What function it may be? Can Desktop-Computer be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Stool', 'Plank', 'Scale', 'See-Saw', 'Tightrope'], and this function cannot be performed by these tools: ['Polish-Jewelry', 'Hole-Punch', 'Processor', 'Class', 'Web-Pages', 'Pulley']. What function it may be? Can Ruler be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Floating-Logs', 'Wharfs', 'Piers', 'Boats', 'Docks'], and this function cannot be performed by these tools: ['Socket', 'Microcontroller', 'Descenders', 'Clamps', 'Circular-Saw', 'Strain-Gauge']. What function it may be? Can Pilings be used to perform this function? Can Sticky-Notes be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Bookshelf', 'Door', 'Cabinet', 'Desk', 'Floor'], and this function cannot be performed by these tools: ['Diaphragm', 'Raspberry-Pi', 'Table-Saw', 'Thimble', 'API-Endpoints', 'Cabinet-Handle']. What function it may be? Can Chair be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Scissors', 'Glue-Stick', 'Pen', 'Highlighter', 'Stapler'], and this function cannot be performed by these tools: ['Memory-Card', 'USB-Mouse', 'Screwdriver-Bit', 'Calculator', 'Jigsaw', 'Bench']. What function it may be? Can White-Out be used to perform this function? Can Tightrope be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Recording-Software', 'Audio-Interface', 'Microphone', 'Speakers', 'Mouse'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Pulley', 'Graph-Paper', 'Netting', 'Storage-Device', 'Ribbon']. What function it may be? Can Cables be used to perform this function? Can Scissor-Lift be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Router', 'USB-Flash-Drive', 'External-Hard-Drive', 'Monitor', 'Laptop'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Fishing-Rod', 'Wheel', 'Docks', 'Robot-Vacuum', 'Copper-Wire']. What function it may be? Can Keyboard be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Smart-TV', 'Laptop', 'Tablet', 'Smartwatch', 'Smartphone', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Rugby-Ball', 'Sharpener', 'Polish-Flag', 'Needle', 'Refrigerator', 'Sound-Card']. What function it may be? Can Printer be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Button', 'Pedal', 'Slider', 'Switch', 'Handle', 'Dial'], and this function cannot be performed by these tools: ['Spirit-Level', 'Clamp', 'Paper', 'Napkin', 'Bobbins', 'Digital-Level']. What function it may be? Can Joystick be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Desk', 'Wall', 'Cabinet', 'Bookshelf', 'Floor'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Raspberry-Pi', 'Diaphragm', 'Table-Saw', 'Thimble', 'Drill-Press']. What function it may be? Can Door be used to perform this function? Can API-Endpoints be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Game-Controller', 'Gesture-Sensor', 'Light-Switch', 'Tablet', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Jump-Rope', 'CSV-Files', 'Robot-Car', 'Pitchfork', 'Rag', 'Crimp-Tool']. What function it may be? Can Mouse be used to perform this function? Can Paintbrush-Holder be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'File', 'Hammer', 'Screwdriver', 'Hacksaw', 'Pencil'], and this function cannot be performed by these tools: ['Luggage-Lock', 'LED-Lights', 'Table-Saw', 'Clay', 'Cheese', 'Desktop-Computer']. What function it may be? Can Drill-Bit be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Game-Controller', 'Gesture-Sensor', 'Mouse', 'Touchscreen-Monitor', 'Tablet'], and this function cannot be performed by these tools: ['Rag', 'Paintbrush-Holder', 'CSV-Files', 'Robot-Car', 'Pitchfork', 'Jump-Rope']. What function it may be? Can Light-Switch be used to perform this function? Can Crimp-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Drill', 'Saw', 'Crowbar', 'Tape-Measure', 'Pliers', 'Rope'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Wharfs', 'Rug', 'Scissors', 'Door', 'Buoys']. What function it may be? Can Hammer be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Tightrope', 'Rocking-Horse', 'Plank', 'Stool', 'See-Saw'], and this function cannot be performed by these tools: ['Printer', 'Pulley', 'Hole-Punch', 'Web-Pages', 'Processor', 'Polish-Jewelry']. What function it may be? Can Scale be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Headphones', 'Speakers', 'Joystick', 'Monitor', 'Printer'], and this function cannot be performed by these tools: ['Paint-Tray', 'Robot-Dog', 'Mixer', 'Chalkboard', 'LED-Lights', 'Vegetables']. What function it may be? Can Keyboard be used to perform this function? Can Polish-Music-Instruments be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'Speakers', 'Gamepad', 'Monitor', 'Scanner', 'Mouse'], and this function cannot be performed by these tools: ['Tow-Truck', 'Smartwatch', 'Paint-Palette', 'CSV-File', 'Pressure-Gauge', 'Door']. What function it may be? Can Microphone be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Stone', 'Clay', 'Styrofoam', 'Plaster', 'Cardboard'], and this function cannot be performed by these tools: ['Anchors', 'Scrub-Brush', 'Hacksaw', 'Robot-Arm', 'Smartphone', 'Padlock']. What function it may be? Can Wooden-Block be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Microcontroller', 'Robot', 'GPS-Tracker', 'Drone', 'Computer'], and this function cannot be performed by these tools: ['Joystick', 'Magnetic-Tape', 'Robot-Vacuum', 'Stopwatch', 'Excel-Spreadsheet', 'Laptop']. What function it may be? Can Sensor be used to perform this function? Can Plate be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Joystick', 'Speakers', 'Printer', 'Headphones', 'USB-Drive'], and this function cannot be performed by these tools: ['Robot-Dog', 'Chalkboard', 'Polish-Music-Instruments', 'Vegetables', 'Paint-Tray', 'Mixer']. What function it may be? Can Keyboard be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Clamps', 'Staples', 'Rivets', 'Screws', 'Adhesives', 'Anchors'], and this function cannot be performed by these tools: ['Lace', 'Table-Saw', 'Dictionary', 'Gamepad', 'Clock', 'SD-Card']. What function it may be? Can Nails be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['Clamps', 'Adhesives', 'Rivets', 'Screws', 'Anchors', 'Nails'], and this function cannot be performed by these tools: ['Dictionary', 'Lace', 'SD-Card', 'Table-Saw', 'Gamepad', 'Clock']. What function it may be? Can Staples be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['External-Hard-Drive', 'Monitor', 'Laptop', 'USB-Flash-Drive', 'Router', 'Keyboard'], and this function cannot be performed by these tools: ['Docks', 'Fishing-Rod', 'Copper-Wire', 'Robot-Vacuum', 'Wheel', 'Seam-Ripper']. What function it may be? Can Smartphone be used to perform this function? Can Crate be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Glue-Stick', 'Scissors', 'Highlighter', 'Pen', 'White-Out'], and this function cannot be performed by these tools: ['USB-Mouse', 'Tightrope', 'Calculator', 'Memory-Card', 'Screwdriver-Bit', 'Jigsaw']. What function it may be? Can Stapler be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Drone', 'Microcontroller', 'Desktop-Computer', 'Tablet', 'Smartphone'], and this function cannot be performed by these tools: ['Vice', 'Golf-Ball', 'Yarn', 'Garage-Door-Lock', 'Ceiling', 'Dice-Shaker']. What function it may be? Can Robot be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Handle', 'Switch', 'Dial', 'Pedal', 'Button'], and this function cannot be performed by these tools: ['Digital-Level', 'Clamp', 'Bobbins', 'Paper', 'Napkin', 'Spirit-Level']. What function it may be? Can Joystick be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'USB-Drive', 'Printer', 'Headphones', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'Mixer', 'Chalkboard', 'Paint-Tray', 'Robot-Dog', 'Vegetables']. What function it may be? Can Joystick be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'Boolean', 'File', 'String', 'Tuple', 'Class'], and this function cannot be performed by these tools: ['Flagpole', 'Optical-Disc', 'Desk', 'Flash-Drive', 'Fabric', 'Rocking-Horse']. What function it may be? Can List be used to perform this function? Can Recording-Software be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Hammer', 'Screwdriver', 'Hacksaw', 'Pencil', 'File'], and this function cannot be performed by these tools: ['LED-Lights', 'Padlock', 'Cheese', 'Clay', 'Table-Saw', 'Desktop-Computer']. What function it may be? Can Drill-Bit be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Scale', 'Plank', 'Ruler', 'Tightrope', 'See-Saw', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Printer', 'Hole-Punch', 'Polish-Jewelry', 'Processor', 'Pulley', 'Web-Pages']. What function it may be? Can Stool be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Robot', 'Microcontroller', 'GPS-Tracker', 'Raspberry-Pi', 'Drone'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Stopwatch', 'Magnetic-Tape', 'Robot-Vacuum', 'Plate', 'Joystick']. What function it may be? Can Sensor be used to perform this function? Can Laptop be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Table', 'Bookshelf', 'Cabinet', 'Dresser', 'Bed'], and this function cannot be performed by these tools: ['Dodecahedron', 'Socket-Set', 'Ribbon', 'Memory-Card', 'Anchors', 'Filter']. What function it may be? Can Stool be used to perform this function? Can Glass be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'Float', 'Class', 'List', 'Boolean', 'File'], and this function cannot be performed by these tools: ['Flagpole', 'Optical-Disc', 'Recording-Software', 'Rocking-Horse', 'Flash-Drive', 'Desk']. What function it may be? Can String be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Tablet', 'Smartwatch', 'Smart-TV', 'Laptop', 'Smart-Speaker'], and this function cannot be performed by these tools: ['Needle', 'Refrigerator', 'Sharpener', 'Sound-Card', 'Staple-Punch', 'Rugby-Ball']. What function it may be? Can Smartphone be used to perform this function? Can Polish-Flag be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Tablet', 'Desktop-Computer', 'Smartphone', 'Microcontroller', 'Robot'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Yarn', 'Golf-Ball', 'Garage-Door-Lock', 'Vice', 'Ceiling']. What function it may be? Can Laptop be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'Boolean', 'String', 'Tuple', 'File', 'List'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Fabric', 'Flagpole', 'Desk', 'Flash-Drive', 'Recording-Software']. What function it may be? Can Class be used to perform this function? Can Optical-Disc be used to perform this function?
There is a function that can be performed by these tools: ['Hammer', 'Rope', 'Tape-Measure', 'Pliers', 'Crowbar', 'Drill'], and this function cannot be performed by these tools: ['Buoys', 'Boolean', 'Scissors', 'Wharfs', 'Rug', 'Flash-Memory-Card']. What function it may be? Can Saw be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Keyboard', 'Microphone', 'Webcam', 'Headphones', 'Mouse'], and this function cannot be performed by these tools: ['Measuring-Tape', 'Staple-Punch', 'Tug-of-War-Rope', 'Compass', 'Helmets', 'Dremel-Tool']. What function it may be? Can Monitor be used to perform this function? Can Ohmmeter be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Recording-Software', 'Microphone', 'Audio-Interface', 'Cables', 'Speakers'], and this function cannot be performed by these tools: ['Pulley', 'Ribbon', 'Netting', 'Storage-Device', 'Scissor-Lift', 'Seam-Ripper']. What function it may be? Can Mouse be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Rocking-Horse', 'Ruler', 'See-Saw', 'Plank', 'Tightrope', 'Stool'], and this function cannot be performed by these tools: ['Processor', 'Web-Pages', 'Printer', 'Pulley', 'Class', 'Polish-Jewelry']. What function it may be? Can Scale be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smartphone', 'Tablet', 'Smart-Speaker', 'Printer', 'Smart-TV'], and this function cannot be performed by these tools: ['Staple-Punch', 'Polish-Flag', 'Sound-Card', 'Refrigerator', 'Needle', 'Rugby-Ball']. What function it may be? Can Smartwatch be used to perform this function? Can Sharpener be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Button', 'Switch', 'Pedal', 'Handle', 'Dial'], and this function cannot be performed by these tools: ['Spirit-Level', 'Paper', 'Digital-Level', 'Clamp', 'Napkin', 'Mouse']. What function it may be? Can Slider be used to perform this function? Can Bobbins be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Headphones', 'Printer', 'Joystick', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Polish-Music-Instruments', 'LED-Lights', 'Robot-Dog', 'Mixer', 'Vegetables', 'Chalkboard']. What function it may be? Can USB-Drive be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Stapler', 'Glue-Stick', 'Scissors', 'Pen', 'Paper-Clip', 'Highlighter'], and this function cannot be performed by these tools: ['Memory-Card', 'Bench', 'Tightrope', 'Screwdriver-Bit', 'Calculator', 'Jigsaw']. What function it may be? Can White-Out be used to perform this function? Can USB-Mouse be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Monitor', 'Joystick', 'Printer', 'Keyboard', 'Headphones'], and this function cannot be performed by these tools: ['Robot-Dog', 'Polish-Music-Instruments', 'Paint-Tray', 'LED-Lights', 'Mixer', 'Chalkboard']. What function it may be? Can Speakers be used to perform this function? Can Vegetables be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Docks', 'Wharfs', 'Pilings', 'Buoys', 'Piers'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Clamps', 'Microcontroller', 'Circular-Saw', 'Socket', 'Strain-Gauge']. What function it may be? Can Boats be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Cabinet', 'Floor', 'Chair', 'Door', 'Wall'], and this function cannot be performed by these tools: ['Cabinet-Handle', 'Drill-Press', 'API-Endpoints', 'Raspberry-Pi', 'Table-Saw', 'Thimble']. What function it may be? Can Desk be used to perform this function? Can Diaphragm be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Monitor', 'Webcam', 'Headphones', 'USB-Drive', 'Keyboard'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Staple-Punch', 'Tug-of-War-Rope', 'Helmets', 'Ohmmeter', 'Measuring-Tape']. What function it may be? Can Microphone be used to perform this function? Can Compass be used to perform this function?
There is a function that can be performed by these tools: ['Robot', 'Desktop-Computer', 'Laptop', 'Tablet', 'Drone', 'Smartphone'], and this function cannot be performed by these tools: ['Ceiling', 'Yarn', 'Vice', 'Garage-Door-Lock', 'Dice-Shaker', 'Robot-Vacuum']. What function it may be? Can Microcontroller be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Hammer', 'Saw', 'Pliers', 'Crowbar', 'Rope'], and this function cannot be performed by these tools: ['Scissors', 'Boolean', 'Wharfs', 'Rug', 'Flash-Memory-Card', 'Door']. What function it may be? Can Drill be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Joystick', 'Tablet', 'Mouse', 'Game-Controller', 'Gesture-Sensor', 'Touchscreen-Monitor'], and this function cannot be performed by these tools: ['Paintbrush-Holder', 'Rag', 'CSV-Files', 'Robot-Car', 'Jump-Rope', 'Crimp-Tool']. What function it may be? Can Light-Switch be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Chair', 'Cabinet', 'Bed', 'Table', 'Dresser'], and this function cannot be performed by these tools: ['Ribbon', 'Glass', 'Socket-Set', 'Filter', 'Memory-Card', 'Dodecahedron']. What function it may be? Can Stool be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['See-Saw', 'Scale', 'Ruler', 'Rocking-Horse', 'Plank', 'Stool'], and this function cannot be performed by these tools: ['Web-Pages', 'Processor', 'Hole-Punch', 'Pulley', 'Printer', 'Polish-Jewelry']. What function it may be? Can Tightrope be used to perform this function? Can Class be used to perform this function?
There is a function that can be performed by these tools: ['Cabinet', 'Bed', 'Chair', 'Stool', 'Table', 'Dresser'], and this function cannot be performed by these tools: ['Glass', 'Dodecahedron', 'Memory-Card', 'Anchors', 'Socket-Set', 'Ribbon']. What function it may be? Can Bookshelf be used to perform this function? Can Filter be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Pen', 'Glue-Stick', 'Stapler', 'White-Out', 'Scissors'], and this function cannot be performed by these tools: ['Calculator', 'Screwdriver-Bit', 'Bench', 'Tightrope', 'USB-Mouse', 'Memory-Card']. What function it may be? Can Highlighter be used to perform this function? Can Jigsaw be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Tablet', 'Mouse', 'Joystick', 'Touchscreen-Monitor', 'Light-Switch'], and this function cannot be performed by these tools: ['Rag', 'Robot-Car', 'Jump-Rope', 'Paintbrush-Holder', 'CSV-Files', 'Crimp-Tool']. What function it may be? Can Game-Controller be used to perform this function? Can Pitchfork be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Stone', 'Styrofoam', 'Cardboard', 'Plaster', 'Wooden-Block'], and this function cannot be performed by these tools: ['Tile-Saw', 'Scrub-Brush', 'Hacksaw', 'Smartphone', 'Robot-Arm', 'Padlock']. What function it may be? Can Clay be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Speakers', 'USB-Drive', 'Joystick', 'Monitor', 'Printer'], and this function cannot be performed by these tools: ['Chalkboard', 'Mixer', 'Vegetables', 'LED-Lights', 'Polish-Music-Instruments', 'Robot-Dog']. What function it may be? Can Keyboard be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Cabinet', 'Bed', 'Stool', 'Dresser', 'Table'], and this function cannot be performed by these tools: ['Socket-Set', 'Anchors', 'Dodecahedron', 'Filter', 'Glass', 'Memory-Card']. What function it may be? Can Bookshelf be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Keyboard', 'Router', 'Monitor', 'Laptop', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Crate', 'Wheel', 'Docks', 'Robot-Vacuum', 'Copper-Wire', 'Seam-Ripper']. What function it may be? Can External-Hard-Drive be used to perform this function? Can Fishing-Rod be used to perform this function?
There is a function that can be performed by these tools: ['GPS-Tracker', 'Computer', 'Robot', 'Raspberry-Pi', 'Microcontroller', 'Sensor'], and this function cannot be performed by these tools: ['Magnetic-Tape', 'Robot-Vacuum', 'Laptop', 'Plate', 'Joystick', 'Excel-Spreadsheet']. What function it may be? Can Drone be used to perform this function? Can Stopwatch be used to perform this function?
There is a function that can be performed by these tools: ['Towel', 'Hook', 'Rope', 'Bungee-Cord', 'Chain', 'Handle'], and this function cannot be performed by these tools: ['Napkin', 'Rugby-Ball', 'Beam', 'Soldering-Iron', 'Paint-Brush-Cleaner', 'Storage-Device']. What function it may be? Can Cable be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'External-Hard-Drive', 'USB-Flash-Drive', 'Router', 'Smartphone', 'Monitor'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Wheel', 'Docks', 'Fishing-Rod', 'Crate', 'Robot-Vacuum']. What function it may be? Can Laptop be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Pilings', 'Floating-Logs', 'Buoys', 'Wharfs', 'Piers', 'Docks'], and this function cannot be performed by these tools: ['Socket', 'Microcontroller', 'Descenders', 'Sticky-Notes', 'Circular-Saw', 'Clamps']. What function it may be? Can Boats be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Robot', 'Microcontroller', 'Drone', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Vice', 'Garage-Door-Lock', 'Robot-Vacuum', 'Yarn', 'Golf-Ball', 'Dice-Shaker']. What function it may be? Can Tablet be used to perform this function? Can Ceiling be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Keyboard', 'Router', 'External-Hard-Drive', 'Monitor', 'Laptop'], and this function cannot be performed by these tools: ['Fishing-Rod', 'Wheel', 'Seam-Ripper', 'Crate', 'Robot-Vacuum', 'Docks']. What function it may be? Can USB-Flash-Drive be used to perform this function? Can Copper-Wire be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Cable', 'Rope', 'Chain', 'Bungee-Cord', 'Hook'], and this function cannot be performed by these tools: ['Storage-Device', 'Napkin', 'Soldering-Iron', 'Rugby-Ball', 'Clamp', 'Beam']. What function it may be? Can Towel be used to perform this function? Can Paint-Brush-Cleaner be used to perform this function?
There is a function that can be performed by these tools: ['Monitor', 'Laptop', 'Router', 'Smartphone', 'External-Hard-Drive', 'USB-Flash-Drive'], and this function cannot be performed by these tools: ['Copper-Wire', 'Wheel', 'Docks', 'Fishing-Rod', 'Seam-Ripper', 'Crate']. What function it may be? Can Keyboard be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Chain', 'Bungee-Cord', 'Hook', 'Handle', 'Cable', 'Rope'], and this function cannot be performed by these tools: ['Storage-Device', 'Soldering-Iron', 'Beam', 'Napkin', 'Paint-Brush-Cleaner', 'Rugby-Ball']. What function it may be? Can Towel be used to perform this function? Can Clamp be used to perform this function?
There is a function that can be performed by these tools: ['Chain', 'Towel', 'Handle', 'Hook', 'Rope', 'Cable'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Rugby-Ball', 'Storage-Device', 'Soldering-Iron', 'Napkin', 'Clamp']. What function it may be? Can Bungee-Cord be used to perform this function? Can Beam be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Headphones', 'Speakers', 'USB-Drive', 'Joystick', 'Printer'], and this function cannot be performed by these tools: ['Mixer', 'Robot-Dog', 'Paint-Tray', 'LED-Lights', 'Vegetables', 'Polish-Music-Instruments']. What function it may be? Can Monitor be used to perform this function? Can Chalkboard be used to perform this function?
There is a function that can be performed by these tools: ['Scissors', 'Pen', 'Highlighter', 'Stapler', 'Paper-Clip', 'White-Out'], and this function cannot be performed by these tools: ['Tightrope', 'Calculator', 'Memory-Card', 'Jigsaw', 'USB-Mouse', 'Screwdriver-Bit']. What function it may be? Can Glue-Stick be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Webcam', 'Speakers', 'Monitor', 'Microphone', 'Gamepad'], and this function cannot be performed by these tools: ['Smartwatch', 'Leather', 'Paint-Palette', 'Tow-Truck', 'CSV-File', 'Door']. What function it may be? Can Scanner be used to perform this function? Can Pressure-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Webcam', 'Mouse', 'Scanner', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Leather', 'Tow-Truck', 'Pressure-Gauge', 'Smartwatch', 'CSV-File', 'Paint-Palette']. What function it may be? Can Microphone be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Crane', 'Wheelbarrow', 'Forklift', 'Hand-Truck', 'Cargo-Container', 'Dolly'], and this function cannot be performed by these tools: ['Handle', 'Tow-Truck', 'Clip', 'Crimp-Caps', 'Anvil', 'Crowbar']. What function it may be? Can Pallet-Jack be used to perform this function? Can HTML-Tables be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Tablet', 'Desktop-Computer', 'Laptop', 'Drone', 'Microcontroller'], and this function cannot be performed by these tools: ['Vice', 'Ceiling', 'Golf-Ball', 'Garage-Door-Lock', 'Robot-Vacuum', 'Dice-Shaker']. What function it may be? Can Robot be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'White-Out', 'Glue-Stick', 'Stapler', 'Paper-Clip', 'Pen'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Tightrope', 'Jigsaw', 'Calculator', 'Bench', 'USB-Mouse']. What function it may be? Can Scissors be used to perform this function? Can Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Adhesives', 'Staples', 'Clamps', 'Rivets', 'Screws', 'Anchors'], and this function cannot be performed by these tools: ['Clock', 'Awl', 'Lace', 'Dictionary', 'SD-Card', 'Gamepad']. What function it may be? Can Nails be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Wall', 'Door', 'Bookshelf', 'Floor', 'Desk', 'Cabinet'], and this function cannot be performed by these tools: ['API-Endpoints', 'Raspberry-Pi', 'Cabinet-Handle', 'Diaphragm', 'Drill-Press', 'Table-Saw']. What function it may be? Can Chair be used to perform this function? Can Thimble be used to perform this function?
There is a function that can be performed by these tools: ['File', 'String', 'Class', 'Tuple', 'Boolean', 'Float'], and this function cannot be performed by these tools: ['Fabric', 'Recording-Software', 'Flash-Drive', 'Flagpole', 'Optical-Disc', 'Rocking-Horse']. What function it may be? Can List be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['Chair', 'Couch', 'Bed', 'Bookshelf', 'Desk', 'Cabinet'], and this function cannot be performed by these tools: ['Yarn', 'Mailbox-Lock', 'Magnetic-Tape', 'Robot-Arm', 'Cardboard', 'Doorknob']. What function it may be? Can Stool be used to perform this function? Can Cane be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Mouse', 'Monitor', 'Webcam', 'Microphone', 'Headphones'], and this function cannot be performed by these tools: ['Staple-Punch', 'Helmets', 'Ohmmeter', 'Measuring-Tape', 'Tug-of-War-Rope', 'Compass']. What function it may be? Can USB-Drive be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'Speakers', 'Monitor', 'Joystick', 'USB-Drive'], and this function cannot be performed by these tools: ['Mixer', 'Polish-Music-Instruments', 'Paint-Tray', 'Robot-Dog', 'Vegetables', 'LED-Lights']. What function it may be? Can Printer be used to perform this function? Can Chalkboard be used to perform this function?
There is a function that can be performed by these tools: ['Speakers', 'Webcam', 'Mouse', 'Gamepad', 'Scanner', 'Microphone'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'Smartwatch', 'Paint-Palette', 'Tow-Truck', 'Leather', 'CSV-File']. What function it may be? Can Monitor be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Drill', 'Saw', 'Rope', 'Hammer', 'Crowbar'], and this function cannot be performed by these tools: ['Door', 'Wharfs', 'Rug', 'Scissors', 'Boolean', 'Flash-Memory-Card']. What function it may be? Can Pliers be used to perform this function? Can Buoys be used to perform this function?
There is a function that can be performed by these tools: ['Drill-Bit', 'Chisel', 'File', 'Hammer', 'Screwdriver', 'Pencil'], and this function cannot be performed by these tools: ['Luggage-Lock', 'LED-Lights', 'Clay', 'Table-Saw', 'Desktop-Computer', 'Cheese']. What function it may be? Can Hacksaw be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Towel', 'Bungee-Cord', 'Rope', 'Handle', 'Chain', 'Cable'], and this function cannot be performed by these tools: ['Soldering-Iron', 'Clamp', 'Paint-Brush-Cleaner', 'Beam', 'Storage-Device', 'Rugby-Ball']. What function it may be? Can Hook be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Scanner', 'Webcam', 'Gamepad', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'Smartwatch', 'Tow-Truck', 'Leather', 'Paint-Palette', 'CSV-File']. What function it may be? Can Microphone be used to perform this function? Can Door be used to perform this function?
There is a function that can be performed by these tools: ['Touchscreen-Monitor', 'Game-Controller', 'Mouse', 'Gesture-Sensor', 'Tablet', 'Light-Switch'], and this function cannot be performed by these tools: ['Rag', 'Pitchfork', 'Crimp-Tool', 'CSV-Files', 'Jump-Rope', 'Paintbrush-Holder']. What function it may be? Can Joystick be used to perform this function? Can Robot-Car be used to perform this function?
There is a function that can be performed by these tools: ['Pencil', 'Hacksaw', 'File', 'Chisel', 'Hammer', 'Screwdriver'], and this function cannot be performed by these tools: ['Table-Saw', 'Desktop-Computer', 'Padlock', 'Luggage-Lock', 'Cheese', 'Clay']. What function it may be? Can Drill-Bit be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Wharfs', 'Pilings', 'Docks', 'Buoys', 'Piers', 'Floating-Logs'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Descenders', 'Socket', 'Strain-Gauge', 'Circular-Saw', 'Clamps']. What function it may be? Can Boats be used to perform this function? Can Microcontroller be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'Tightrope', 'Scale', 'See-Saw', 'Ruler', 'Rocking-Horse'], and this function cannot be performed by these tools: ['Printer', 'Pulley', 'Hole-Punch', 'Web-Pages', 'Class', 'Processor']. What function it may be? Can Stool be used to perform this function? Can Polish-Jewelry be used to perform this function?
There is a function that can be performed by these tools: ['Microcontroller', 'GPS-Tracker', 'Computer', 'Raspberry-Pi', 'Sensor', 'Drone'], and this function cannot be performed by these tools: ['Robot-Vacuum', 'Stopwatch', 'Laptop', 'Plate', 'Excel-Spreadsheet', 'Magnetic-Tape']. What function it may be? Can Robot be used to perform this function? Can Joystick be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Bookshelf', 'Chair', 'Cabinet', 'Stool', 'Bed'], and this function cannot be performed by these tools: ['Cardboard', 'Magnetic-Tape', 'Doorknob', 'Mailbox-Lock', 'Yarn', 'Cane']. What function it may be? Can Couch be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Keyboard', 'Headphones', 'Webcam', 'Mouse', 'Monitor'], and this function cannot be performed by these tools: ['Compass', 'Staple-Punch', 'Ohmmeter', 'Measuring-Tape', 'Helmets', 'Tug-of-War-Rope']. What function it may be? Can Microphone be used to perform this function? Can Dremel-Tool be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Touchscreen-Monitor', 'Gesture-Sensor', 'Game-Controller', 'Light-Switch', 'Mouse'], and this function cannot be performed by these tools: ['Jump-Rope', 'Rag', 'Crimp-Tool', 'Paintbrush-Holder', 'Pitchfork', 'Robot-Car']. What function it may be? Can Joystick be used to perform this function? Can CSV-Files be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Buoys', 'Pilings', 'Boats', 'Floating-Logs', 'Wharfs'], and this function cannot be performed by these tools: ['Clamps', 'Microcontroller', 'Socket', 'Circular-Saw', 'Sticky-Notes', 'Strain-Gauge']. What function it may be? Can Docks be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Chisel', 'Drill-Bit', 'Screwdriver', 'Pencil', 'Hacksaw'], and this function cannot be performed by these tools: ['Cheese', 'Desktop-Computer', 'LED-Lights', 'Luggage-Lock', 'Clay', 'Table-Saw']. What function it may be? Can Hammer be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Anchors', 'Clamps', 'Nails', 'Adhesives', 'Screws'], and this function cannot be performed by these tools: ['Awl', 'Gamepad', 'Table-Saw', 'Dictionary', 'SD-Card', 'Lace']. What function it may be? Can Rivets be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Mouse', 'Speakers', 'Monitor', 'Microphone', 'Webcam'], and this function cannot be performed by these tools: ['Paint-Palette', 'Door', 'Pressure-Gauge', 'Smartwatch', 'Tow-Truck', 'Leather']. What function it may be? Can Scanner be used to perform this function? Can CSV-File be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Game-Controller', 'Touchscreen-Monitor', 'Joystick', 'Mouse', 'Tablet'], and this function cannot be performed by these tools: ['Pitchfork', 'Robot-Car', 'Paintbrush-Holder', 'CSV-Files', 'Rag', 'Crimp-Tool']. What function it may be? Can Light-Switch be used to perform this function? Can Jump-Rope be used to perform this function?
There is a function that can be performed by these tools: ['Styrofoam', 'Balsa-Wood', 'Wooden-Block', 'Plaster', 'Cardboard', 'Stone'], and this function cannot be performed by these tools: ['Robot-Arm', 'Padlock', 'Hacksaw', 'Anchors', 'Scrub-Brush', 'Tile-Saw']. What function it may be? Can Clay be used to perform this function? Can Smartphone be used to perform this function?
There is a function that can be performed by these tools: ['Printer', 'Headphones', 'Joystick', 'Keyboard', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Chalkboard', 'Paint-Tray', 'Mixer', 'Polish-Music-Instruments', 'LED-Lights', 'Vegetables']. What function it may be? Can USB-Drive be used to perform this function? Can Robot-Dog be used to perform this function?
There is a function that can be performed by these tools: ['Pliers', 'Crowbar', 'Rope', 'Drill', 'Saw', 'Tape-Measure'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Buoys', 'Rug', 'Scissors', 'Door', 'Wharfs']. What function it may be? Can Hammer be used to perform this function? Can Boolean be used to perform this function?
There is a function that can be performed by these tools: ['Rope', 'Cable', 'Towel', 'Bungee-Cord', 'Hook', 'Handle'], and this function cannot be performed by these tools: ['Storage-Device', 'Paint-Brush-Cleaner', 'Beam', 'Clamp', 'Rugby-Ball', 'Soldering-Iron']. What function it may be? Can Chain be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Dolly', 'Wheelbarrow', 'Crane', 'Hand-Truck', 'Pallet-Jack', 'Cargo-Container'], and this function cannot be performed by these tools: ['Handle', 'Crowbar', 'Anvil', 'Tow-Truck', 'HTML-Tables', 'Clip']. What function it may be? Can Forklift be used to perform this function? Can Crimp-Caps be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Smart-Speaker', 'Printer', 'Smartphone', 'Tablet', 'Smartwatch'], and this function cannot be performed by these tools: ['Sound-Card', 'Refrigerator', 'Sharpener', 'Needle', 'Polish-Flag', 'Rugby-Ball']. What function it may be? Can Smart-TV be used to perform this function? Can Staple-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Smartwatch', 'Tablet', 'Smart-TV', 'Printer', 'Laptop'], and this function cannot be performed by these tools: ['Staple-Punch', 'Sharpener', 'Polish-Flag', 'Needle', 'Refrigerator', 'Rugby-Ball']. What function it may be? Can Smart-Speaker be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Tightrope', 'Scale', 'Plank', 'Rocking-Horse', 'See-Saw'], and this function cannot be performed by these tools: ['Class', 'Hole-Punch', 'Pulley', 'Processor', 'Polish-Jewelry', 'Printer']. What function it may be? Can Stool be used to perform this function? Can Web-Pages be used to perform this function?
There is a function that can be performed by these tools: ['Smartphone', 'Laptop', 'Microcontroller', 'Desktop-Computer', 'Tablet', 'Robot'], and this function cannot be performed by these tools: ['Ceiling', 'Golf-Ball', 'Garage-Door-Lock', 'Yarn', 'Vice', 'Robot-Vacuum']. What function it may be? Can Drone be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Clay', 'Stone', 'Plaster', 'Cardboard', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Anchors', 'Tile-Saw', 'Hacksaw', 'Smartphone', 'Padlock', 'Scrub-Brush']. What function it may be? Can Styrofoam be used to perform this function? Can Robot-Arm be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Microphone', 'Mouse', 'Recording-Software', 'Audio-Interface', 'Monitor'], and this function cannot be performed by these tools: ['Pulley', 'Storage-Device', 'Netting', 'Graph-Paper', 'Ribbon', 'Scissor-Lift']. What function it may be? Can Speakers be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Pencil', 'Chisel', 'File', 'Drill-Bit', 'Hacksaw', 'Hammer'], and this function cannot be performed by these tools: ['LED-Lights', 'Desktop-Computer', 'Cheese', 'Clay', 'Luggage-Lock', 'Table-Saw']. What function it may be? Can Screwdriver be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'File', 'Hacksaw', 'Drill-Bit', 'Hammer', 'Chisel'], and this function cannot be performed by these tools: ['Table-Saw', 'LED-Lights', 'Desktop-Computer', 'Cheese', 'Clay', 'Padlock']. What function it may be? Can Pencil be used to perform this function? Can Luggage-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Tablet', 'Robot', 'Desktop-Computer', 'Smartphone', 'Microcontroller'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Dice-Shaker', 'Robot-Vacuum', 'Golf-Ball', 'Ceiling', 'Vice']. What function it may be? Can Drone be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Audio-Interface', 'Cables', 'Microphone', 'Monitor', 'Recording-Software'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Scissor-Lift', 'Pulley', 'Netting', 'Storage-Device', 'Ribbon']. What function it may be? Can Speakers be used to perform this function? Can Graph-Paper be used to perform this function?
There is a function that can be performed by these tools: ['Rivets', 'Adhesives', 'Clamps', 'Nails', 'Anchors', 'Screws'], and this function cannot be performed by these tools: ['Gamepad', 'Table-Saw', 'Clock', 'Awl', 'Lace', 'SD-Card']. What function it may be? Can Staples be used to perform this function? Can Dictionary be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Wall', 'Chair', 'Cabinet', 'Floor', 'Desk'], and this function cannot be performed by these tools: ['Thimble', 'Diaphragm', 'Table-Saw', 'API-Endpoints', 'Cabinet-Handle', 'Drill-Press']. What function it may be? Can Door be used to perform this function? Can Raspberry-Pi be used to perform this function?
There is a function that can be performed by these tools: ['Wooden-Block', 'Plaster', 'Balsa-Wood', 'Stone', 'Cardboard', 'Clay'], and this function cannot be performed by these tools: ['Tile-Saw', 'Smartphone', 'Scrub-Brush', 'Robot-Arm', 'Padlock', 'Hacksaw']. What function it may be? Can Styrofoam be used to perform this function? Can Anchors be used to perform this function?
There is a function that can be performed by these tools: ['Plaster', 'Wooden-Block', 'Clay', 'Cardboard', 'Styrofoam', 'Balsa-Wood'], and this function cannot be performed by these tools: ['Scrub-Brush', 'Smartphone', 'Tile-Saw', 'Robot-Arm', 'Hacksaw', 'Anchors']. What function it may be? Can Stone be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Drone', 'Computer', 'Microcontroller', 'GPS-Tracker', 'Sensor', 'Robot'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Joystick', 'Robot-Vacuum', 'Stopwatch', 'Plate', 'Laptop']. What function it may be? Can Raspberry-Pi be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Button', 'Handle', 'Joystick', 'Switch', 'Pedal', 'Dial'], and this function cannot be performed by these tools: ['Mouse', 'Bobbins', 'Spirit-Level', 'Clamp', 'Digital-Level', 'Napkin']. What function it may be? Can Slider be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Pliers', 'Crowbar', 'Rope', 'Saw', 'Drill'], and this function cannot be performed by these tools: ['Buoys', 'Wharfs', 'Scissors', 'Door', 'Boolean', 'Rug']. What function it may be? Can Hammer be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Cables', 'Speakers', 'Microphone', 'Recording-Software', 'Monitor'], and this function cannot be performed by these tools: ['Storage-Device', 'Seam-Ripper', 'Pulley', 'Graph-Paper', 'Scissor-Lift', 'Netting']. What function it may be? Can Mouse be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'Monitor', 'Printer', 'Speakers', 'Joystick'], and this function cannot be performed by these tools: ['Paint-Tray', 'LED-Lights', 'Polish-Music-Instruments', 'Vegetables', 'Mixer', 'Chalkboard']. What function it may be? Can USB-Drive be used to perform this function? Can Robot-Dog be used to perform this function?
There is a function that can be performed by these tools: ['Headphones', 'Keyboard', 'Printer', 'Monitor', 'USB-Drive', 'Speakers'], and this function cannot be performed by these tools: ['LED-Lights', 'Mixer', 'Robot-Dog', 'Chalkboard', 'Vegetables', 'Polish-Music-Instruments']. What function it may be? Can Joystick be used to perform this function? Can Paint-Tray be used to perform this function?
There is a function that can be performed by these tools: ['Saw', 'Tape-Measure', 'Pliers', 'Hammer', 'Crowbar', 'Drill'], and this function cannot be performed by these tools: ['Flash-Memory-Card', 'Buoys', 'Door', 'Boolean', 'Scissors', 'Rug']. What function it may be? Can Rope be used to perform this function? Can Wharfs be used to perform this function?
There is a function that can be performed by these tools: ['Tablet', 'Drone', 'Smartphone', 'Microcontroller', 'Desktop-Computer', 'Robot'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Vice', 'Golf-Ball', 'Yarn', 'Robot-Vacuum', 'Ceiling']. What function it may be? Can Laptop be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Keyboard', 'Webcam', 'USB-Drive', 'Microphone', 'Mouse', 'Monitor'], and this function cannot be performed by these tools: ['Dremel-Tool', 'Helmets', 'Staple-Punch', 'Compass', 'Ohmmeter', 'Tug-of-War-Rope']. What function it may be? Can Headphones be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Crowbar', 'Drill', 'Hammer', 'Pliers', 'Rope', 'Saw'], and this function cannot be performed by these tools: ['Buoys', 'Door', 'Wharfs', 'Boolean', 'Scissors', 'Rug']. What function it may be? Can Tape-Measure be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Handle', 'Button', 'Pedal', 'Joystick', 'Dial'], and this function cannot be performed by these tools: ['Paper', 'Bobbins', 'Spirit-Level', 'Mouse', 'Clamp', 'Digital-Level']. What function it may be? Can Switch be used to perform this function? Can Napkin be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Monitor', 'Scanner', 'Webcam', 'Gamepad', 'Microphone'], and this function cannot be performed by these tools: ['Pressure-Gauge', 'Leather', 'Paint-Palette', 'Tow-Truck', 'Door', 'CSV-File']. What function it may be? Can Speakers be used to perform this function? Can Smartwatch be used to perform this function?
There is a function that can be performed by these tools: ['Hand-Truck', 'Wheelbarrow', 'Cargo-Container', 'Pallet-Jack', 'Crane', 'Dolly'], and this function cannot be performed by these tools: ['Clip', 'Crimp-Caps', 'Tow-Truck', 'Anvil', 'Handle', 'HTML-Tables']. What function it may be? Can Forklift be used to perform this function? Can Crowbar be used to perform this function?
There is a function that can be performed by these tools: ['Webcam', 'USB-Drive', 'Microphone', 'Headphones', 'Keyboard', 'Mouse'], and this function cannot be performed by these tools: ['Staple-Punch', 'Tug-of-War-Rope', 'Ohmmeter', 'Compass', 'Helmets', 'Dremel-Tool']. What function it may be? Can Monitor be used to perform this function? Can Measuring-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Screws', 'Adhesives', 'Clamps', 'Nails', 'Staples', 'Anchors'], and this function cannot be performed by these tools: ['Clock', 'Lace', 'Awl', 'Dictionary', 'Gamepad', 'Table-Saw']. What function it may be? Can Rivets be used to perform this function? Can SD-Card be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'Tuple', 'String', 'Boolean', 'Class', 'File'], and this function cannot be performed by these tools: ['Recording-Software', 'Fabric', 'Flagpole', 'Rocking-Horse', 'Desk', 'Optical-Disc']. What function it may be? Can List be used to perform this function? Can Flash-Drive be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Chair', 'Bookshelf', 'Desk', 'Cabinet', 'Stool'], and this function cannot be performed by these tools: ['Doorknob', 'Cardboard', 'Magnetic-Tape', 'Cane', 'Robot-Arm', 'Mailbox-Lock']. What function it may be? Can Bed be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'GPS-Tracker', 'Microcontroller', 'Drone', 'Raspberry-Pi', 'Sensor'], and this function cannot be performed by these tools: ['Stopwatch', 'Joystick', 'Magnetic-Tape', 'Plate', 'Excel-Spreadsheet', 'Laptop']. What function it may be? Can Robot be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Gesture-Sensor', 'Joystick', 'Mouse', 'Light-Switch', 'Tablet', 'Game-Controller'], and this function cannot be performed by these tools: ['CSV-Files', 'Paintbrush-Holder', 'Jump-Rope', 'Crimp-Tool', 'Pitchfork', 'Robot-Car']. What function it may be? Can Touchscreen-Monitor be used to perform this function? Can Rag be used to perform this function?
There is a function that can be performed by these tools: ['Tape-Measure', 'Rope', 'Drill', 'Saw', 'Pliers', 'Hammer'], and this function cannot be performed by these tools: ['Wharfs', 'Rug', 'Buoys', 'Boolean', 'Door', 'Scissors']. What function it may be? Can Crowbar be used to perform this function? Can Flash-Memory-Card be used to perform this function?
There is a function that can be performed by these tools: ['Raspberry-Pi', 'Sensor', 'Computer', 'Robot', 'Microcontroller', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Plate', 'Excel-Spreadsheet', 'Magnetic-Tape', 'Stopwatch', 'Joystick', 'Laptop']. What function it may be? Can Drone be used to perform this function? Can Robot-Vacuum be used to perform this function?
There is a function that can be performed by these tools: ['Boolean', 'Class', 'File', 'Float', 'List', 'Tuple'], and this function cannot be performed by these tools: ['Flash-Drive', 'Recording-Software', 'Fabric', 'Optical-Disc', 'Flagpole', 'Desk']. What function it may be? Can String be used to perform this function? Can Rocking-Horse be used to perform this function?
There is a function that can be performed by these tools: ['Anchors', 'Screws', 'Clamps', 'Nails', 'Staples', 'Rivets'], and this function cannot be performed by these tools: ['Lace', 'Table-Saw', 'Dictionary', 'Clock', 'SD-Card', 'Gamepad']. What function it may be? Can Adhesives be used to perform this function? Can Awl be used to perform this function?
There is a function that can be performed by these tools: ['Slider', 'Dial', 'Joystick', 'Switch', 'Pedal', 'Handle'], and this function cannot be performed by these tools: ['Paper', 'Napkin', 'Spirit-Level', 'Digital-Level', 'Bobbins', 'Clamp']. What function it may be? Can Button be used to perform this function? Can Mouse be used to perform this function?
There is a function that can be performed by these tools: ['Balsa-Wood', 'Stone', 'Plaster', 'Cardboard', 'Styrofoam', 'Clay'], and this function cannot be performed by these tools: ['Anchors', 'Scrub-Brush', 'Smartphone', 'Padlock', 'Robot-Arm', 'Hacksaw']. What function it may be? Can Wooden-Block be used to perform this function? Can Tile-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Rope', 'Handle', 'Towel', 'Cable', 'Chain'], and this function cannot be performed by these tools: ['Napkin', 'Beam', 'Clamp', 'Storage-Device', 'Paint-Brush-Cleaner', 'Rugby-Ball']. What function it may be? Can Bungee-Cord be used to perform this function? Can Soldering-Iron be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Printer', 'Keyboard', 'Joystick', 'Monitor', 'Speakers'], and this function cannot be performed by these tools: ['Robot-Dog', 'Chalkboard', 'Mixer', 'Paint-Tray', 'Vegetables', 'Polish-Music-Instruments']. What function it may be? Can Headphones be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Pen', 'Highlighter', 'White-Out', 'Paper-Clip', 'Scissors', 'Glue-Stick'], and this function cannot be performed by these tools: ['USB-Mouse', 'Memory-Card', 'Calculator', 'Bench', 'Screwdriver-Bit', 'Tightrope']. What function it may be? Can Stapler be used to perform this function? Can Jigsaw be used to perform this function?
There is a function that can be performed by these tools: ['Recording-Software', 'Audio-Interface', 'Speakers', 'Cables', 'Microphone', 'Monitor'], and this function cannot be performed by these tools: ['Seam-Ripper', 'Ribbon', 'Pulley', 'Graph-Paper', 'Netting', 'Scissor-Lift']. What function it may be? Can Mouse be used to perform this function? Can Storage-Device be used to perform this function?
There is a function that can be performed by these tools: ['Sensor', 'Drone', 'Microcontroller', 'Raspberry-Pi', 'GPS-Tracker', 'Computer'], and this function cannot be performed by these tools: ['Excel-Spreadsheet', 'Magnetic-Tape', 'Robot-Vacuum', 'Laptop', 'Plate', 'Joystick']. What function it may be? Can Robot be used to perform this function? Can Stopwatch be used to perform this function?
There is a function that can be performed by these tools: ['Hook', 'Chain', 'Rope', 'Towel', 'Cable', 'Handle'], and this function cannot be performed by these tools: ['Paint-Brush-Cleaner', 'Clamp', 'Soldering-Iron', 'Napkin', 'Beam', 'Storage-Device']. What function it may be? Can Bungee-Cord be used to perform this function? Can Rugby-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Tablet', 'Microcontroller', 'Robot', 'Drone', 'Desktop-Computer'], and this function cannot be performed by these tools: ['Garage-Door-Lock', 'Robot-Vacuum', 'Vice', 'Golf-Ball', 'Ceiling', 'Yarn']. What function it may be? Can Smartphone be used to perform this function? Can Dice-Shaker be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Pilings', 'Buoys', 'Docks', 'Wharfs', 'Boats'], and this function cannot be performed by these tools: ['Sticky-Notes', 'Strain-Gauge', 'Microcontroller', 'Descenders', 'Socket', 'Circular-Saw']. What function it may be? Can Piers be used to perform this function? Can Clamps be used to perform this function?
There is a function that can be performed by these tools: ['Tuple', 'List', 'Boolean', 'Float', 'Class', 'String'], and this function cannot be performed by these tools: ['Rocking-Horse', 'Desk', 'Fabric', 'Optical-Disc', 'Recording-Software', 'Flash-Drive']. What function it may be? Can File be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Couch', 'Bed', 'Desk', 'Chair', 'Bookshelf', 'Stool'], and this function cannot be performed by these tools: ['Yarn', 'Cane', 'Mailbox-Lock', 'Robot-Arm', 'Cardboard', 'Doorknob']. What function it may be? Can Cabinet be used to perform this function? Can Magnetic-Tape be used to perform this function?
There is a function that can be performed by these tools: ['Forklift', 'Dolly', 'Hand-Truck', 'Crane', 'Wheelbarrow', 'Cargo-Container'], and this function cannot be performed by these tools: ['Crowbar', 'Anvil', 'Crimp-Caps', 'HTML-Tables', 'Handle', 'Tow-Truck']. What function it may be? Can Pallet-Jack be used to perform this function? Can Clip be used to perform this function?
There is a function that can be performed by these tools: ['Staples', 'Adhesives', 'Screws', 'Anchors', 'Rivets', 'Clamps'], and this function cannot be performed by these tools: ['Table-Saw', 'Lace', 'SD-Card', 'Gamepad', 'Dictionary', 'Awl']. What function it may be? Can Nails be used to perform this function? Can Clock be used to perform this function?
There is a function that can be performed by these tools: ['Floating-Logs', 'Docks', 'Buoys', 'Wharfs', 'Boats', 'Pilings'], and this function cannot be performed by these tools: ['Microcontroller', 'Strain-Gauge', 'Circular-Saw', 'Descenders', 'Sticky-Notes', 'Socket']. What function it may be? Can Piers be used to perform this function? Can Clamps be used to perform this function?
There is a function that can be performed by these tools: ['Class', 'File', 'Float', 'Boolean', 'Tuple', 'List'], and this function cannot be performed by these tools: ['Optical-Disc', 'Recording-Software', 'Flash-Drive', 'Flagpole', 'Rocking-Horse', 'Desk']. What function it may be? Can String be used to perform this function? Can Fabric be used to perform this function?
There is a function that can be performed by these tools: ['Desktop-Computer', 'Laptop', 'Microcontroller', 'Drone', 'Smartphone', 'Robot'], and this function cannot be performed by these tools: ['Golf-Ball', 'Dice-Shaker', 'Vice', 'Ceiling', 'Garage-Door-Lock', 'Robot-Vacuum']. What function it may be? Can Tablet be used to perform this function? Can Yarn be used to perform this function?
There is a function that can be performed by these tools: ['Pencil', 'Chisel', 'Hammer', 'Hacksaw', 'Screwdriver', 'File'], and this function cannot be performed by these tools: ['Clay', 'Luggage-Lock', 'Table-Saw', 'Cheese', 'Desktop-Computer', 'LED-Lights']. What function it may be? Can Drill-Bit be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Sensor', 'Microcontroller', 'Computer', 'GPS-Tracker', 'Robot', 'Raspberry-Pi'], and this function cannot be performed by these tools: ['Stopwatch', 'Robot-Vacuum', 'Excel-Spreadsheet', 'Magnetic-Tape', 'Joystick', 'Laptop']. What function it may be? Can Drone be used to perform this function? Can Plate be used to perform this function?
There is a function that can be performed by these tools: ['Computer', 'Drone', 'Microcontroller', 'Sensor', 'Robot', 'GPS-Tracker'], and this function cannot be performed by these tools: ['Laptop', 'Joystick', 'Magnetic-Tape', 'Excel-Spreadsheet', 'Robot-Vacuum', 'Plate']. What function it may be? Can Raspberry-Pi be used to perform this function? Can Stopwatch be used to perform this function?
There is a function that can be performed by these tools: ['Desk', 'Cabinet', 'Floor', 'Wall', 'Door', 'Bookshelf'], and this function cannot be performed by these tools: ['Thimble', 'Diaphragm', 'Table-Saw', 'API-Endpoints', 'Cabinet-Handle', 'Raspberry-Pi']. What function it may be? Can Chair be used to perform this function? Can Drill-Press be used to perform this function?
There is a function that can be performed by these tools: ['Audio-Interface', 'Mouse', 'Monitor', 'Cables', 'Microphone', 'Speakers'], and this function cannot be performed by these tools: ['Scissor-Lift', 'Storage-Device', 'Pulley', 'Graph-Paper', 'Ribbon', 'Netting']. What function it may be? Can Recording-Software be used to perform this function? Can Seam-Ripper be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Drill-Bit', 'File', 'Pencil', 'Hammer', 'Hacksaw'], and this function cannot be performed by these tools: ['Clay', 'Luggage-Lock', 'Table-Saw', 'LED-Lights', 'Desktop-Computer', 'Cheese']. What function it may be? Can Screwdriver be used to perform this function? Can Padlock be used to perform this function?
There is a function that can be performed by these tools: ['Screwdriver', 'File', 'Chisel', 'Hacksaw', 'Hammer', 'Drill-Bit'], and this function cannot be performed by these tools: ['Desktop-Computer', 'LED-Lights', 'Luggage-Lock', 'Padlock', 'Cheese', 'Clay']. What function it may be? Can Pencil be used to perform this function? Can Table-Saw be used to perform this function?
There is a function that can be performed by these tools: ['Paper-Clip', 'Highlighter', 'Pen', 'Scissors', 'Stapler', 'Glue-Stick'], and this function cannot be performed by these tools: ['Screwdriver-Bit', 'Bench', 'USB-Mouse', 'Tightrope', 'Memory-Card', 'Jigsaw']. What function it may be? Can White-Out be used to perform this function? Can Calculator be used to perform this function?
There is a function that can be performed by these tools: ['Scanner', 'Speakers', 'Webcam', 'Microphone', 'Monitor', 'Mouse'], and this function cannot be performed by these tools: ['CSV-File', 'Door', 'Pressure-Gauge', 'Leather', 'Paint-Palette', 'Tow-Truck']. What function it may be? Can Gamepad be used to perform this function? Can Smartwatch be used to perform this function?
There is a function that can be performed by these tools: ['Piers', 'Wharfs', 'Docks', 'Buoys', 'Boats', 'Floating-Logs'], and this function cannot be performed by these tools: ['Strain-Gauge', 'Socket', 'Circular-Saw', 'Sticky-Notes', 'Clamps', 'Microcontroller']. What function it may be? Can Pilings be used to perform this function? Can Descenders be used to perform this function?
There is a function that can be performed by these tools: ['Chisel', 'Screwdriver', 'File', 'Pencil', 'Hacksaw', 'Hammer'], and this function cannot be performed by these tools: ['Padlock', 'Luggage-Lock', 'Cheese', 'Table-Saw', 'Desktop-Computer', 'Clay']. What function it may be? Can Drill-Bit be used to perform this function? Can LED-Lights be used to perform this function?
There is a function that can be performed by these tools: ['Plank', 'Rocking-Horse', 'Ruler', 'Scale', 'Stool', 'See-Saw'], and this function cannot be performed by these tools: ['Processor', 'Web-Pages', 'Class', 'Polish-Jewelry', 'Pulley', 'Printer']. What function it may be? Can Tightrope be used to perform this function? Can Hole-Punch be used to perform this function?
There is a function that can be performed by these tools: ['Bookshelf', 'Chair', 'Bed', 'Stool', 'Couch', 'Desk'], and this function cannot be performed by these tools: ['Cane', 'Yarn', 'Robot-Arm', 'Cardboard', 'Doorknob', 'Magnetic-Tape']. What function it may be? Can Cabinet be used to perform this function? Can Mailbox-Lock be used to perform this function?
There is a function that can be performed by these tools: ['Mouse', 'Speakers', 'Audio-Interface', 'Monitor', 'Microphone', 'Cables'], and this function cannot be performed by these tools: ['Graph-Paper', 'Ribbon', 'Netting', 'Seam-Ripper', 'Storage-Device', 'Scissor-Lift']. What function it may be? Can Recording-Software be used to perform this function? Can Pulley be used to perform this function?
There is a function that can be performed by these tools: ['Cables', 'Microphone', 'Mouse', 'Audio-Interface', 'Speakers', 'Monitor'], and this function cannot be performed by these tools: ['Netting', 'Seam-Ripper', 'Storage-Device', 'Pulley', 'Graph-Paper', 'Scissor-Lift']. What function it may be? Can Recording-Software be used to perform this function? Can Ribbon be used to perform this function?
There is a function that can be performed by these tools: ['File', 'Class', 'Boolean', 'String', 'List', 'Tuple'], and this function cannot be performed by these tools: ['Recording-Software', 'Rocking-Horse', 'Fabric', 'Flash-Drive', 'Optical-Disc', 'Desk']. What function it may be? Can Float be used to perform this function? Can Flagpole be used to perform this function?
There is a function that can be performed by these tools: ['Gamepad', 'Webcam', 'Speakers', 'Scanner', 'Microphone', 'Monitor'], and this function cannot be performed by these tools: ['Paint-Palette', 'CSV-File', 'Door', 'Pressure-Gauge', 'Tow-Truck', 'Smartwatch']. What function it may be? Can Mouse be used to perform this function? Can Leather be used to perform this function?
There is a function that can be performed by these tools: ['Ruler', 'Scale', 'Tightrope', 'Rocking-Horse', 'See-Saw', 'Stool'], and this function cannot be performed by these tools: ['Hole-Punch', 'Polish-Jewelry', 'Web-Pages', 'Class', 'Pulley', 'Processor']. What function it may be? Can Plank be used to perform this function? Can Printer be used to perform this function?
There is a function that can be performed by these tools: ['Buoys', 'Wharfs', 'Piers', 'Docks', 'Pilings', 'Boats'], and this function cannot be performed by these tools: ['Socket', 'Clamps', 'Circular-Saw', 'Descenders', 'Microcontroller', 'Sticky-Notes']. What function it may be? Can Floating-Logs be used to perform this function? Can Strain-Gauge be used to perform this function?
There is a function that can be performed by these tools: ['Float', 'Class', 'File', 'Tuple', 'String', 'List'], and this function cannot be performed by these tools: ['Fabric', 'Recording-Software', 'Flagpole', 'Rocking-Horse', 'Flash-Drive', 'Optical-Disc']. What function it may be? Can Boolean be used to perform this function? Can Desk be used to perform this function?
There is a function that can be performed by these tools: ['USB-Drive', 'Mouse', 'Webcam', 'Headphones', 'Keyboard', 'Monitor'], and this function cannot be performed by these tools: ['Staple-Punch', 'Compass', 'Ohmmeter', 'Dremel-Tool', 'Tug-of-War-Rope', 'Measuring-Tape']. What function it may be? Can Microphone be used to perform this function? Can Helmets be used to perform this function?
There is a function that can be performed by these tools: ['Laptop', 'Robot', 'Drone', 'Desktop-Computer', 'Microcontroller', 'Tablet'], and this function cannot be performed by these tools: ['Yarn', 'Garage-Door-Lock', 'Ceiling', 'Vice', 'Dice-Shaker', 'Robot-Vacuum']. What function it may be? Can Smartphone be used to perform this function? Can Golf-Ball be used to perform this function?
There is a function that can be performed by these tools: ['Highlighter', 'Glue-Stick', 'Paper-Clip', 'Pen', 'White-Out', 'Stapler'], and this function cannot be performed by these tools: ['Tightrope', 'USB-Mouse', 'Screwdriver-Bit', 'Memory-Card', 'Calculator', 'Jigsaw']. What function it may be? Can Scissors be used to perform this function? Can Bench be used to perform this function?
There is a function that can be performed by these tools: ['Handle', 'Slider', 'Joystick', 'Button', 'Switch', 'Pedal'], and this function cannot be performed by these tools: ['Mouse', 'Bobbins', 'Spirit-Level', 'Clamp', 'Digital-Level', 'Napkin']. What function it may be? Can Dial be used to perform this function? Can Paper be used to perform this function?
There is a function that can be performed by these tools: ['Smartwatch', 'Smart-Speaker', 'Smartphone', 'Printer', 'Smart-TV', 'Tablet'], and this function cannot be performed by these tools: ['Sharpener', 'Refrigerator', 'Rugby-Ball', 'Needle', 'Staple-Punch', 'Polish-Flag']. What function it may be? Can Laptop be used to perform this function? Can Sound-Card be used to perform this function?
There is a function that can be performed by these tools: ['Pliers', 'Rope', 'Saw', 'Drill', 'Hammer', 'Crowbar'], and this function cannot be performed by these tools: ['Buoys', 'Wharfs', 'Boolean', 'Door', 'Rug', 'Flash-Memory-Card']. What function it may be? Can Tape-Measure be used to perform this function? Can Scissors be used to perform this function?