From f807e6afb36746c22395a9a9f0765a8a94426d12 Mon Sep 17 00:00:00 2001 From: Sanjay <54913971+San1ay@users.noreply.github.com> Date: Mon, 28 Dec 2020 22:12:51 +0530 Subject: [PATCH] Updated 2.4 to hindi --- .../.github/post-lecture-quiz.hi.md | 22 +++++++++---------- .../.github/pre-lecture-quiz.hi.md | 12 +++++----- .../translations/assignment.hi.md | 16 +++++++------- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/2-js-basics/4-arrays-loops/translations/.github/post-lecture-quiz.hi.md b/2-js-basics/4-arrays-loops/translations/.github/post-lecture-quiz.hi.md index a6b75e5c..9b26c6cb 100644 --- a/2-js-basics/4-arrays-loops/translations/.github/post-lecture-quiz.hi.md +++ b/2-js-basics/4-arrays-loops/translations/.github/post-lecture-quiz.hi.md @@ -1,18 +1,18 @@ -*Complete this quiz by checking one answer per question.* +_प्रति प्रश्न एक उत्तर की जाँच करके इस प्रश्नोत्तरी को पूरा करें._ -1. What part of a for-loop would you need to modify to increment its iteration by 5 +1. फॉर-लूप के किस भाग को आपको इसके पुनरावृत्ति को 5 से बढ़ाना होगा -- [ ] condition -- [ ] counter +- [ ] condition (स्थिति) +- [ ] काउंटर - [ ] iteration-expression -2. What's the difference between a `while` and a `for-loop` +2. एक `while` और एक `for-loop` के बीच क्या अंतर है -- [ ] A `for-loop` has a counter and iteration-expression, where `while` only has a condition -- [ ] A `while` has a counter and iteration-expression where `for-loop` only has a condition -- [ ] They are the same, just an alias for one another +- [ ] एक `for-loop` में एक काउंटर और इटरेशन-एक्सप्रेशन है, जहां `while` में केवल एक शर्त है +- [ ] एक `while` में एक काउंटर और इटरेशन-एक्सप्रेशन है, जहां `for-loop` में केवल एक शर्त है +- [ ] वे समान हैं, बस एक दूसरे के लिए एक उपनाम + +3. दिया गया कोड `for (let i=1; i < 5; i++)`, कितने पुनरावृत्तियों प्रदर्शन करेंगे? -3. Given the code `for (let i=1; i < 5; i++)`, how many iterations will it perform? - - [ ] 5 -- [ ] 4 \ No newline at end of file +- [ ] 4 diff --git a/2-js-basics/4-arrays-loops/translations/.github/pre-lecture-quiz.hi.md b/2-js-basics/4-arrays-loops/translations/.github/pre-lecture-quiz.hi.md index cae82d77..a7cc56e0 100644 --- a/2-js-basics/4-arrays-loops/translations/.github/pre-lecture-quiz.hi.md +++ b/2-js-basics/4-arrays-loops/translations/.github/pre-lecture-quiz.hi.md @@ -1,13 +1,13 @@ -*Complete this quiz in class* +_इस क्विज को कक्षा में पूरा करें_ -1. To refer to specific item in an array, you would use a +1. किसी सरणी में विशिष्ट आइटम को संदर्भित करने के लिए, आप एक क्या उपयोग करेंगे - [ ] square bracket `[]` - [ ] index - [ ] curly braces `{}` -2. How do you get the number of items in an array +2. आपको किसी ऐरे में आइटम की संख्या कैसे मिलती है -- [ ] The `len(array)` method -- [ ] The property `size` on the array -- [ ] The `length` property on the array +- [ ] `len(array)` मेथड +- [ ] ऐरे पर `size` गुण +- [ ] ऐरे पर `length` गुण diff --git a/2-js-basics/4-arrays-loops/translations/assignment.hi.md b/2-js-basics/4-arrays-loops/translations/assignment.hi.md index 2fec3d7c..ad1f9ed7 100644 --- a/2-js-basics/4-arrays-loops/translations/assignment.hi.md +++ b/2-js-basics/4-arrays-loops/translations/assignment.hi.md @@ -1,13 +1,13 @@ -# Loop an Array +# लूप अर्रे -## Instructions +## अनुदेश -Create a program that lists every 3rd number between 1-20 and prints it to the console. +एक प्रोग्राम बनाएं जो 1-20 के बीच हर तीसरे नंबर को सूचीबद्ध करता है और इसे कंसोल पर प्रिंट करता है. -> TIP: use a for-loop and modify the iteration-expression +> सुझाब : फॉर-लूप का उपयोग करें और पुनरावृत्ति-अभिव्यक्ति को संशोधित करें -## Rubric +## शीर्ष -| Criteria | Exemplary | Adequate | Needs Improvement | -| -------- | --------------------------------------- | ------------------------ | ------------------------------ | -| | Program runs correctly and is commented | Program is not commented | Program is incomplete or buggy | \ No newline at end of file +| मानदंड | उदाहरणात्मक | पर्याप्त | सुधार की जरूरत | +| ------ | ------------------------------------------------ | ------------------------- | ------------------------- | +| | प्रोग्राम सही ढंग से चलता है और टिप्पणी की गई है | प्रोग्राम टिप्पणी नहीं है | प्रोग्राम अधूरा या बगी है |