All Practice Exams

100+ Free Zoho Creator Associate Practice Questions

Pass your Zoho Creator Certified Developer - Associate exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Which Deluge construct lets you exit a for-each loop early once a matching record is found?

A
B
C
D
to track
Same family resources

Explore More CRM Platform Certifications

Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.

2026 Statistics

Key Facts: Zoho Creator Associate Exam

$99

One-time exam fee (USD)

Zoho Corporation

40

Multiple-choice questions

Zoho exam guide

75%

Passing score (30 of 40)

Zoho exam guide

45 min

Time limit

Zoho exam guide

>80%

Share of questions on Deluge

Zoho exam guide

2 years

Certification validity

Zoho Corporation

The Zoho Creator Certified Developer - Associate exam (Zoho Corporation) costs $99 one-time, has 40 multiple-choice questions in 45 minutes, requires 75% (30 of 40) to pass, applies no negative marking, and is valid for 2 years. More than 80% of questions cover Deluge: variables, operators, built-in functions, data types (Text, Number, Decimal, Boolean, Date-Time, Lists, Maps), and tasks (conditionals, insert/fetch/update/delete, subforms). The rest covers Pages (HTML/ZML/Deluge), built-in integrations, custom integrations (Connections, invokeUrl, GET/POST), application settings, and no-code basics (Forms, Reports, Pages, Workflows).

Sample Zoho Creator Associate Practice Questions

Try these sample questions to test your Zoho Creator Associate exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In Deluge, how must a Text (string) literal be written so the script treats it as a string value?
A.Enclosed in single quotes, like 'Hello'
B.Enclosed in double quotes, like "Hello"
C.Prefixed with the keyword text, like text Hello
D.Without any quotes when it contains only letters
Explanation: The Deluge Text data type represents a sequence of characters and must be enclosed in double quotes, for example "Hello". This distinguishes a literal string from a variable name or keyword.
2Which Deluge data type should you use to store a currency amount such as a product price that may include cents?
A.Number
B.Decimal
C.Text
D.Boolean
Explanation: The Decimal data type represents values with a fractional part and is commonly used for currency and percentage values. The Number type holds only integer values, so cents would be lost.
3How are Boolean values written in Deluge?
A.As the quoted strings "true" and "false"
B.As the integers 1 and 0
C.As the keywords yes and no
D.As the keywords true and false without quotes
Explanation: The Boolean data type represents the values true and false, and these keywords must NOT be enclosed in quotes. Deluge accepts them case-insensitively (True/false), unlike text values.
4A Deluge Date-Time literal must be enclosed in which characters?
A.Single quotes
B.Double quotes
C.Square brackets
D.Curly braces
Explanation: Date-Time literals in Deluge are enclosed in single quotes, for example '15-Jan-2026 10:30:00'. If the time component is omitted, the hours, minutes, and seconds default to zero.
5Which literal correctly creates a Deluge key-value pair (Map) value?
A.["name", "Asha"]
B.("name" = "Asha")
C.{"name" : "Asha", "age" : 30}
D.Map("name", "Asha")
Explanation: A Deluge key-value (Map) literal uses curly braces with key:value pairs, such as {"name" : "Asha", "age" : 30}. Keys must be unique; assigning a duplicate key overwrites the earlier value.
6Given the Deluge List colors = {"red", "green", "blue"}, what does colors.get(0) return?
A."green"
B."blue"
C."red"
D.An error because lists are 1-indexed
Explanation: Deluge lists are zero-indexed, so get(0) returns the first element, "red". Index values are used to mark and retrieve individual elements of a list.
7What characterizes the Deluge Collection data type compared with separate List and Map types?
A.A Collection at any one time acts only as a list OR only as a map, not both together
B.A Collection can simultaneously hold list elements and key-value pairs in one variable
C.A Collection can store only Text values
D.A Collection cannot be iterated with a for-each loop
Explanation: A Collection variable can store either a list of elements or key-value pairs, but not both at the same time. At any moment it behaves as a list variable or as a map variable, never mixing the two structures.
8In Deluge, what is the result type when a Number is added to a Decimal, for example 5 + 2.5?
A.A Number, because the first operand is a Number
B.A Text value "7.5"
C.A Decimal value of 7.5
D.An error because types differ
Explanation: When a Number participates in arithmetic with a Decimal, Deluge promotes the result to a Decimal, so 5 + 2.5 returns 7.5. The decimal precision is preserved rather than truncated to an integer.
9Which Deluge constant represents the absence of any value and belongs to no specific data type?
A.null
B.empty
C.void
D.blank
Explanation: null is a built-in Deluge constant that has no specific value and does not belong to any data type. It is commonly used to check whether a field or variable has not been assigned a value.
10Which Zoho Creator field type maps to the Deluge List data type?
A.Single Line field
B.Decision Box (checkbox) field
C.Currency field
D.Multi Select field
Explanation: A Multi Select field can hold several chosen values, so its value is exposed to Deluge as a List. Each selected option becomes an element you can iterate over or access by index.

About the Zoho Creator Associate Exam

