SNOW-CAD • Timed Practice Test 3
This is a timed practice session. You have 10 minutes to answer 10 questions — approximately 1 minute per question, matching real SNOW-CAD exam pace. Answer every question before time expires.
Time remaining
10:00
Exam-pace drill
Allow 1 minute per question. On the real SNOW-CAD exam you have approximately 72 seconds per question — this session trains you to maintain that pace under pressure.
Refer to the exhibit. A developer created this Script Include to be used as a REST API endpoint. However, when calling the API, the response is empty. What is the most likely reason?
Refer to the exhibit.
Script Include: getIncidents.gs
var getIncidents = Class.create();
getIncidents.prototype = Object.extendsObject(AbstractAjaxProcessor, {
getOpenIncidents: function() {
var gr = new GlideRecord('incident');
gr.addQuery('active', true);
gr.query();
var result = [];
while(gr.next()) {
result.push({
'number': gr.getValue('number'),
'short_description': gr.getValue('short_description')
});
}
return result;
}
});