Labour Day Special 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exams65

Looker LookML Developer Exam Question and Answers

Looker LookML Developer Exam

Last Update Apr 27, 2024
Total Questions : 50

We are offering FREE LookML-Developer Google exam questions. All you do is to just go and sign up. Give your details, prepare LookML-Developer free exam questions and then go for complete pool of Looker LookML Developer Exam test questions that will help you more.

LookML-Developer pdf

LookML-Developer PDF

$35  $99.99
LookML-Developer Engine

LookML-Developer Testing Engine

$42  $119.99
LookML-Developer PDF + Engine

LookML-Developer PDF + Testing Engine

$56  $159.99
Questions 1

A developer wants tocreate a measure that shows the item count broken out by category. When a second, more granular dimension is added to the same query, the count broken out by category should still represent the original aggregation and be duplicated on each line. The business wants this “count” in “category” available in the Explore section without any additional work done by the end user. For example:

The Count column represents the count for each combination of Category and Item.

The Count in Category column represents the count for each Category only.

How can the developer address this need with a LookML object?

Options:

A.  

Create a measure filtered on Category, and make the filter value controlled by a parameter.

B.  

Calculate the measure using a derived table, and then join that derived table back into the Explore.

C.  

Create a measure with type: sum_over_dimension, and make the dimension value controlled by a parameter.

D.  

Calculate the overall count using table calculations in the Explore.

Discussion 0
Questions 2

Users report that the main dashboard has been slow toshow results.

Which two options should the developer evaluate to improve dashboard performance? (Choose two.)

Options:

A.  

Number of databases used by dashboard elements

B.  

Number of queries used by the dashboard

C.  

Ratio of visualizations to text tiles

D.  

Format used to deliver these reports

E.  

Amount of data rendered for each query

Discussion 0
Questions 3

Users have built a popular dashboard and want to have change management built in for any edits made to the dashboard. The developer sets up version control for the model on which the dashboard isbased.

What should the developer build to meet the business requirement?

Options:

A.  

A native derived table based on the dashboard.

B.  

A dashboard LookML file included in the project.

C.  

A link to the dashboard included in the project.

D.  

An Explore LookML file based on the dashboard.

Discussion 0
Questions 4

A developer commits changes after adding LookML for a new measure. Upon pulling from production, the developer notices the following lines in the LookML:

Options:

A.  

Remove “<<<<<< HEAD”, “======”, and “>>>>>> branch ‘master’”

B.  

Remove “<<<<<< HEAD”, “======”, and everything following “======”

C.  

Remove everything between “<<<<<< HEAD” and “======”, and “>>>>>> branch ‘master’”

D.  

Remove everything between “<<<<<< HEAD” and “>>>>>> branch ‘master’”

Discussion 0
Questions 5

A developer has a persistent derived table view called user_facts that contains aggregated data for each user. The developer needs to query the data from this table in another derived table view called user_region_facts.

Which strategy should the developer use to write the query for user_region_facts that will leverage the existing derived table?

Options:

A.  

Use ${user_facts.SQL_TABLE_NAME} to reference the user_facts derived table.

B.  

Copy the name of the database table inthe scratch schema for the user_facts derived table.

C.  

Writhe the query form user_facts into a common table expression (WITH user_facts AS...).

D.  

Write a subquery in the FROM clause and alias with ${user_facts}.

Discussion 0
Questions 6

The developer is creating an Explore that includes the product users, and orders views that will meet the following guidelines.

Joins between the orders and users views should not incur high performance costs.

Users of this Explore will primarily be looking at data from the orders view.

Users of this Explore should only be able to see orders from the retailer “Fashion.ly”.

The onlyfield the users need from the products view is product.name.

Which LookML should the developer use?

A)

B)

C)

D)

Options:

A.  

Option A

B.  

Option B

C.  

Option C

D.  

Option D

Discussion 0
Questions 7

After validating LookML code, a developer receives the following error message:

“Unknown or Inaccessible Field users.name”

What is causing this error?

Options:

A.  

There is a missing join.

B.  

The field is set to “hidden”.

C.  

The join relationship is incorrect.

D.  

The field uses incorrect SQL syntax.

Discussion 0