MCQs > IT & Programming > Shopify MCQs > Basic Shopify MCQs

Basic Shopify MCQ

1. Liquid .............. are the programming logic that tells templates what to do. ............. are wrapped in:

Answer

Correct Answer: tags

Note: This Question is unanswered, help us to find answer for this one

2.

How many results are you able to output per page with the "paginate" tag?

Answer

Correct Answer: between 1 and 50

Note: This Question is unanswered, help us to find answer for this one

3.

What is the output of the following code?

{% assign fruits = "orange apple banana apple orange" %} {{ fruits | split: ' ' | uniq | join: ' ' }}

Answer

Correct Answer: orange apple banana

Note: This Question is unanswered, help us to find answer for this one

4.

Shopify liquid get related blog posts?

Answer

Correct Answer: ul> {% for article in blogs.blog.articles %} {% if article.tags contains product.handle %} li>a href="{{ article.url }}">p>{{ article.title }}/p>/a>/li> {% else %} li>No related blog posts!/li> {% endif %} {% endfor %} /ul>

Note: This Question is unanswered, help us to find answer for this one

5.

Which of the following code is correct of Shopify cycle iteration to simplify?

Answer

Correct Answer: {% for i in (1..20) %} <div class="{% if forloop.index < 5 %} class1{% endif %}{% if forloop.index >=5 and forloop.index < 9 %} class2{% endif %}{% if forloop.index >=9 and forloop.index <13 %}class3{% endif %}">class{{ forloop.index }}</div> {% endfor %}

Note: This Question is unanswered, help us to find answer for this one

6.

Which of the following page fields available to use?

Answer

Correct Answer: handle

Note: This Question is unanswered, help us to find answer for this one

7.

Shopify Liquid error: Memory limits exceeded?

Answer

Correct Answer: <div class="rte"> {{ page.content }} <ul class="vendor-list block-grid three-up mobile one-up"> {% for product_type in shop.types %} {% assign type = product_type | strip | escape | handleize %} {% assign collection = collections[type] %} {% if collection.handle != '' %} <li class="vendor-list-item"><a href="/collections/{{ collection.handle }}">{{ product_type }}</a></li> {% endif %} {% endfor %} </ul> </div>

Note: This Question is unanswered, help us to find answer for this one

8.

In Shopify, you can display money and currencies in different ways to make it easier for your customers to read monetary amounts in your store. Which of the following formats will display the amount 1134.65 as 1.134,65

Answer

Correct Answer: {{ amount_with_comma_separator }}

Note: This Question is unanswered, help us to find answer for this one

9.

Shopify provides all its customers with a world class __ run by Fastly at no additional charge. This means that your Shop will be fast around the globe, even in remote areas like New Zealand and South Africa despite the Shopify servers being in North America. Faster load times have shown over and over again to lead to more sales, so this is a big win for everyone.

Answer

Correct Answer: CDN

Note: This Question is unanswered, help us to find answer for this one

10.

How do change the title-Attribute in Shopify's liquid?

Answer

Correct Answer: {{ tag | capitalize | link_to_tag: tag, 'Title Here' }}

Note: This Question is unanswered, help us to find answer for this one

11.

In Liquid, what will get printed in the code below ?

{% if true or false and false %}

Hello world!

{% endif %}

 

Answer

Correct Answer: Hello world!

Note: This Question is unanswered, help us to find answer for this one

12.

You can activate SSL certificates in your Shopify admin to encrypt your online storefront's content and publish it securely using HTTPS instead of HTTP. Which of the following is NOT a benefit for using SSL in your online store ?

Answer

Correct Answer: Improve security of credit card information locally stored in the customers browser.

Note: This Question is unanswered, help us to find answer for this one

13.

Which of the following is the correct way of using SCSS/SASS in Shopify?

Answer

Correct Answer: {{ 'styles.scss.css' | asset_url | stylesheet_tag }}

Note: This Question is unanswered, help us to find answer for this one

14.

Which of the following article fields are available to use?

Answer

Correct Answer: title
body
author

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

15.

The img_tag filter can be used on which of the following objects? (choose all that apply)

Answer

Correct Answer: product
variant
line_item
collection

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

16.

Which of the following page fields can be used? (choose all that apply)

Answer

Correct Answer: handle
body
author

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

17.

Which of the following product fields are available to use?

Answer

