Download All Vocabulary Words Grouped in the Form of Virtual Notes

Total Page:16

File Type:pdf, Size:1020Kb

Download All Vocabulary Words Grouped in the Form of Virtual Notes STUDYHIVE ANDROID APPLICATION A Project Presented to the faculty of the Department of Computer Engineering California State University, Sacramento Submitted in partial satisfaction of the requirements for the degree of MASTER OF SCIENCE in Computer Engineering by Tony Dinh SPRING 2014 © 2014 Tony Dinh ALL RIGHTS RESERVED ii STUDYHIVE ANDROID APPLICATION A Project by Tony Dinh Approved by: __________________________________, Committee Chair Dr. Jinsong Ouyang ____________________________ Date iii Student: Tony Dinh I certify that this student has met the requirements for format contained in the University format manual, and that this project is suitable for shelving in the Library and credit is to be awarded for the project. __________________________, Graduate Coordinator ___________________ Dr. Preetham Kumar Date Department of Computer Engineering iv Abstract of STUDYHIVE ANDROID APPLICATION by Tony Dinh There are many things that contribute to a student's success. Therefore, it is important to develop strong study habits and skills. We all know the key to successful studying isn’t cramming, but studying more efficiently. In order to study effectively, a possible solution is to provide a way for students to study on the go. By having their notes on their phone, it gives them the ability to study virtually anywhere. Mobile software applications now have many capabilities to create a learning tool for users to become more engaged and track their learning progress. For example, a mobile application can provide interactive quizzes or implement studying techniques that help them learn more efficiently. With this said, students can only benefit from this learning mobile applications. _______________________, Committee Chair Dr. Jinsong Ouyang _______________________ Date v ACKNOWLEDGEMENTS I would like to express my appreciation to Dr. Ouyang for his valuable and constructive suggestions during the development of this master project. His willingness to give his time has been very much appreciated. I would also like to express my appreciation to Sean Sohal and Paul Sohal of StudyHive for letting me use their website as a resource to develop this mobile application. vi TABLE OF CONTENTS Page Acknowledgements .................................................................................................................. vi List of Figures .......................................................................................................................... ix Chapter 1. INTRODUCTION ............................................................................................................. 1 1.2 Background of Project ........................................................................................ .. 2 1.3 Goals of the Project ............................................................................................ .. 2 2. REQUIREMENTS ANALYSIS ......................................................................................... 4 2.1 Login Specification ............................................................................................... 4 2.2 User Interface Specification .................................................................................. 4 2.3 Quiz Specification ................................................................................................. 4 2.4 Scoring Specification ............................................................................................ 5 3. ANDROID PLATFORM ................................................................................................ 7 3.1 Creating New Android Project ............................................................................... 7 3.2 Android Activity ................................................................................................... 9 3.3 Android XML Layout ......................................................................................... 10 3.4 Asynchronous Task ............................................................................................. 14 4. BACKEND IMPLEMENTATION................................................................................... 15 4.1 RESTful Web Service ......................................................................................... 15 4.2 JSON ................................................................................................................... 17 4.3 Information Storage ............................................................................................ 19 5. USER INTERFACE IMPLEMENTATION ..................................................................... 22 vii 5.1 Login Activity ..................................................................................................... 22 5.2 Main Activity ...................................................................................................... 25 5.3 Note Detail Activity ............................................................................................ 28 5.4 Simple Flashcard Quiz/Review Activity ............................................................ 31 5.5 Fill In Quiz Activity ............................................................................................ 32 5.6 Multiple Choice Activity .................................................................................... 37 5.7 Scrabble Quiz ...................................................................................................... 49 5.8 Progress Activity ................................................................................................. 44 6. CONCLUSION ................................................................................................................. 47 References ............................................................................................................................... 49 viii LIST OF FIGURES Figures Page 1. Score Calculation Equation…………………… ......... .………………………………. 6 2. New Android Application Wizard ………………….… . ……………………………. 8 3. Initial Activity Screen…………………… ..………….………………………………. 8 4. Android Activity Code ………………………….……… ... …………………………. 9 5. Fragment Code ………………………….……… ............. …………………………. 10 6. Android Layout XML Example ………………….……… …………………………. 11 7. RelativeLayout UI and XML …………………….……… …………………………. 12 8. LinearLayout UI and XML ………………………….……… .... ……………………12 9. FrameLayout UI and XML ………………………….……… ………………………13 10. AsyncTask Code ………………………….……… .......... …………………………. 14 11. RESTful GET Request Code …………………….……… ………………………….16 12. RESTful PUT Request Code …………………….……… …………………………. 17 13. Model Representation in Java and JSON ………….……… ... ………………………18 14. Gson Conversion from JSON to Java Object …….……… ………………………….18 15. SqlHelper: SQLite Initialization ……………….……… .. …………………………. 19 16. Access SQLite using SqlHelper Code …….……… .... …………………………. 20 17. Storing Java Object as JSON to Databases ….……… …………………………. 21 18. Login Activity UI and XML …….……… .................... …………………………. 22 19. Login Activity Code …….……… ................................. …………………………. 23 20. Invoking MainActivity …….……… ............................. …………………………. 24 ix 21. Main Activity and Navigation Drawer …….……… ... …………………………. 24 22. DrawerLayout XML …….……… ................................. …………………………. 25 23. Custom ArrayAdapter …….……… ............................... …………………………. 27 24. Initializing Custom ArrayAdapter …….……… .......... …………………………. 27 25. Passing Note to Next Activity Code …….……… ....... …………………………. 28 26. Note Detail Activity and XML …….……… ................ …………………………. 28 27. Retrieving Note From Previous Activity …….……… …………………………. 29 28. Creating Header View for ListView …….……… ....... …………………………. 29 29. Quiz Type Dialog Code and UI …….……… ............... …………………………. 30 30. Simple Flashcard Quiz Term and Answer ….……… . …………………………. 31 31. Dynamic View Size Based on Screen Size Code … .. …………………………. 32 32. FragmentManager Code and Object Animation XML … ………………………33 33. Sliding XML Animation Right …….……… ................ …………………………. 34 34. Fill In Quiz Activity and XML…….……… ................. …………………………. 35 35. Initialization of QuizViewPager …….……… .............. …………………………. 36 36. FillInPageAdapter Code …….……… ........................... …………………………. 36 37. Quiz Submission Code …….……… ............................. …………………………. 37 38. Multiple Choice Quiz Activity …….……… ................ …………………………. 37 39. DragOnTouchListener Code …….……… .................... …………………………. 38 40. ValidDragListener Code …….……… .......................... …………………………. 39 41. InvalidOnDragListener Code …….……… ................... …………………………. 40 x 42. Scrabble Quiz…….……… .............................................. …………………………. 40 43. Construction of Tile in ScrabbleQuiz Code …….……… ....... …………………. 41 44. Dynamic Answer Layout for Scrabble Quiz Code …….……… ……………… 42 45. Calculate Distance for Animation …….……… ........... …………………………. 43 46. Translation Animation Code…….……… ..................... …………………………. 43 47. Progress Activity and Chart …….……… ..................... …………………………. 44 48. Invoking Chart Output Activity Code …….……… .......... …………………………. 45 49. Data Population of Chart Activity …….……… .......... …………………………. 46 xi 1 1. INTRODUCTION There are many things that contribute to a student's success. Therefore, it is important to develop strong study habits and skills. We all know the key to successful studying isn’t cramming, but studying more efficiently. Cramming is not considered to be an effective studying technique since it
Recommended publications
  • A Queueing-Theoretic Foundation for Optimal Spaced Repetition
    A Queueing-Theoretic Foundation for Optimal Spaced Repetition Siddharth Reddy [email protected] Department of Computer Science, Cornell University, Ithaca, NY 14850 Igor Labutov [email protected] Department of Electrical and Computer Engineering, Cornell University, Ithaca, NY 14850 Siddhartha Banerjee [email protected] School of Operations Research and Information Engineering, Cornell University, Ithaca, NY 14850 Thorsten Joachims [email protected] Department of Computer Science, Cornell University, Ithaca, NY 14850 1. Extended Abstract way back to 1885 and the pioneering work of Ebbinghaus (Ebbinghaus, 1913), identify two critical variables that de- In the study of human learning, there is broad evidence that termine the probability of recalling an item: reinforcement, our ability to retain a piece of information improves with i.e., repeated exposure to the item, and delay, i.e., time repeated exposure, and that it decays with delay since the since the item was last reviewed. Accordingly, scientists last exposure. This plays a crucial role in the design of ed- have long been proponents of the spacing effect for learn- ucational software, leading to a trade-off between teaching ing: the phenomenon in which periodic, spaced review of new material and reviewing what has already been taught. content improves long-term retention. A common way to balance this trade-off is spaced repe- tition, which uses periodic review of content to improve A significant development in recent years has been a grow- long-term retention. Though spaced repetition is widely ing body of work that attempts to ‘engineer’ the process used in practice, e.g., in electronic flashcard software, there of human learning, creating tools that enhance the learning is little formal understanding of the design of these sys- process by building on the scientific understanding of hu- tems.
    [Show full text]
  • The Spaced Interval Repetition Technique
    The Spaced Interval Repetition Technique What is it? The Spaced Interval Repetition (SIR) technique is a memorization technique largely developed in the 1960’s and is a phenomenal way of learning information very efficiently that almost nobody knows about. It is based on the landmark research in memory conducted by famous psychologist, Hermann Ebbinghaus in the late 19th century. Ebbinghaus discovered that when we learn new information, we actually forget it very quickly (within a matter of minutes and hours) and the more time that passes, the more likely we are to forget it (unless it is presented to us again). This is why “cramming” for the test does not allow you to learn/remember everything for the test (and why you don’t remember any of it a week later). SIR software, notably first developed by Piotr A. Woźniak is available to help you learn information like a superhero and even retain it for the rest of your life. The SIR technique can be applied to any kind of learning, but arguably works best when learning discrete pieces of information like dates, definitions, vocabulary, formulas, etc. Why does it work? Memory is a fickle creature. For most people, to really learn something, we need to rehearse it several times; this is how information gets from short‐term memory to long‐ term memory. Research tells us that the best time to rehearse something (like those formulas for your statistics class) is right before you are about to forget it. Obviously, it is very difficult for us to know when we are about to forget an important piece of information.
    [Show full text]
  • Learning Efficiency Correlates of Using Supermemo with Specially Crafted Flashcards in Medical Scholarship
    Learning efficiency correlates of using SuperMemo with specially crafted Flashcards in medical scholarship. Authors: Jacopo Michettoni, Alexis Pujo, Daniel Nadolny, Raj Thimmiah. Abstract Computer-assisted learning has been growing in popularity in higher education and in the research literature. A subset of these novel approaches to learning claim that predictive algorithms called Spaced Repetition can significantly improve retention rates of studied knowledge while minimizing the time investment required for learning. SuperMemo is a brand of commercial software and the editor of the SuperMemo spaced repetition algorithm. Medical scholarship is well known for requiring students to acquire large amounts of information in a short span of time. Anatomy, in particular, relies heavily on rote memorization. Using the SuperMemo web platform1 we are creating a non-randomized trial, inviting medical students completing an anatomy course to take part. Usage of SuperMemo as well as a performance test will be measured and compared with a concurrent control group who will not be provided with the SuperMemo Software. Hypotheses A) Increased average grade for memorization-intensive examinations If spaced repetition positively affects average retrievability and stability of memory over the term of one to four months, then consistent2 users should obtain better grades than their peers on memorization-intensive examination material. B) Grades increase with consistency There is a negative relationship between variability of daily usage of SRS and grades. 1 https://www.supermemo.com/ 2 Defined in Criteria for inclusion: SuperMemo group. C) Increased stability of memory in the long-term If spaced repetition positively affects knowledge stability, consistent users should have more durable recall even after reviews of learned material have ceased.
    [Show full text]
  • Useful Links for Language Learners
    Useful Links for Language Learners All these links are for free resources that can help language learners. Some of these resources have paid options, but you do not have to sign up for the paid option to utilize their resources and learn a new language! Duolingo: This is a language teaching app that uses a combination of spaced repetition, game style learning and motivation, stories, and tips to share grammar, pronunciation, and cultural differences related to the language. Do not forget to explore the site beyond the lessons or you may miss out on some of what Duolingo has to offer. Forvo: This is a library of language audio clips. That is to say, native speakers say words in their language and share them at Forvo. Others can listen to those clips. If you create an account, you can also download the clips for non-commercial use (i.e. studying). If you are making your own digital flashcards, this can be a very useful site to visit. Google Images: This is like regular Google, but it searches primarily for images. This is useful for language learners, because doing an image search for a word in a foreign language can visually show how that word is perceived. It may show you an unexpected meaning or nuance that a simple translation cannot share; for instance, the Italian word ‘ragazzo’ could be translated into English as ‘boy’, but doing an image search will mostly reveal teenage boys, with a few smaller boys interspersed, giving a better understanding of the word. In addition, doing searches for vocabulary can help you to form memories related to vocabulary words, making you more likely to remember them in the future.
    [Show full text]
  • Integrating a Computer-Based Flashcard Program Into Academic Vocabulary Learning Cennet Altiner Iowa State University
    Iowa State University Capstones, Theses and Graduate Theses and Dissertations Dissertations 2011 Integrating a computer-based flashcard program into academic vocabulary learning Cennet Altiner Iowa State University Follow this and additional works at: https://lib.dr.iastate.edu/etd Part of the Curriculum and Instruction Commons Recommended Citation Altiner, Cennet, "Integrating a computer-based flashcard program into academic vocabulary learning" (2011). Graduate Theses and Dissertations. 10160. https://lib.dr.iastate.edu/etd/10160 This Thesis is brought to you for free and open access by the Iowa State University Capstones, Theses and Dissertations at Iowa State University Digital Repository. It has been accepted for inclusion in Graduate Theses and Dissertations by an authorized administrator of Iowa State University Digital Repository. For more information, please contact [email protected]. Integrating a computer-based flashcard program into academic vocabulary learning by Cennet Altiner A thesis submitted to the graduate faculty in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE Major: Education (Curriculum and Instructional Technology) Program of Study Committee: Ann Thompson, Major Professor Denise Schmidt Barbara Schwarte Iowa State University Ames, Iowa 2011 Copyright © Cennet Altiner, 2011. All rights reserved. ii TABLE OF CONTENTS LIST OF TABLES iv ABSTRACT v CHAPTER 1. INTRODUCTION 1 Introduction 1 Research Questions 3 Organization of the Study 4 CHAPTER 2. LITERATURE REVIEW 5 Target Vocabulary for ESL Students 5 Incidental Vocabulary Learning vs. Intentional Vocabulary Learning 7 The Role of Noticing in Vocabulary Learning 9 The Role of Repetition for Vocabulary Learning 10 Spaced Repetition 12 The role of Retrieval Process in Vocabulary Learning 14 Learning from Word Cards as a Vocabulary Learning Strategy 15 Computer-based Flashcard Programs 17 Summary 19 CHAPTER 3.
    [Show full text]
  • Chrome Spreadsheet to Anki
    Chrome Spreadsheet To Anki Unrecommendable Udale reissuing second-best, he lip-synch his jury very delightedly. Statutable and braver Radcliffe assuaging while transilient Torr winkled her pinfolds serially and reinvigorated shufflingly. Bigamous and swordless Daryl still Americanized his naira dextrously. Requirements you to be working smarter using anki to chrome spreadsheet Just allow that learning of foreign language can be improve a game table has close to love with boring memorization Lexilize Flashcards the application which. I beat up with Excel spreadsheet that looks at a section of disabled text pulls out resolve the characters. Not allow you would break them here are based for a database in the. How does it simplifies everything went well as! You another use Google Dictonary extension on Chrome there site can favorite words and. Multiplication Table 2x1 through 20x20 Spreadsheet-built 457 7 30 VectorMaps. TOFU Learn art vocabulary the easy way. Pixorize google drive cutrofiano2020it. The Google docs issue using the latest Chrome and the latest Anki. Anki Kanji Flashcards httpankisrsnet Make your tub deck. AnkiApp The best flashcard app to learn languages and more. Google sheets flashcards. All to chrome book to plug in a column f is not absolute beginners but some time. How easily Create Flashcards from a Google Spreadsheet. It with anki deck of! Yomichan dictionary Yomichan for korean Yomichan anki setup YumiChan. Useful Links Google Drive Google Docs. How might you format Anki cards? You just beginning the app click a dormitory with due cards and you're set When its card shows up likely just not on the spacebar to show and answer Using Anki default settings Anki will seat the card take after a cost amount depending on how difficult it was voluntary you increase recall this card.
    [Show full text]
  • Aplicativo Multiplataforma Para Auxílio Nos Estudos Utilizando Flashcards
    UNIVERSIDADE FEDERAL DO CEARÁ CAMPUS DE QUIXADÁ CURSO DE GRADUAÇÃO EM SISTEMAS DE INFORMAÇÃO LUCAS WENDELL BARBOSA AZEVEDO MY FLASHCARDS: APLICATIVO MULTIPLATAFORMA PARA AUXÍLIO NOS ESTUDOS UTILIZANDO FLASHCARDS QUIXADÁ 2017 LUCAS WENDELL BARBOSA AZEVEDO MY FLASHCARDS: APLICATIVO MULTIPLATAFORMA PARA AUXÍLIO NOS ESTUDOS UTILIZANDO FLASHCARDS Trabalho de Conclusão de Curso apresentado ao Curso de Graduação em Sistemas de Informação do Campus de Quixadá da Universidade Federal do Ceará, como requisito parcial à obtenção do grau de bacharel em Sistemas de Informação. Orientadora: Profa. Dra. Ingrid Teixeira Monteiro QUIXADÁ 2017 Dados Internacionais de Catalogação na Publicação Universidade Federal do Ceará Biblioteca Universitária Gerada automaticamente pelo módulo Catalog, mediante os dados fornecidos pelo(a) autor(a) A987m Azevedo, Lucas Wendell Barbosa. My Flashcards : Aplicativo multiplataforma para auxílio nos estudos utilizando flashcards / Lucas Wendell Barbosa Azevedo. – 2017. 42 f. : il. color. Trabalho de Conclusão de Curso (graduação) – Universidade Federal do Ceará, Campus de Quixadá, Curso de Sistemas de Informação, Quixadá, 2017. Orientação: Profa. Dra. Ingrid Teixeira Monteiro. 1. Aprendizagem mnemônica. 2. Interação homem-máquina. I. Título. CDD 005 LUCAS WENDELL BARBOSA AZEVEDO MY FLASHCARDS: APLICATIVO MULTIPLATAFORMA PARA AUXÍLIO NOS ESTUDOS UTILIZANDO FLASHCARDS Trabalho de Conclusão de Curso apresentado ao Curso de Graduação em Sistemas de Informação do Campus de Quixadá da Universidade Federal do Ceará, como requisito parcial à obtenção do grau de bacharel em Sistemas de Informação. Aprovada em: ____/____/____ BANCA EXAMINADORA Profa. Dra. Ingrid Teixeira Monteiro (Orientadora) Universidade Federal do Ceará (UFC) Profa. Dra. Andréia Libório Sampaio Universidade Federal do Ceará - UFC Prof. Me. Aníbal Cavalcante de Oliveira Universidade Federal do Ceará - UFC A Deus por estar sempre comigo e à minha fa- mília e amigos que me apoiaram, incentivaram e sempre torceram por mim.
    [Show full text]
  • Business Blueprint for APS Activity Based Learning Solution Providers (December 2020) Program to Improve Private Early Education (PIPE)
    www.fsg.org/pipe [email protected] Business Blueprint for APS Activity Based Learning solution providers (December 2020) Program to Improve Private Early Education (PIPE) © FSG | 1 Glossary of terms (1/2) Affordable Private Schools (APSs): Schools that charge fees less than INR 24,000 ($340) per annum, and typically provide education up to grade 10 Early Childhood Education (ECE): The formal education a child receives between the ages two through five. Typically early childhood is considered to range from birth to age six, this narrower definition has been chosen to reflect the research’s interest in the years when formal pre-primary education is typically provided in India English-medium education: Education where language of instruction is English Markers: Indicators or signs that parents use to assess whether their child is learning – Markers to test recall: Questions used by parents to assess their children for content memorized using rote methods (e.g., asking the child to recite numbers) – Markers to test concepts: Questions used by parents to assess their children’s conceptual understanding of any topic (e.g., asking the child to count items) Preschooling/ Pre-primary classes: All formal educational classes prior to first grade Program to Improve Private Early Education (PIPE): Program that aims to replace rote with activity based learning in all 300,000 APSs in India Activity based learning (ABL): Learning through structured play-based activities, games, and experiences that provide developmental benefits across the cognitive,
    [Show full text]
  • A Trainable Spaced Repetition Model for Language Learning
    A Trainable Spaced Repetition Model for Language Learning Burr Settles∗ Brendan Meeder† Duolingo Uber Advanced Technologies Center Pittsburgh, PA USA Pittsburgh, PA USA [email protected] [email protected] Abstract view sessions a few seconds apart, then minutes, then hours, days, months, and so on, with each We present half-life regression (HLR), a successive review stretching out over a longer and novel model for spaced repetition practice longer time interval. with applications to second language ac- The effects of spacing and lag are well- quisition. HLR combines psycholinguis- established in second language acquisition re- tic theory with modern machine learning search (Atkinson, 1972; Bloom and Shuell, 1981; techniques, indirectly estimating the “half- Cepeda et al., 2006; Pavlik Jr and Anderson, life” of a word or concept in a student’s 2008), and benefits have also been shown for gym- long-term memory. We use data from nastics, baseball pitching, video games, and many Duolingo — a popular online language other skills. See Ruth (1928), Dempster (1989), learning application — to fit HLR models, and Donovan and Radosevich (1999) for thorough reducing error by 45%+ compared to sev- meta-analyses spanning several decades. eral baselines at predicting student recall Most practical algorithms for spaced repetition rates. HLR model weights also shed light are simple functions with a few hand-picked pa- on which linguistic concepts are system- rameters. This is reasonable, since they were atically challenging for second language largely developed during the 1960s–80s, when learners. Finally, HLR was able to im- people would have had to manage practice sched- prove Duolingo daily student engagement ules without the aid of computers.
    [Show full text]
  • The Effectiveness of Computer-Based Spaced Repetition in Foreign Language Vocabulary Instruction: a Double-Blind Study
    calico journal (online) issn 2056–9017 Article The effectiveness of computer-based spaced repetition in foreign language vocabulary instruction: a double-blind study Evgeny Chukharev-Hudilainen1 and Tatiana A. Klepikova2 Abstract The purpose of the present paper is twofold; first, we present an empirical study evaluating the effectiveness of a novel CALL tool for foreign language vocabulary instruction based on spaced repetition of target vocabulary items. The study dem- onstrates that by spending an average of three minutes each day on automatically generated vocabulary activities, EFL students increased their long-term vocabulary retention rate three fold. Second, we demonstrate that the double-blind experiment design, which has become standard research practice in such extremely high-stakes fields as pharmacology and healthcare, has the potential of being successfully imple- mented in CALL research. Keywords: activity generation; double-blind design; vocabulary acquisition Introduction The importance of building a working knowledge of vocabulary in learners of English as a foreign language (EFL) cannot be overestimated. Because students are not immersed in the target language environment, diminishing the pos- sibilities for incidental vocabulary acquisition, vocabulary learning becomes Affiliation 1Program in Applied Linguistics and Technology, Iowa State University, Ames, IA, USA. 2Department of English and Translation Studies, St. Petersburg State University of Economics, Russia. email: [email protected] (corresponding author) calico
    [Show full text]
  • Upgrading Students' Vocabulary Through
    2019 Proceeding of 1st Conference of English Language and Literature (CELL) UPGRADING STUDENTS’ VOCABULARY THROUGH “MEMRISE” APP Nurul Izah Universitas Islam Malang, Jl. M. T Haryono 193, Malang 65144, Indonesia [email protected] Abstract The aim of this paper is to discuss some underlying theories and previous studies of vocabularylearning using online app. Vocabulary is a pivotal tool to master all of skills in English language. However, the fact reveals that this English component is neglected, and it is worsened with inappropriate teaching method which influences students‟ insufficient vocabulary. To solve the problem, online learning medium is the most proper solution for students to learn vocabulary individually. One of learning media that is believed to help students in English learning individually is Memrise. Memrise is an application through mobile learning that can expand the students‟ vocabulary beyond school time. In addition, Memrise is created in an educational application; therefore, it will engage the students in a fun learning experience. Thus, this paper comes to describe the theory of vocabulary and to describe thetype of media for vocabulary learning. Furthermore, this paper will answer some questions about what is Memrise?, why do students need to use Memrise?, and how do students apply the application?. Previous studies will be provided in the next discussion to emphasize the effectiveness of Memrise. Then, it is expected that the paper can give a recommendation to use a good mobile assisted language learning for the English students to expand their vocabulary. Keywords: vocabulary; learning media; Memrise Introduction “…While without grammar very little can be conveyed, without vocabulary nothing can be conveyed.’’ -Wilkins(as cited in Akdogan, 2018) As a quote stated by Wilkins above, without grammar a person still can understand a little bit of something; however, without vocabulary a person will not understand anything at all.
    [Show full text]
  • Supermemo 2004 Is Software Application That Can Be Used to Help Language Learners Record, Organize and Systematically Review What They Have Learned
    March 2007 Volume 10, Number 4 SuperMemo Title: 2004 Product Type: Learning and memorization software SuperMemo World ul. R. Maya 1 Publisher/Distributer 61-371 Poznań; Poland Homepage http://www.supermemo.com Platform: Windows 2000 / XP Windows 98, Windows NT 4.0, Windows 2000 or Windows XP (2000 or XP recommended) 32 MB memory Minimum System Requirements: (For 10 MB free disk space download version) SVGA with resolution 800x600 (higher resolutions recommended) Internet Explorer 6.0 with all recent security updates Author Dr. Piotr Wozniak User Manual Documentation and various articles online at http://www.supermemo.com Price $39.00 USD Description of the product Introduction SuperMemo 2004 is software application that can be used to help language learners record, organize and systematically review what they have learned. The program is designed to take account of research that reveals the most advantageous methods for revising learned material in order to help learners avoid the dangers that forgetting poses to their efforts. TESL-EJ 10.4, March 2007 Supermemo/Ranalli 1 SuperMemo in some ways resembles a typical flashcard program, but one with highly advanced composing and formatting features that allows use of hypertext and multimedia. More importantly, the program incorporates a unique algorithm that it uses, in combination with data from a user's self-assessments during testing, that allow it to schedule subsequent reviews at the times mostly likely to result in retention, according to the program's creators. Although not designed specifically for language learning, SuperMemo has obvious useful applications in this field. Figure 1 shows SuperMemo 2004's basic user interface, including the upper and lower element windows.
    [Show full text]