Class QuizFeedback
কুইজ প্রতিক্রিয়া একটি ফিডব্যাকের বিন বাস্তবায়ন, যাতে সমস্ত ফিডব্যাকের সাধারণ বৈশিষ্ট্য থাকে, যেমন ডিসপ্লে টেক্সট বা লিঙ্ক।
প্রতিক্রিয়া গ্রেডযোগ্য Form
আইটেম যোগ করা যেতে পারে.
// Setting feedback which should be automatically shown when a user responds to
// a question incorrectly.
const form = FormApp.create('My Form');
const textItem = form.addTextItem().setTitle(
'Re-hydrating dried fruit is an example of what?');
const feedback =
FormApp.createFeedback()
.setDisplayText(
'Good answer, but not quite right. Please review chapter 4 before next time.',
)
.addLink('http://wikipedia.com/osmosis');
textItem.setFeedbackForIncorrect(feedback);
পদ্ধতি
পদ্ধতি | রিটার্ন টাইপ | সংক্ষিপ্ত বিবরণ |
---|
get Link Urls() | String[] | ফিডব্যাকের সাথে যুক্ত URL এর একটি তালিকা পায়। |
get Text() | String | ফিডব্যাকের ডিসপ্লে টেক্সট পায়। |
বিস্তারিত ডকুমেন্টেশন
get Link Urls()
ফিডব্যাকের সাথে যুক্ত URL এর একটি তালিকা পায়। এগুলি ব্যবহারকারীর কাছে সহায়ক লিঙ্কগুলির একটি তালিকা হিসাবে প্রদর্শিত হয়৷
প্রত্যাবর্তন
String[]
— ফিডব্যাকের সাথে যুক্ত URL-এর একটি তালিকা
get Text()
ফিডব্যাকের ডিসপ্লে টেক্সট পায়। ব্যবহারকারীরা একটি প্রতিক্রিয়া জমা দেওয়ার পরে এই পাঠ্যটি তাদের দেখানো হয়৷
প্রত্যাবর্তন
String
- প্রতিক্রিয়ার পাঠ্য
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2024-12-17 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2024-12-17 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["`QuizFeedback` objects store common feedback properties like display text and links for Google Forms."],["Feedback can be linked to form items and automatically displayed based on user responses (e.g., incorrect answers)."],["Developers can use `getLinkUrls()` and `getText()` methods to retrieve associated URLs and display text from `QuizFeedback` objects."]]],["Feedback, used with gradeable form items, provides display text and links. Feedback is created via `FormApp.createFeedback()`, allowing the setting of display text with `setDisplayText()` and adding links with `addLink()`. `setFeedbackForIncorrect()` associates the feedback with a question to be shown on incorrect responses. The methods `getLinkUrls()` retrieves associated URLs, and `getText()` gets the feedback's display text. These features offer customized information and guidance for users.\n"]]