Correct Answer: Product_type
Variant

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

18.

Shopify Payments provides following payment gateways :

Answer

Correct Answer: More than 60 credit card gateways

Note: This Question is unanswered, help us to find answer for this one

19.

In the following Liquid code, what will get printed, considering fulfillment.tracking_numbers is nil ? {% if fulfillment.tracking_numbers %} Tracking number: {{ fulfillment.tracking_numbers }} {% endif %}

Answer

Correct Answer: Nothing

Note: This Question is unanswered, help us to find answer for this one

20.

What is the purpose of adding the liquid extension to your assets?

Answer

Correct Answer: The liquid extension allows you to use liquid in your js and css files.

Note: This Question is unanswered, help us to find answer for this one

21.

In the following Liquid code, what will get displayed, considering that customer.email has the value test@shopify.com.org ? {% if customer.email contains "shopify.com" %} Hey there, Shopify employee! {% endif %}

Answer

Correct Answer: Hey there, Shopify employee!

Note: This Question is unanswered, help us to find answer for this one

22.

You want to use external JS which you already uploaded in the assets folder. How do you link it to the page on which you want to use it?

Answer

Correct Answer: {{ 'custom.js' | asset_url | script_tag }}

Note: This Question is unanswered, help us to find answer for this one

23.

In Liquid, what will get printed from the following code, considering product.tags = 'a', 'b', 'c' ? {{ product.tags | join: ', ' }}

Answer

Correct Answer: a, b, c

Note: This Question is unanswered, help us to find answer for this one

24.

Adding a Custom API Function After Shopify Checkout?

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

25.

In Shopify, when you get a theme from the theme store that is offered in many styles, one of those styles will be applied by default. To change your theme style, go to the "Customize theme page", then click in:

Answer

Correct Answer: Styles

Note: This Question is unanswered, help us to find answer for this one

26.

In Shopify, many themes include styles that let you quickly set many theme options at once. By choosing a style, you can quickly change the appearance of your current theme.

Answer

Correct Answer: preset

Note: This Question is unanswered, help us to find answer for this one

27.

What is the main template file used by default?

Answer

Correct Answer: theme.liquid

Note: This Question is unanswered, help us to find answer for this one

28.

Which of the following is the correct way to create variable?

Answer

Correct Answer: {% assign foo = "bar" %}

Note: This Question is unanswered, help us to find answer for this one

29.

_____is a tailor-made theme for the modern apparel store. Features include a mobile-first responsive design, unique typography, an edge-to-edge homepage slideshow, a dynamic product grid, and product pages with at-a-glance availability for each size.

Answer

Correct Answer: Brooklyn

Note: This Question is unanswered, help us to find answer for this one

30.

When uploading a theme to Shopify, there's a _ MB file size limit. If you get an error uploading a new theme, make sure that the .zip file is smaller than the MB file size limit.

Answer

Correct Answer: 20

Note: This Question is unanswered, help us to find answer for this one

31.

In Liquid, the _____ filter removes any duplicate instances of elements in an array.

Answer

Correct Answer: uniq

Note: This Question is unanswered, help us to find answer for this one

32.

Regarding Liquid global objects, the ____ returns the set of the menus and links in your store.

Answer

Correct Answer: linklists

Note: This Question is unanswered, help us to find answer for this one

33.

From which folder of a theme does "include" tag inserts code?

Answer

Correct Answer: snippets

Note: This Question is unanswered, help us to find answer for this one

34.

Which of the following is the correct way to change a Shopify theme name?

Answer

Correct Answer: Change the name of the folder containing the theme before you upload the theme to Shopify.

Note: This Question is unanswered, help us to find answer for this one

35.

Which of the following correct way to change a shopify theme name?

Answer

Correct Answer: Found it! The theme name that appears in the theme options is defined by the theme's folder's name. So if you want to give your theme a custom name, change the name of the folder before you upload the theme to Shopify.

Note: This Question is unanswered, help us to find answer for this one

36.

Which of the following is NOT a theme made by Shopify ?

Answer

Correct Answer: Rising

Note: This Question is unanswered, help us to find answer for this one

37.

In Shopify, you can import a theme by uploading a __ file containing a theme.

Answer

Correct Answer: .zip

Note: This Question is unanswered, help us to find answer for this one

38.

