Upload abstract reasoning - Sheet1.csv
Browse files
abstract reasoning - Sheet1.csv
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Reverse the order of the following string: Hello,olleH
|
2 |
+
"Arrange the following numbers in descending order: 8, 6, 2, 10","10, 8, 6, 2"
|
3 |
+
"Identify the odd one out from the following list of Canadian provinces: Alberta, Manitoba, Ontario, Nunavut",Nunavut
|
4 |
+
"Starting with the string coding is fun, append ! to the end of the string.",coding is fun!
|
5 |
+
Extract the first word from the following sentence: Lets get started.,Lets
|
6 |
+
Extract the last two characters from the following string: Hello,lo
|
7 |
+
Extract the first number from the following string: My number is 24398,2
|
8 |
+
Extract the full name from the following string: My name is John Smith,John Smith
|
9 |
+
"Identify the longest word from the following list: jump, turtle, sky, red",turtle
|
10 |
+
Check if the year 2030 is a leap year.,TRUE
|
11 |
+
"Concatenate the following two strings: Hello + , + World","Hello, World"
|
12 |
+
Extract the last character from the following string: Test,t
|
13 |
+
Calculate the length of the following string: Programming,11
|
14 |
+
Find the index of the first occurrence of a in the following string: This is a test,5
|
15 |
+
Change all letters to upper case in the following string: hello world,HELLO WORLD
|
16 |
+
Check if the time 08:30 is before 09:00,TRUE
|
17 |
+
Extract the extension from the following file name: data.csv,csv
|
18 |
+
Capitalize the first letter of each word in the following string: hello world,Hello World
|
19 |
+
Remove all whitespace from the following string: coding is fun,codingisfun
|
20 |
+
"Extract the second word from the following string: Do or do not, there is no try.",or
|
21 |
+
Reverse the order of the words in the following string: Python is awesome,awesome is Python
|
22 |
+
Count the number of words in the following string: hello world,2
|
23 |
+
Extract all characters after the first occurrence of a in the following string: This is a test,test
|
24 |
+
"Calculate the sum of the following numbers: 10, 20, 30",60
|
25 |
+
Check if the string abc is an anagram of bac,TRUE
|
26 |
+
"Calculate the average of the following numbers: 10, 20, 30",20
|
27 |
+
Check if the time 08:00 is before 07:00,FALSE
|
28 |
+
Convert the following string to lower case: HELLO,hello
|
29 |
+
Extract the subdomain name from the following URL: https://docs.google.com,docs
|
30 |
+
"Calculate the maximum of the following numbers: 10, 20, 30",30
|
31 |
+
Reverse the characters in each word of the following sentence: This is a test,sihT si a tset
|
32 |
+
Check if the string YES is contained in the following sentence: This task requires a YES or NO answer.,TRUE
|
33 |
+
Extract the second and third letters from the following string: Hello,el
|
34 |
+
Change all characters in the following string to upper case: example,EXAMPLE
|
35 |
+
Extract the last three digits from the following number: 5213998,998
|
36 |
+
"Reverse a list of words: apple, banana, cherry, date","date, cherry, banana, apple"
|
37 |
+
Reverse a phone number: 123-456-7890,0987-654-321
|