You are on page 1of 13

5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

Data Analyst Test<>AdvaRisk Total points 4/18

I've invited you to fill out a form:


Data AnalystTest <>AdvaRisk
Hello All,

There are 3 sections total question 20


1. SQL + Python
2. Data Interpretation
3. Quantitative Analysis

Total time to solve the test is 45 minutes. Please note that you are not given 15 minutes for
each section.
Each question carries 1 mark. There is no negative marking.
It is mandatory to answer all the questions
You will be allowed to take the test only once. Hence, post submitting the test please note
that you will not be allowed to take the test again. You will not be allowed to submit the form
without filling your Name, Email id, Mobile No. Hence, please be careful of that as well.

From the back-end we will stop accepting responses. Hence, please submit it in order to be
on the safer side. Needless to say selection will be purely on merit.

Good Luck!!

0 of 0 points

Name *
Nikhil Sangle

Mobile no *
7745823497

Email Id *
nikhilsangle96@gmail.com

SQL + Python 0 of 11 points

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 1/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

1. What will be the output of the following Query? 0/1

15

13

12

10

Correct answer

13

2. Consider the below book table for answering: 0/1

Title of the two most expensive books

Title of the three most inexpensive book

Title of the third most expensive book

Title of the three most expensive book

Correct answer

Title of the three most expensive book

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 2/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

3. Consider the below schema for answering the output: 0/1


Employee(Empid,EmployeeName, EMPDept), Customer(Custid,
CustName, SalesRepid, Rating)

Name of all the employee with none of their customers having a 'Best' Rating

Name of all the employee with at least one of their customers having a 'Best' Rating

Name of all the employee with all of their customers having a 'Best' Rating

Name of all the employee with at mostone of their customers having a 'Best' Rating

Correct answer

Name of all the employee with all of their customers having a 'Best' Rating

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 3/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

4. Consider the below schema for answering the output: 0/1


Employee(Name, Gender, Salary, DeptName)

Average salary is more than the average salary in the company

Average salary of female employee is more than the average salary of employee
in the same department

Avarage salary of female employees is more than the average salary of all female
employee in the company

Average salary of female employee is more than the average salary in the company

Correct answer

Average salary of female employee is more than the average salary in the company

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 4/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

5. Consider the below CASE statement for answering the output: 0/1

Error

Correct answer

6. Select query which will help us giving count NULL from the 0/1

SELECT COUNT(1) NULLCount FROM CountNULL WHERE ID IS NULL

SELECT SUM( CASE WHEN ID IS NULL THEN 1 ELSE 0 END ) NULLCount FROM
CountNULL

SELECT COUNT(*)-COUNT(ID) AS COUNTNULL FROM #COUNTNULL

SELECT CAST (COUNT(ISNULL(ID,-1)) AS VARCHAR(10)) NULLCOUNT FROM


COUNTNULL

Correct answer

SELECT SUM( CASE WHEN ID IS NULL THEN 1 ELSE 0 END ) NULLCount FROM
CountNULL

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 5/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

7. From given below table write a query to find the max & min value of continuous
Sequence in each group.

8. Write a query to display student_name, total_marks, prev_yr_marks whose


total_marks are greater than or equal to the previous year ?

select student_name, total_marks, prev_yr_marks from table where total_marks

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 6/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

9. What will be the row output of the following Query Refer below table 0/1

Correct answer

10. Which among them is incorrect for set s ={20,30,20,10} 0/1

Len(s)

Sum(s)

Print(s[2])

Max(s)

Correct answer

Print(s[2])

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 7/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

11. Structure of data file stored in DBMS catalogue separately from the 0/1
access programmers?

Program data independance

Program operation dependance

Program operation independance

program data dependance

Correct answer

Program data independance

12. Is following code valid ? 0/1

Yes, 7 is printed

Error, element of a sset can't be printed

Error, subsets aren't allowed

Yes,{7,5} are printed

Correct answer

Error, subsets aren't allowed

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 8/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

13. What will be the output of the following code 0/1

B A

Error

Correct answer

Data Interpretation 3 of 3 points

14. Study the following chart and answer the below questions

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHmu… 9/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

What is the average number of people who voted at centres B, C and D? 1/1

1768

1934

1864

1648

1580

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHm… 10/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

15.What is the ratio of the number of woman from city R to that city from 1/1
city T?

8401:9135

9124:10131

7325:846

6487:7758

16. Using Above Table of Question 15 <> Which City has Lowest number 1/1
of Children

Quantitative Section 1 of 4 points

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHm… 11/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

17. By walking 3/2 of his usual speed a student reach his school 30 min 1/1
late. Find his usual time?

none

10 min

20 min

25 min

18. A batsman makes a score of 85 in his 17th inning thereby increase his 0/1
average by 3. What is his average after 17th inning? He has never been
"not out".

28

37

35

43

Correct answer

37

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHm… 12/13
5/1/22, 8:37 AM Data Analyst Test<>AdvaRisk

19. Ratio of present ages of Nikhil and Rahul is 2:1. Ratio of their ages after 0/1
30 years will be 7:6 Find the present age of Nikhil

12 years

13 years

8 years

10 years

Correct answer

12 years

20. A man sold two houses for Rs.3840 each.On one he lost 20% and on 0/1
another 32% Find real gain or loss.

Rs. 525 loss

Rs.300 profit

none

Rs.400 profit

Correct answer

Rs. 525 loss

This form was created inside SLO Technologies Private Limited.

Forms

https://docs.google.com/forms/d/e/1FAIpQLSeTpl0SPjim6yw_Nkfy-c-1BD9kTKefu3F09IIQUmHaGHHjJg/viewscore?viewscore=AE0zAgADHm… 13/13

You might also like