Я был в восторге c, когда Google наконец позволил этому случиться с ГАЗОМ. Проверьте этот блог Google о создании теста с использованием GAS. Сценарий для отдельных вопросов показан ниже.
// Make a 10 point question and set feedback on it
var item = FormApp.getActiveForm().addCheckboxItem();
item.setTitle("What flavors are in neapolitan ice cream?");
item.setPoints(10);
// chocolate, vanilla, and strawberry are the correct answers
item.setChoices([
item.createChoice("chocolate", true),
item.createChoice("vanilla", true),
item.createChoice("rum raisin", false),
item.createChoice("strawberry", true),
item.createChoice("mint", false)
]);