For themes with , Shopify's theme editor offers an easier way to customize your store's home page content. You can add, reorder, and remove content on your store's homepage using ), which let you customize your store's design and content in a quick and visual way.

Answer

Correct Answer: Sections

Note: This Question is unanswered, help us to find answer for this one

39.

A responsive theme's layout adjusts to your device's _____. It provides an optimal viewing experience, easy reading, and accessible navigation on mobile phones, tablets, laptop and desktop computers.

Answer

Correct Answer: screen size

Note: This Question is unanswered, help us to find answer for this one

40.

Your store's controls all aspects of your online store's appearance and layout. You can manage from the _____ page of your Shopify admin.

Answer

Correct Answer: theme

Note: This Question is unanswered, help us to find answer for this one

41.

In Liquid, the _____ tag loops through a group of strings and outputs them in the order that they were passed as parameters. Each time an iteration is called, the next string that was passed as a parameter is output.

 

Answer

Correct Answer: cycle

Note: This Question is unanswered, help us to find answer for this one

42.

Which of the following is not true in regards to Liquid objects?

Answer

Correct Answer: To output an object's attribute, wrap the object's name in %% and %%.

Note: This Question is unanswered, help us to find answer for this one

43.

Number type in Liquid includes the following: Check all that apply.

Answer

Correct Answer: floats
integer

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

44.

Liquid objects can be which of the following datatypes? Check all that apply.

Answer

Correct Answer: String
Boolean
EmptyDrop
Nil

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

45.

In Liquid, _____ are simple methods that modify the output of numbers, strings, variables and objects. They are placed within an output tag {{ }} and are denoted by a pipe character |.

Answer

Correct Answer: Filters

Note: This Question is unanswered, help us to find answer for this one

46.

Control flow tags create conditions that decide whether blocks of Liquid code get executed. Which of the following is NOT a control tag?

Answer

Correct Answer: switch

Note: This Question is unanswered, help us to find answer for this one

47.

In Shopify, Money filters format prices based on the Currency Formatting found in General Settings. Which of the following is NOT supported money filter in Liquid ?

Answer

Correct Answer: money_with_comma

Note: This Question is unanswered, help us to find answer for this one

48.

"Accepts an array element's attribute as a parameter and creates a string out of each array element's value." Which Liquid filter is described above ?

Answer

Correct Answer: map

Note: This Question is unanswered, help us to find answer for this one

49.

What is the correct way to load full-width.liquid template?

Answer

Correct Answer: {% layout 'full-width' %}

Note: This Question is unanswered, help us to find answer for this one

50.

In Liquid, which of the following is NOT a basic operator ?

Answer

Correct Answer: is

Note: This Question is unanswered, help us to find answer for this one

51.

Variable Tags are used to create new Liquid variables. Which of the following is NOT a variable tag ?

Answer

Correct Answer: duplicate

Note: This Question is unanswered, help us to find answer for this one

52.

Iteration tags repeatedly run blocks of Liquid code. Which of the following is NOT a iteration tag ?

Answer

Correct Answer: while

Note: This Question is unanswered, help us to find answer for this one

53.

What is the correct way to output next variable?

{% capture my_variable %}I am being captured.{% endcapture %}

Answer

Correct Answer: {{ my_variable }}

Note: This Question is unanswered, help us to find answer for this one

54.

What will be the output for following code: {% assign fruits = "apples, oranges, peaches, tomatoes" | split: ", " %} {% assign vegetables = "broccoli, carrots, lettuce, tomatoes" | split: ", " %} {% assign plants = fruits | concat: vegetables %} {{ plants | join: ", " }}

Answer

Correct Answer: apples, oranges, peaches, tomatoes, broccoli, carrots, lettuce, tomatoes

Note: This Question is unanswered, help us to find answer for this one

55.

Liquid uses a combination of , __, and __ to load dynamic content. They are used inside Liquid template files, which are a group of files that make up a theme.

Answer

Correct Answer: tags, objects, filters

Note: This Question is unanswered, help us to find answer for this one

56.

The following objects can be used and accessed from any file in your theme, and are defined as global objects, or global variables, EXCEPT for:

Answer

Correct Answer: session

Note: This Question is unanswered, help us to find answer for this one

57.

Consider following code , What will be output?

{{ "Ground control to Major Tom." | split: "" | reverse | join: "" }}

Answer

Correct Answer: .moT rojaM ot lortnoc dnuorG

