Toggle navigation
Home
Services
Business Consulting
Odoo
Pivot88
FrePPLe
Cloud SLA
Packages
Building Management
E-commerce
Human Resource
Accounting Indonesia
Events
About Us
About Us
Join Us
Partner with Us
Our Client
Contact Us
Help
My Cart
Sign in
Logical Test - Q1 2018
Logical Test
1. What is the output of:
*
100 50 30
50 30 100
50 30 50
I do not know
2. What is the output of:
*
11
3
16
17
I do not know
3. What is the output of:
*
1
2
3
4
I do not know
4. Find the next letter of: G, H, I, M, N, J, K, L, M, N, …., ….
*
M, N, O
P, Q, R
G, H, I
I do not know
5.What is the output of:
*
100, 101, 102
98, 97, 100
100, 98, 97
102, 101, 100
I do not know
6. Check this geometry sequence
*
40
60
84
112
I do not know
7. What is the result of: print([i+j for i in "abc" for j in "def"])
*
[‘da’, ‘ea’, ‘fa’, ‘db’, ‘eb’, ‘fb’, ‘dc’, ‘ec’, ‘fc’]
[[‘ad’, ‘bd’, ‘cd’], [‘ae’, ‘be’, ‘ce’], [‘af’, ‘bf’, ‘cf’]]
[[‘da’, ‘db’, ‘dc’], [‘ea’, ‘eb’, ‘ec’], [‘fa’, ‘fb’, ‘fc’]]
[‘ad’, ‘ae’, ‘af’, ‘bd’, ‘be’, ‘bf’, ‘cd’, ‘ce’, ‘cf’].
8. What is the output of this code:
*
1
2
0
An exception is thrown
I do not know
9. What is the output of:
*
23455
12345
23451
I do not know
10. Please continue this function below to calculate n factorial. For example 5! = 5*4*3*2*1
*
num*fact(num-1)
(num-1)*(num-2)
num*(num-1)
fact(num)*fact(num-1)
I do not know
11. What is the output of following code
*
3
2
error
I do not know
12. What is the output of this code
*
[‘A’,’B’,’C’]
[‘B’,’C’,’A’]
[5,7,9]
[9,5,7]
I do not know
13. What is the value of X here 20 40 120 [X] 720
*
360
270
300
240
280
I do not know
14. What is the output of this code:
*
20
0
10
I do not know
15. What is the output of this code
*
PBABCCDCD
PABACDCDC
PAABCCCD
I do not know