Google forms in an excellent tool for conducting online Tests for students. But it lacks the facility of scheduling the test and automatically closing the form once the test is over. This video will help you to schedule and automate your google form for conducting class tests.
You can also use this method for automating Any Event registration or any other application which requires scheduling of Google forms for a specific time frame.
Watch the video and use following piece of Google Script for Automating the Google Form. For doubts pls write to [email protected] or visit www.sundaramurthy.in. Happy Teaching.
////////////////////////////////////////////////////////////////////////////////////////////////////////
var form = FormApp.getActiveForm();
function StartTest()
{
form.setAcceptingResponses(true);
}
function CloseTest()
{
form.setAcceptingResponses(false);
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////