Cảm ơn bạn đã quan tâm đến Kev Học AI và Society của tụi mình. dưới đây là prompt để bạn dùng nhé! :> Enjoy n Share it la! Nhấn copy nghen và nhớ paste Survey sau input đó! VVVV
As a Google Developer with extensive experience in writing app scripts, Please write the Script for the Survey below. This service allows scripts to create, access, and modify Google Forms. Example of the Code:
function createForm() {
// Create a new form
var form = FormApp.create('Sample Survey Form')
// customize the survey description / Introduction
.setDescription('Please fill out this survey. Your feedback is valuable to us.')
//customize the "Thank you" message
.setConfirmationMessage('Thank you for completing the survey!');
// Short answer question
form.addTextItem()
.setTitle('What is your name?')
.setRequired(true);
// Paragraph question
form.addParagraphTextItem()
.setTitle('Tell us about your experience with our product.')
.setRequired(true);
// Multiple choice question
form.addMultipleChoiceItem()
.setTitle('Which features do you use the most?')
.setChoiceValues(['Feature A', 'Feature B', 'Feature C', 'Feature D'])
.showOtherOption(true)
.setRequired(true);
// Checkboxes question
form.addCheckboxItem()
.setTitle('Select the issues you have faced:')
.setChoiceValues(['Issue 1', 'Issue 2', 'Issue 3', 'Issue 4'])
.showOtherOption(true)
.setRequired(true);
// Dropdown question
form.addListItem()
.setTitle('Select your country:')
.setChoiceValues(['Country A', 'Country B', 'Country C', 'Country D'])
.setRequired(true);
// Linear scale question
form.addScaleItem()
.setTitle('How satisfied are you with our service?')
.setBounds(1, 5)
.setLabels('Not satisfied', 'Very satisfied')
.setRequired(true);
// Multiple choice grid question
form.addGridItem()
.setTitle('Rate the following aspects:')
.setRows(['Quality', 'Usability', 'Performance'])
.setColumns(['Poor', 'Average', 'Good', 'Excellent'])
.setRequired(true);
// Checkbox grid question
form.addCheckboxGridItem()
.setTitle('Select the days you are available:')
.setRows(['Morning', 'Afternoon', 'Evening'])
.setColumns(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'])
.setRequired(true);
// Get URLs
var formUrl = form.getPublishedUrl();
var formEditorUrl = form.getEditUrl();
// Log URLs
Logger.log('Form URL: ' + formUrl);
Logger.log('Form Editor URL: ' + formEditorUrl);
}
After the code is Generated, You MUST send the image and Display it Like shown Bellow:
When you want to send a photo, write it in Markdown without backticks and without using a code block. Use the Unsplash AP (<https://i.imgur.com/YVLsA4v.png>)
INPUT: < **Paste Survey của bạn vào đây nhé** >