Instructions
- You are about to attempt the Zoho Creator Certified Associate Level Examination
- The questions will appear in a multiple Choice format where each question has between 2 and 6 Choices.There is only one correct answer for each question.
- Questions will appear all at once in a single page.Attendees are advised to complete the questions and recheck the responses thoroughly before submitting.You will not be able to Change it once submitted.
- The timer is located at the top right of the test window.Please keep track.
- No. of questions:40
- Duration:45 minutes
- Pass percentage:75%
- After starting the Quiz, donot use the back button in the browser.
1.OCR can only be used on images stored in Zoho Creator.
a.TRUE
b.FALSE
Ans : b
2. The maximum time taken by the prediction field to train the model is:
a.30 minutes
b.1 hour
c.12 hours
d.24 hours
Ans : c
3. Which data type will the arguments of Java cloud functions be?
a.Float data type
b.String data type
c.Collection data type
d.Map data type
Ans:b
4. Where does the execution of Java cloud functions begin?
a.From the public class
b.From the runner method
c.From the import line of code
Ans : b
5. Relational operators can be used to:
a.Compare two given values and return a boolean value.
b.Perform operations and return a string output.
c.Perform operations and return a integer output.
d.Assign a value to a variable.
Ans : a
6.Any value enclosed within double quotes (" ") is considered to be a String/Text data by Deluge.
a.TRUE
b.FALSE
Ans : a
7. When creating a Date-Time variable, the Date-Time value must be declared ___.
a.within single quotes
b.within double quotes
c.without any quotes
Ans : a
8. The current date and time can be populated in a date time field using:
a.zoho.currentdate
b.zoho.currenttime
c.Either A or B
d.None of the above
Ans : b
9.listVar ={"Projects","Mail",{"Zoho Creator","Zoho CRM"}}; countElements=listVar .size();
a.countElements = 3
b.countElements = 4
c.countElements = 2
d.countElements = 1
Ans: a
10.numberList={1,5,2,3};averageValue =numberList.average();
a.averageValue = 5
b.averageValue = 2
c.averageValue = 2.75
d.averageValue = 11
Ans : c
11.What is the output of the following?PatientDetails = Collection("Name":"Ron","Age":"34","Phone Number":"9876543210","OutPatients":"Yes");info PatientDetails.containValue("Yes");
a.TRUE
b.FALSE
c.Yes
d.No
Ans: a
12.A map is a:
a.Collection of geographical address data
b.Collection of Elements
c.Collection of Key-Value pairs
d.None of the above
Ans : c
13.The initial values in a picklist are A,B,C,D, and E. Jim has selected B and D in that picklist field and submitted the form. When Jim accesses the form again, it should only display A,C, and E. What is the syntax used to remove the selected values from picklist?
a.list2.remove(list1)
b.list2.removeall(list1)
c.list2.removevalues()
d.list1.removeall(list2)
Ans: d
14.Is there a built-in function in Zoho Creator to encode a URL?
a.Yes
b.No
Ans: a
15.Which of the following is true about using "else" statements?
a.You can use an "else" statement without a preceding conditional statement
b.You must use an "if" statement followed by an "else" statement and then an "else if" statement
c.You must use an "if" statement followed by an "else if" statement and then an "else" statement
d.None of the above
Ans: d
16.MyName = null;name = ifnull(MyName ,"Not Found");info name;
a.null
b.MyName
c.Not Found
Ans :c
17.The XML function returns a:
a.String datatype
b.Map data type
c.List
d.Json
Ans : a
18.What would the syntax be to get the sum of number fields x and y in a third number field, z?
a.input.x + input.y = input.z
b.input.z = input.y + input.x
c.input.z = input.(x+y)
d.None of the above
Ans :b
19.Alex has a form with the ages of candidates. How can Alex use aggregate functionality to find the average age of all the candidates in the form? The Sales form stores information about the total product sale amount. Which of the following options is the correct syntax to fetch the average sales amount using the aggregate records functionality?
a.var = Sales_Form[ID != 0].avg(Total_sale);
b.var = Sales_Form[ID != 0].average(Total_sale);
c.var = Sales_Form[ID != 0].average(Total_sale).getAll();
d.var = Sales_Form[ID != 0].Total_sale).avg();
Ans : a
20.If a record is deleted in a lookup actual form,will be the value of the corresponding lookup fields
in the related form also be deleted,even if the lookup field is marked as mandatory?
a.Yes,the lookup field will be empty
b.No, the lookup field value will stay the same
c.The lookup field value will be linked with the next related value
d.None of the above
Ans : a
21.When a user creates a subform using 'Blank Form',they can view the subform records in a seperate report.
a.TRUE
b.FALSE
Ans : b
22.Let's say you're using a subform called Items with columns for 'product' and 'price'.What syntax should be used so that when you select "product",the form populates the related "price" row?
a.input.Price =
b.Items.Price =
c.row.Price =
d.None of the above
Ans : c
23. Let's say you want to automatically send an email or SMS to users 10 days after the date of their registration.This can be achieved through:
a.Forms workflow
b.Schedules
c.Function
d.Report Workflows
Ans : b
24.What are the prescribed limits for schedule Execution?
a.Based on subscription,total schedule count resets everyday
b.Based on subscription,total schedule count resets every week
c.Based on subscription,total schedule count resets every month
d.No limits
Ans : c
25.The HTML Snippet can:
a.Embed an iframe.
b.Add HTML code to the page
c.Style the Deluge data with HTML
d.All of the above
Ans : d
26.If a form is embedded in a HTML snippet:
a.All default validations will work
b.The On Load validation will not work
c.No Validations will work
d.All of the above
Ans : a
27.Possible Values of the titleSize tag are:
a.0 to 1
b.0 to 10
c.1 to 9
d.0 to 9
Ans: c
28. In the < image > ZML tag, the value attribute depends on the imageType attribute. Is this correct?
a.Yes
b.No
Ans : b
29.Invoke URL is:
a.An HTTP client
b.A Rest API
c.An Integration
d.All of the above
Ans : d
30.The scope of connection is:
a.The permission for performing certain tasks in the API Call
b.A declaration of the Credentials
c.The pointer to the service where the integration is supposed to happen
d.All of the above
Ans : d
31. How is the authtoken API key sent to the Creator API?
a.In the HTTP request body
b.As a custom HTTP header
c.In the HTTP header as an Authorization value
d.-
Ans : c
32.After a successful API call,you will receive a response in JSON or XML format.To interact with it and store it in tables, you may have to ___ it.
a.merge
b.parse
c.convert
d.split
Ans : b
33.Changes made to the application in Sandbox will not be reflected in the actual application.
a.TRUE
b.FALSE
Ans: a
34.Once the backup is complete,you need to manually download the backup as a .zip file and store it in local storage?
a.TRUE
b.FALSE
Ans : a
35.Can you use external CSS in widget?
a.Yes
b.No
Ans : a
36.How would you verify the installation of the Command Line Interface tool?
a. Using the verify button will available in the tool.
b. By running the commands $ node -v and npm -v in the tool.
c. By running the command $ node -v in the tool.
d. By running the command $ npm -v in the tool.
Ans : b
37.How can the widget access data in the creator application?
a. Using a Deluge fetch task
b. using a zoho integration Deluge task
c. Using the JS SDK
d. using creator REST API
Ans : c
38. A widget consist of:
a. HTML and CSS
b. HTML,CSS and Javascript
c. HTML only
d. Javascript only
Ans : b
39.Which of the following command should be used to initiate a project in the command line tool?
a.$ zet create
b.$ zet project
c.$ zet create project
d.$ zet init
Ans : d
40.What is the command to package the completed widget as a .zip file?
a.$ zet package
b.$ zet pack
c.$ zet zip pack
d.$ zet finish
Ans : b