Download as pdf or txt
Download as pdf or txt
You are on page 1of 22

12/12/22, 11:50 PM Assessment Review - AlmaBetter

Advanced Analytics Framework

Below is a scored review of your assessment. All questions are shown.

Correct Answer

Partially Correct

Incorrect Answer

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 1/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

21 Table Employee has 10 records. It has a non-NULL SALARY column which is also UNIQUE. The SQL
statement SELECT COUNT(*) FROM Employee WHERE SALARY > ANY (SELECT SALARY FROM
EMPLOYEE); prints:-

Your Answer
9

Correct Answer
9

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 2/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

22 Which statement about the TRUNCATE TABLE statement is true?

Your Answer
It deletes rows one by one on tables with foreign key constraints.

Correct Answer
It always first drops, then re-creates a new table.

Explanation
You're incorrect.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 3/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

23 Find the names of these cities with temperature and condition whose condition is neither sunny nor
cloudy.

Your Answer
SELECT city, temperature, condition FROM weather WHERE condition NOT IN (‘sunny’, ‘cloudy’)

Correct Answer
SELECT city, temperature, condition FROM weather WHERE condition NOT IN (‘sunny’, ‘cloudy’)

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 4/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

24 How can a SQL developer add a key on a table?

Your Answer
While creating a table

Correct Answer
All of the Mentioned

Explanation
You're incorrect

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 5/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

25 Which function will you use to enter current time in a woksheet cell?

Your Answer
( =now() )

Correct Answer
( =now() )

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 6/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

26 If we do want to eliminate duplicates, we use the keyword __________in the aggregate expression.

Your Answer
Distinct

Correct Answer
Distinct

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 7/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

27 Which of the following functions is/are present in Excel?

Your Answer
Engineering Functions
Logical Functions
Statistical Functions

Correct Answer
Engineering Functions
Financial Functions
Logical Functions
Statistical Functions

Explanation
Sorry, you have selected the wrong answer.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 8/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

28 To copy cell contents using drag and drop press the

Your Answer
Ctrl key

Correct Answer
Ctrl key

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 9/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

29 To set up an indicator, it is mandatory to have a goal?

Your Answer
True

Correct Answer
False

Explanation
None.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 10/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

30 To save a workbook, you:

Your Answer
Click the save button on the standard toolbar from the menu

Correct Answer
Click the save button on the standard toolbar from the menu

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 11/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

31 Which of the following statement is correct to display all the cities with the condition, temperature,
and humidity whose humidity is in the range of 60 to 75 from the 'whether' table?

Your Answer
SELECT * FROM weather WHERE humidity BETWEEN 60 AND 75

Correct Answer
SELECT * FROM weather WHERE humidity BETWEEN 60 AND 75

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 12/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

32 Which area in an excel window allows entering values and formulas?

Your Answer
Standard toolbar

Correct Answer
Formula bar

Explanation
Sorry, you have selected the wrong answer.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 13/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

33 You can print only an embedded chart by

Your Answer
a and c

Correct Answer
a and c

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 14/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

34 ______ is NOT a type of constraint in SQL language?

Your Answer
ALTERNATE KEY

Correct Answer
ALTERNATE KEY

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 15/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

35 Without using the mouse or the arrow keys, what is the fastest way of getting to cell A1 in a
spreadsheet?

Your Answer
Press Ctrl +Home

Correct Answer
Press Ctrl +Home

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 16/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

36 SELECT on a MERGE table is like _____________.

Your Answer
UNION ALL

Correct Answer
UNION ALL

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 17/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

37 What is the advantage of using a temporary table instead of a heap table?

Your Answer
The temporary table will be dropped as soon as your session disconnects.

Correct Answer
The temporary table will be dropped as soon as your session disconnects.

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 18/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

38 Which of these is a quick way to copy formatting from a selected cell to two other cells on the same
worksheet?

Your Answer
Click format painter on the Formatting toolbar twice then click in each cell you want to copy the
formatting to

Correct Answer
Click format painter on the Formatting toolbar twice then click in each cell you want to copy the
formatting to

Explanation
Correct.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 19/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

39 You can open the scenario Manager dialog box by choosing scenarios from the ….. menu.

Your Answer
Tools

Correct Answer
Tools

Explanation
You are correct!

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 20/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

40 Which of the following statement(s) is/are true about “HAVING” and “WHERE” clause in SQL?

Your Answer
WHERE” is always used before “GROUP BY” and HAVING after “GROUP BY”
“WHERE” is used to filter rows but “HAVING” is used to filter groups
“WHERE” is used to filter groups but “HAVING” is used to filter rows

Correct Answer
WHERE” is always used before “GROUP BY” and HAVING after “GROUP BY”
“WHERE” is used to filter rows but “HAVING” is used to filter groups

Explanation
Sorry! This needs work.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 21/22
12/12/22, 11:50 PM Assessment Review - AlmaBetter

Page 2 of 4

Summary Prev Page Next Page

I'm done.

Software by

Version 11.2

Privacy Policy. Assessment content is copyright 2022, AlmaBetter.

https://almabetter.onlinetests.app/Assess.aspx?guid=C6BF54BE87AF4299B9E6A3FE2AF46322&a=R1 22/22

You might also like