Note: This Question is unanswered, help us to find answer for this one

58.

If you've downloaded and/or purchased a new Shopify theme for you store, you need to and it for your customers to see the changes.

Answer

Correct Answer: install | publish

Note: This Question is unanswered, help us to find answer for this one

59.

In Liquid, you can include {% ______ 'alternate' %} at the beginning of a template file to use an alternate layout file from the Layout folder of your theme. If you don't define it, the theme.liquid template file is used by default

Answer

Correct Answer: layout

Note: This Question is unanswered, help us to find answer for this one

60.

When working with theme files in Shopify, which of the following is NOT a supported operation?

Answer

Correct Answer: Sell themes

Note: This Question is unanswered, help us to find answer for this one

61.

Which of the following is not true about "decrement" tag?

Answer

Correct Answer: The initial value is 0.

Note: This Question is unanswered, help us to find answer for this one

62.

Which  conditional statement code snippet is correct?

Answer

Correct Answer: {% if template == "index" or template == "page" %} {% assign in_template = true %} {% endif %} {% if in_template and settings.slideshow_enabled %}

...
{% endif %}
{% if template == "index" or template == "page" %} {% assign in_template = true %} {% endif %} {% if in_template and settings.slideshow_enabled %}
...
{% endif %}

{% if template == "index" or template == "page" %} {% assign in_template = true %} {% endif %} {% if in_template and settings.slideshow_enabled %}
...
{% endif %}

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

63.

Handles are used to access the attributes of Liquid objects. By default, a handle is the object's title in lowercase with any spaces and special characters replaced by _____.

Answer

Correct Answer: - (hyphen)

Note: This Question is unanswered, help us to find answer for this one

64.

In Shopify, if you've changed theme files and need to revert them, you can roll back _____ files individually to a time and date before you made the changes.

Answer

Correct Answer: .liquid

Note: This Question is unanswered, help us to find answer for this one

65.

Shopify Liquid template language is written in :

Answer

Correct Answer: Ruby

Note: This Question is unanswered, help us to find answer for this one

66.

Which of the following is not existing Theme property?

Answer

Correct Answer: description

Note: This Question is unanswered, help us to find answer for this one

67.

If you have a theme on your computer that you want to install, you can upload it to your Themes page. But you can install a maximum of _____ themes in your store.

Answer

Correct Answer: 20

Note: This Question is unanswered, help us to find answer for this one

68.

Regarding themes in Shopify, what's the incorrect statement?

Answer

Correct Answer: It's possible to use themes from other platforms inside Shopify, without necessarily installing through the Theme Store.

Note: This Question is unanswered, help us to find answer for this one

69.

Wherever you sell online, you'll use your secure Shopify checkout to accept orders and take payments. You can view and update your store's checkout settings from the Checkout settings page in your Shopify admin. Which of the following is NOT supported in Shopify checkout ?

Answer

Correct Answer: Choose payment gateway

Note: This Question is unanswered, help us to find answer for this one

70.

Which of the following is the correct way to leave un-rendered code inside a Liquid template?

Answer

Correct Answer: {% comment %} ... {% endcomment %}

Note: This Question is unanswered, help us to find answer for this one

71.

Theme tags have many functions, NOT including:

Answer

Correct Answer: Converting forms into HTML tables.

Note: This Question is unanswered, help us to find answer for this one

72.

Which of the following is photography-first theme with a minimal UI that features edge-to-edge photography?

Answer

Correct Answer: Boundless

Note: This Question is unanswered, help us to find answer for this one

73.

In Shopify checkout, the order status page updates in real time as the status of the shipment changes. Possible statuses are, EXCEPT for:

Answer

Correct Answer: In Review

Note: This Question is unanswered, help us to find answer for this one

74.

Regarding features of themes in Shopify plataform, which of the following is NOT correct ?

Answer

Correct Answer: There are no themes with newsletter features in the Shopify Theme store, but it's available through 3rd-party customization.

Note: This Question is unanswered, help us to find answer for this one

75.

In Shopify , you can embed or link to other types of media in your online store including?

Answer

Correct Answer: videos
gifs

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

76.

Which of the following is correct about Shopify Liquid: Variables within Filters?

Answer

Correct Answer: {{ line_item.price | times: line_item.quantity | money }}

Note: This Question is unanswered, help us to find answer for this one

77.