The Zoho Creator Certified Developer - Associate exam validates beginner-level skills in building applications on the Zoho Creator low-code platform, with a strong emphasis on the Deluge scripting language. Over 80% of the 40 questions test Deluge and Creator's developer tools: variables, operators, and built-in functions; data types such as Text, Number, Decimal, Boolean, Date-Time, Lists, and Maps; and tasks including conditional statements, data access (insert, fetch, update, delete), and subforms. The remaining questions cover Pages built with HTML, ZML, and Deluge; built-in integrations with Zoho and external services; custom integrations using Connections and the invokeUrl task with GET and POST requests; application settings; and no-code fundamentals like Forms, Reports, and Workflows. The online exam has 40 multiple-choice questions, a 45-minute limit, a 75% (30 of 40) passing mark, and no negative marking.

Questions

40 scored questions

Time Limit

45 minutes

Passing Score

75% (30 of 40)

Exam Fee

$99 (Zoho Corporation)

Zoho Creator Associate Exam Content Outline

~20%

Deluge fundamentals (variables, operators, built-in functions)

Assign variables without type keywords, use arithmetic (+, -, *, /, %), relational, logical (&&, ||, !), and compound assignment operators, concatenate strings with +, and call built-in functions such as length, trim, contains, toList, text, and toNumber.

~16%

Deluge data types

Use Text in double quotes, Number for integers, Decimal for currency, Boolean keywords true/false unquoted, Date-Time in single quotes, zero-indexed Lists, key-value Maps with curly braces, the single-purpose Collection, the File type, and the null constant; map Creator fields to their data types.

~27%

Deluge tasks (conditionals, data access, subforms)

Write if/else if/else with criteria, for-each and while loops, and conditional (ternary) expressions; insert into forms, fetch with Form[criteria], update fetched records, and delete from Form[criteria]; and read, total, and add subform rows treated as a list of records.

~6%

Pages (HTML, ZML, and Deluge)

Build Pages and reusable Snippets using ZML (Zoho Markup Language) and HTML, and embed Deluge to fetch records and render dynamic, per-user content within the application's presentation layer.

~6%

Built-in integrations (Zoho and external services)

Use namespaced Zoho service tasks such as zoho.creator.getRecords and zoho.crm.createRecord that handle endpoints and authentication for you, and recognize that non-Zoho services require custom integrations instead.

~15%

Custom integrations (Connections, invokeUrl, GET/POST)

Call external REST APIs with invokeUrl using GET, POST, PUT, DELETE, and PATCH; set the type, url, headers, and body; authenticate through OAuth-based Connections; use detailed:true for status codes; and parse JSON responses with map get().

~5%

Application settings (Developer Tools, Java and JavaScript)

Use the Deluge editor and test/execute console with the info statement for debugging, understand client-side JavaScript inside HTML Pages, manage Users/Roles/Permissions, and use staged development before publishing to production.

~9%

No-code basics (Forms, Reports, Pages, Workflows)

Create Forms to capture data, Lookup fields to relate records, Reports (list, kanban, calendar) to view data, and event-driven Workflows plus time-based Schedules and Buttons to automate actions.

How to Pass the Zoho Creator Associate Exam

What You Need to Know

  • Passing score: 75% (30 of 40)
  • Exam length: 40 questions
  • Time limit: 45 minutes
  • Exam fee: $99

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Zoho Creator Associate Study Tips from Top Performers

1Master Deluge literal syntax: Text in double quotes, Date-Time in single quotes, Boolean true/false unquoted, Maps in curly braces, and Lists that are zero-indexed.
2Drill the data-access tasks until they are automatic: insert into Form, Form[criteria] to fetch, updating fetched records in a for-each loop, and delete from Form[criteria].
3Practice subforms as a list of rows: iterate with for-each, read row fields with dot notation, total amounts with an accumulator, and add new rows as field-value maps.
4Learn invokeUrl thoroughly: the type parameter sets GET/POST/PUT/DELETE/PATCH, Connections handle OAuth, headers set Content-Type, and detailed:true returns the HTTP status code.
5Know when to use a built-in Zoho task (zoho.creator/crm/books) versus a custom invokeUrl call to a non-Zoho external service.
6Be comfortable with no-code building blocks (Forms, Reports, Pages, Workflows, Schedules) and how Deluge and ZML extend them, since roughly 20% of the exam is no-code basics.

Frequently Asked Questions

What are the exam facts for the Zoho Creator Associate certification?

The Zoho Creator Certified Developer - Associate exam costs $99 one-time, has 40 multiple-choice questions, runs 45 minutes, requires 75% (30 of 40) to pass, applies no negative marking, is taken online, and is valid for 2 years.

How much of the exam covers Deluge?

Over 80% of the questions involve using Deluge in Creator and Creator's developer tools. This includes Deluge variables, operators, built-in functions, data types, conditional statements, data access tasks, and subforms.

What Deluge data types should I know for the Associate exam?

Know Text (double quotes), Number (integers), Decimal (currency/percentage), Boolean (unquoted true/false), Date-Time (single quotes), Time, List (zero-indexed), Key-Value (Map), Collection, File, and the null constant.

What is the difference between built-in and custom integrations?

Built-in integrations use namespaced Zoho tasks like zoho.crm.createRecord that handle authentication automatically. Custom integrations call external APIs with the invokeUrl task and a Connection, supporting GET, POST, PUT, DELETE, and PATCH.

Do I need prior experience or to know Java to take this exam?

No. The Associate exam is open to all individuals with no project experience required, and Zoho Creator is a low-code platform, so you script in Deluge rather than writing Java to build applications.

How long is the Zoho Creator Associate certification valid?

The certification is valid for 2 years from the date of issue. After that you would need to recertify to keep your credential current.