Which of the following correct way of Shopify Liquid: Variables within Filters?

Answer

Correct Answer: Have you tried taking off the {{ }} on the line_item.quantity? If I recall it is a number so it should work. {{ line_item.price | times: line_item.quantity | money }}

Note: This Question is unanswered, help us to find answer for this one

78.

Any Premium or paid theme in the Shopify Theme Store allows you to _____ it on your store using the Themes page in the admin.

Answer

Correct Answer: preview

Note: This Question is unanswered, help us to find answer for this one

79.

How to use {% include ''" %} in Shopify for an app?

Answer

Correct Answer: If you want to add an Asset to a Shop when your App is installed, you have to first have the merchant approve your App for adding assets to the shop. Second, you have to install your asset, in this case 'foo.liquid'. Once it is an Asset in the shop, you could have the theme reference the asset, using include.

Note: This Question is unanswered, help us to find answer for this one

80.

Accessing forEach index inside a liquid variable?

Answer

Correct Answer: {% for item in cart.items %} metafields[{{ item.id }}] = {{ cart.items[forloop.index0].product.metafields.abicraft | json }}; {% endfor %}

Note: This Question is unanswered, help us to find answer for this one

81.

What are the redirect properties in Shopify? (choose all that apply)

Answer

Correct Answer: Id
Target
Path

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

82.

In June 2009, Shopify launched an _____ and App Store?

Answer

Correct Answer: API platform

Note: This Question is unanswered, help us to find answer for this one

83.

Which of the following valid values for ApplicationCharge the status of the application charge?

{ "status" : "accepted" }

Answer

Correct Answer: All of the above

Note: This Question is unanswered, help us to find answer for this one

84.

In Shopify, what's the maximum page size allowed, in kilobytes ?

Answer

Correct Answer: 64

Note: This Question is unanswered, help us to find answer for this one

85.

Which of the following is NOT a supported Digital Currency ?

Answer

Correct Answer: Bitcoin

Note: This Question is unanswered, help us to find answer for this one

86.

Shopify founded by?

Answer

Correct Answer: Tobias Lütke
Scott Lake

Note: This question has more than 1 correct answers

Note: This Question is unanswered, help us to find answer for this one

87.

Because Shopify deploys your store with a CDN (Content Delivery Network), all images of the store are cached at thousands of "edge servers" around the world. Therefore Shopify has to indicate to the CDN that images have changed manually. To do this, Shopify uses the ____ filter which automatically appends "asset versions" to all urls generated. This is the ?v=1384022871 style appendages that you see all over Shopify.

Answer

Correct Answer: asset_url

Note: This Question is unanswered, help us to find answer for this one

88.

Regarding deploying Shopify sites in custom domains, choose the correct statement below.

Answer

Correct Answer: A domain purchased through Shopify must be hosted with OpenSRS for the first 60 days and cannot be transferred in this timeframe.

Note: This Question is unanswered, help us to find answer for this one

89.

All Shopify stores automatically generate a sitemap.xml file that contains links to all your products, product images, pages, collections, and blog posts. This is used by search engines like Google and Bing to quickly scan your webpages for content. Where is the sitemap.xml located based on your Shopify store's primary domain name ?

Answer

Correct Answer: yourstorename.myshopify.com/sitemap.xml

Note: This Question is unanswered, help us to find answer for this one

90.

Which one of the following is true about editing the HTML / Liquid on the checkout page in Shopify?

Answer

Correct Answer: You cannot alter any HTML or Javascript on the checkout page unless you are a Shopify Plus Member.

Note: This Question is unanswered, help us to find answer for this one

91.

How to edit the HTML / Liquid on the checkout page in Shopify?

Answer

Correct Answer: Shopify completely explains how you can override the CSS presented in the checkout on their domain so that it matches your theme. You cannot alter any HTML or Javascript. You can however alter the final step of checkout, the Thank You page. If you are Shopify Plus member, you can totally mess with checkout as they give you access to checkout.liquid

Note: This Question is unanswered, help us to find answer for this one

92.

Shopify provides all its customers with a world class __ run by Fastly at no additional charge.

Answer

Correct Answer: CDN

Note: This Question is unanswered, help us to find answer for this one

93.

In Shopify, a protocol-independent URL simply begins with ...

Answer

Correct Answer: //

Note: This Question is unanswered, help us to find answer for this one

94.

To check Shopify vendor if statement?

Answer

Correct Answer: {% if product.vendor != shop.name %}{{ product.vendor }}{% endif %} {{ product.title }}

Note: This Question is unanswered, help us to find answer for this one

95.

CDN means that all images of a store are cached at thousands of "edge servers" around the world, Shopify has to indicate to the CDN that images have changed manually. CSS often exhibits the above issue. If you reference images directly from your CSS then these urls will be static and will not carry the asset version that Shopify updates automatically. To solve this you will have to ...

Answer

Correct Answer: rename your .css file to .css.liquid and use the the `asset_url` filter

Note: This Question is unanswered, help us to find answer for this one

96. What two programming languages are used to edit a shopify webpage theme?

Answer

Correct Answer: Javascript & Liquid

Note: This Question is unanswered, help us to find answer for this one

97. True of False? Tags only show on Collection Pages.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

98. Can we display products on shopify blog?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

99. Does shopify pos work with mobile devices?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

100. True of False? You can set the administrative interface to any language you wish.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

101. True or false? Smart Collections can be formed on both products and customers.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

102. A feature that fetches and displays data on a Shopify shop page from an outside location is known as what?

Answer

Correct Answer: Application Proxy

Note: This Question is unanswered, help us to find answer for this one

103. Which of the following criteria is not available for specifying shipping rates?

Answer

Correct Answer: Location Based

Note: This Question is unanswered, help us to find answer for this one

104. If there is no badge to the left of a customer on your Orders screen in the iPhone app, the order is:

Answer

Correct Answer: Closed

Note: This Question is unanswered, help us to find answer for this one

105. When creating a Webhook for an event, which of the following URL will work properly?

Answer

Correct Answer: www.mycoolwebsite.com

Note: This Question is unanswered, help us to find answer for this one

106. How many product variants are you allowed for each product?

Answer

Correct Answer: 100

Note: This Question is unanswered, help us to find answer for this one

107. What is the name of the tool Shopify uses to prevent spam?

Answer

Correct Answer: Defensio

Note: This Question is unanswered, help us to find answer for this one

108. When should you use the "_thumb" suffix in your image file name for each image you upload to Shopify?

Answer

Correct Answer: Never, this will cause unintended issues with your picture

Note: This Question is unanswered, help us to find answer for this one

109. How can you ensure a particular image of your products gets "featured?"

Answer

Correct Answer: Simply put it at the front of the list

Note: This Question is unanswered, help us to find answer for this one

110. Which of the following is a way to edit your theme offline?

Answer

Correct Answer: Use the Textmate bundle to edit your theme inside TextMate (or E-editor on the PC) as a workaround

Note: This Question is unanswered, help us to find answer for this one

111. How many link lists are given to every shop by default?

Answer

Correct Answer: Two: A main menu and a footer

Note: This Question is unanswered, help us to find answer for this one

112. What is the Shopify Job Board primarily used for?

Answer

Correct Answer: Hiring someone to help with your shop

Note: This Question is unanswered, help us to find answer for this one

113. Which of the following online platforms does Shopify often use for managing apps created with the API?

Answer

Correct Answer: Heroku

Note: This Question is unanswered, help us to find answer for this one

114. Which of the following is Not an automatic email notification a customer can receive?

Answer

Correct Answer: The product they have ordered is currently in backorder

Note: This Question is unanswered, help us to find answer for this one

115. When setting up promotions for a Shopify webpage how many discount codes/coupons can a customer use at once

Answer

Correct Answer: One

Note: This Question is unanswered, help us to find answer for this one

116. If you want to translate anything your customer will see into another language, which files do you need to edit?

Answer

Correct Answer: Liquid files

Note: This Question is unanswered, help us to find answer for this one

117. True of False? Tags only show on Collection and Product Pages as well as Blog Posts.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

118. A grouping of products defined by simple rules set by shop owners is called a:

Answer

Correct Answer: Smart collection

Note: This Question is unanswered, help us to find answer for this one

119. What is the difference between the {{ }} and {% %} Liquid markup?

Answer

Correct Answer: The first is for output, the second is for tags

Note: This Question is unanswered, help us to find answer for this one

120. How does Shopify calculate shipping rates?

Answer

Correct Answer: Rates are based on the weight class you set up

Note: This Question is unanswered, help us to find answer for this one

121. Which programming language is used to edit a Shopify webpage theme?

Answer

Correct Answer: All of these choices are used.

Note: This Question is unanswered, help us to find answer for this one

122. What is the purpose of a fulfillment service?

Answer

Correct Answer: a third party warehouse that prepares and ships your orders for you.

Note: This Question is unanswered, help us to find answer for this one

123. What are webhooks?

Answer

Correct Answer: A tool for retrieving and storing data from a certain event with your shop

Note: This Question is unanswered, help us to find answer for this one

124. Where does Shopify tracks your online store’s traffic, revenue, and growth trends

Answer

Correct Answer: Dashboard Section

Note: This Question is unanswered, help us to find answer for this one

125. Shopify only allows owners to alter the _____ in customizing their checkout page design.

Answer

Correct Answer: CSS

Note: This Question is unanswered, help us to find answer for this one

126. How do CSV files need to be encoded when uploading in bulk?

Answer

Correct Answer: UTF-8

Note: This Question is unanswered, help us to find answer for this one

127. Which of these are NOT programming languages supported by the Shopify API?

Answer

Correct Answer: All are supported

Note: This Question is unanswered, help us to find answer for this one

128. How frequently does Shopify charge its fee?

Answer

Correct Answer: Every 30 days

Note: This Question is unanswered, help us to find answer for this one

129. When customizing an email template, which programming language do you use?

Answer

Correct Answer: HTML

Note: This Question is unanswered, help us to find answer for this one

130. True or False? You cannot hide specific pages of your storefront.

Answer

Correct Answer: False

Note: This Question is unanswered, help us to find answer for this one

131. What is the purpose of tagging a data type such as a product or customer?

Answer

Correct Answer: To help identify, describe, or search for some property of the object

Note: This Question is unanswered, help us to find answer for this one

132. What can you accomplish by changing your DNS CNAME?

Answer

Correct Answer: You will be able to to use your own domain name as the the web address for your shop

Note: This Question is unanswered, help us to find answer for this one

133. What do you mean by SKU?

Answer

Correct Answer: Stock Keeping Unit

Note: This Question is unanswered, help us to find answer for this one

134. How do you enter Google Analytics tracking code in Shopify?

Answer

Correct Answer: It is a standard feature included with Shopify

Note: This Question is unanswered, help us to find answer for this one

135. By default a Shopify webpage comes with a blog?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

136. Which of these is NOT a method of payment accepted by Shopify?

Answer

Correct Answer: All are accepted

Note: This Question is unanswered, help us to find answer for this one

137. What is the name of Shopify's ecommerce template language?

Answer

Correct Answer: Liquid

Note: This Question is unanswered, help us to find answer for this one

138. What is Shopify's easy-to-use in house programming language called

Answer

Correct Answer: Liquid

Note: This Question is unanswered, help us to find answer for this one

139. A service that authorizes credit card payments and processes them securely with a user’s merchant account is called a:

Answer

Correct Answer: Payment gateway

Note: This Question is unanswered, help us to find answer for this one

140. When canceling an order will unfulfilled products be automatically restocked?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

141. When setting up a new order notification which of the following options are available?

Answer

Correct Answer: All of these options

Note: This Question is unanswered, help us to find answer for this one

142. Which of these are NOT available pricing tiers for Shopify?

Answer

Correct Answer: All are available tiers

Note: This Question is unanswered, help us to find answer for this one

143. Which operating system is required for Shopify?

Answer

Correct Answer: All are supported

Note: This Question is unanswered, help us to find answer for this one

144. Can I change my collection handle?

Answer

Correct Answer: Yes

Note: This Question is unanswered, help us to find answer for this one

145. What is an SKU?

Answer

Correct Answer: Stock Keeping Unit

Note: This Question is unanswered, help us to find answer for this one

146. True or False? You can create groups of customers to send email newsletters to.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

147. Shopify offers Mobile webpage themes

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

148. What file format can you export and import files in

Answer

Correct Answer: CSV

Note: This Question is unanswered, help us to find answer for this one

149. What is a Merchant Account?

Answer

Correct Answer: An account held directly at a bank used to accept credit card payments

Note: This Question is unanswered, help us to find answer for this one

150. True or False? Tags are case sensitive.

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one

151. You can specify shipping cost depending on a country?

Answer

Correct Answer: True

Note: This Question is unanswered, help us to find answer for this one