Code Monkey home page Code Monkey logo

dev_interview_prep_app's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

dev_interview_prep_app's Issues

[Android_React_Native] Create a Unique Version Of The App using React Native

The app essentially builds a 10 question quiz of multiple choice questions using questions from the Questions.json and Answers from the Answers.json. A Question item / model/ response has a "shortAns" key which is mixed in with 3 keys from the "Answers.json" to create a multiple choice question. Upon the user selecting the correct answer they move to the next question.

No matter which answer a user selects, they are shown a "Details" view that tells them more about the "answer" they selected.

After answering 10 questions they are taken to a score view where they can see how well they did, and try again.

So, are you up for it?

As a Developer, I would like to create this application using react native.

Other Details:

Please place your project within the /Interview_Prep_App/ folder titled "react_native_[your github username]"

Feature: Add Screen to choose what code language you'd like for quiz. Native_Kotlin/base

Quiz application is currently tuned towards Android Quiz questions, Application should open to a screen allowing users to choose what type of quiz they would like to engage in.

Inside of the Native_Kotlin/Base module only, add a screen that allows user to pick which quiz they'd like to engage in.

Developer will create a "pick a quiz" fragment or activity that allows user to choose different types of quizzes based on languages.

Based on this choice, the network should "load" questions from different json sources within the /Languages/ folder.

###As this is the base application, please get the information from the "repository api" (aka json / github and folders) without using any advanced libraries.

Feature: Clearer instructions for how to add to Anwsers and Questions json file.

Is your feature request related to a problem? Please describe.

I believe that the instructions inside the answers.json and questions.json file are confusing.

Describe the solution you'd like

I would like someone to refactor the answers within the two files above to reflect a better understanding of what is needed.

Describe alternatives you've considered

The files should contain examples of correct syntax.

Feature: Use Coroutine & Retrofit to get JSON data for Answers & Questions

Is your feature request related to a problem? Please describe.

AsyncTask is deprecated. App is only using default/hardcoded questions in the app

Describe the solution you'd like

Use Coroutine & Retrofit to request & pull JSON files for Answers & Questions

Describe alternatives you've considered

Considered continuing to use Async Task

Additional context

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add Quiz Question and Answers

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

[iOS] Create a native iOS version of the application.

The app essentially builds a 10 question quiz of multiple choice questions using questions from the Questions.json and Answers from the Answers.json. A Question item / model/ response has a "shortAns" key which is mixed in with 3 keys from the "Answers.json" to create a multiple choice question. Upon the user selecting the correct answer they move to the next question.

No matter which answer a user selects, they are shown a "Details" view that tells them more about the "answer" they selected.

After answering 10 questions they are taken to a score view where they can see how well they did, and try again.

So, are you up for it?

As an iOS Developer, I would like to create this application for the IOS platform.

Other Details:

Please place your project within the /Interview_Prep_App/ folder titled "native_iOS_[your github username]"

Add 3 Quiz Answers to Json

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: [Kotlin] - Splash Screen Activity for native_kotlin/base

Please Create a splash screen for the application within the native_kotlin/base folder.

Splash screen should cover the full screen, the application should open to the splash screen, display it for a few seconds then move on to the next activity.

Splash screen is of your choosing but try to make it look professional :D Look at other applications for inspiration. Here is a great resource Freepik- For providing awesome gradient pictures.

Additional Resources:

A guide on 3 different ways to complete this.

My brother's approved PR where you can review his code

#102

Feature: Add Screen to choose what code language you'd like for quiz.

Is your feature request related to a problem? Please describe.

Quiz application is currently tuned towards Android Quiz questions, Application should open to a screen allowing users to choose what type of quiz they would like to engage in.

**For Both Native_Java/Retrofit and Native_Kotlin/Retrofit modules only, add a screen that allows user to pick which quiz they'd like to engage in.

Describe the solution you'd like

User will create a "pick a quiz" fragment that allows user to choose different types of quizzes based on languages.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: Update Java code to Kotlin

Is your feature request related to a problem? Please describe.

Not related to a problem. Looking to update Java language to Kotlin due to Android becoming "Kotlin first"

Describe the solution you'd like

Convert Java code to Kotlin

Additional context

Will need to convert to Kotlin in order to add or change any new features due to familiarity with Kotlin

Add 3 Quiz Answers to Json

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: Add Screen to choose what code language you'd like for quiz. Native_Java/Base

Quiz application is currently tuned towards Android Quiz questions, Application should open to a screen allowing users to choose what type of quiz they would like to engage in.

Inside of the Native_Java/Base module only, add a screen that allows user to pick which quiz they'd like to engage in.

Developer will create a "pick a quiz" fragment or activity that allows user to choose different types of quizzes based on languages.

Based on this choice, the network should "load" questions from different json sources within the /Languages/ folder.

###As this is the base application, please get the information from the "repository api" (aka json / github and folders) without using any advanced libraries.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Error: Fix Github Lint Action

Describe the Error

Github Lint is failing on Pull Request.

Expected behavior

Github Lint action should not fail on pull request.

Additional context

Please fix whatever is causing the failure, to assign this issue type-!assign

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add 3 Quiz Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: [Java] - Splash Screen Activity for native_java/retrofit

Please Create a splash screen for the application within the native_java/retrofit folder.

Splash screen should cover the full screen, the application should open to the splash screen, display it for a few seconds then move on to the next activity.

Splash screen is of your choosing but try to make it look professional :D Look at other applications for inspiration. Here is a great resource Freepik- For providing awesome gradient pictures.

Additional Resources:

A guide on 3 different ways to complete this.

My brother's approved PR where you can review his code

#102

Feature: Create a github action to automate the assignment of issues using a "!assign" command tag.

Is your feature request related to a problem? Please describe.

Problem is I'm just one maintainer and I want to help facilitate those who wish to contribute in a more timely manner.

Describe the solution you'd like

Create a github action to automate the assignment of issues using a "!assign" command tag. Thus the first to comment with !assign to an issue would get assigned the issue.

Describe alternatives you've considered

Feature: Add Screen to choose what code language you'd like for quiz. Native_Java/Template

Quiz application is currently tuned towards Android Quiz questions, Application should open to a screen allowing users to choose what type of quiz they would like to engage in.

Inside of the Native_Java/Template module only, add a screen that allows user to pick which quiz they'd like to engage in.

Developer will create a "pick a quiz" fragment or activity that allows user to choose different types of quizzes based on languages.

Based on this choice, the network should "load" questions from different json sources within the /Languages/ folder.

As this is the template application, all loading of data should be mocked.

As this is the template application, please leave detailed notes on what future developers should do when using this template to complete their own module.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add 3 Quiz Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: Add Screen to choose what code language you'd like for quiz. Native_Kotlin/Template

Quiz application is currently tuned towards Android Quiz questions, Application should open to a screen allowing users to choose what type of quiz they would like to engage in.

Inside of the Native_Kotlin/Template module only, add a screen that allows user to pick which quiz they'd like to engage in.
Describe the solution you'd like

Developer will create a "pick a quiz" fragment or activity that allows user to choose different types of quizzes based on languages.

Based on this choice, the network should "load" questions from different .json sources within the /Languages/ folder.

As this is the template application, all loading of data should be mocked.

As this is the template application, please leave detailed notes on what future developers should do when using this template to complete their own module.

Feature: [Java] - Splash Screen Activity for native_java/base

Please Create a splash screen for the application within the native_java/base folder.

Splash screen should cover the full screen, the application should open to the splash screen, display it for a few seconds then move on to the next activity.

Additional Resources:

A guide on 3 different ways to complete this.

My brother's approved PR where you can review his code

#102

Splash screen is of your choosing but try to make it look professional :D Look at other applications for inspiration. Here is a great resource Freepik- For providing awesome gradient pictures.

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Add To Question Or Answers Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Feature: [Kotlin] - Splash Screen Activity for native_kotlin/retrofit

Please Create a splash screen for the application within the native_java/retrofit folder.

Splash screen should cover the full screen, the application should open to the splash screen, display it for a few seconds then move on to the next activity.

Splash screen is of your choosing but try to make it look professional :D Look at other applications for inspiration. Here is a great resource Freepik- For providing awesome gradient pictures.

Additional Resources:

A guide on 3 different ways to complete this.

My brother's approved PR where you can review his code

#102

Feature: [Kotlin] - Splash Screen Activity for native_kotlin/template

Please Create a splash screen for the application within the native_kotlin/retrofit folder.

Splash screen should cover the full screen, the application should open to the splash screen, display it for a few seconds then move on to the next activity.

Splash screen is of your choosing but try to make it look professional :D Look at other applications for inspiration. Here is a great resource Freepik- For providing awesome gradient pictures.

Additional Resources:

A guide on 3 different ways to complete this.

My brother's approved PR where you can review his code

#102

Add 3 Quiz Questions or Answers to Json

Level 1 Contributions - Add a minimal of 3 objects to the questions or answers json of your choice.

We are using Json to create a list of frequently given interview questions and answers for different languages!
In every directory, you will find two files questions and answers

If you'd like to contribute to questions.json:

  1. Fork this repo

  2. Navigate to the language folder you would like to contribute to.

  3. Open Questions, here copy the last item in the list, and fill in each label.

    id: incremental number.

    question: An interview question.

    details: An in depth answer of the question, no more than 150 characters.

    questionType: "multi" for a multiple answer type question, or "bool" for a true or false type question.

    trueOrFalse: if your question is multi, leave this false. If your question is true or false, type the correct answer.

    shortAns: The One Sentence Answer to your question PLEASE DO NOT INCLUDE THE TERM/SUBJECT USED IN THE QUESTION HERE, also Prefix with "it is", Please keep these less than 60 Characters

    tag: A one word tag that specifies what part of a project your question is in reference to.

    Please make sure to match the syntax of the previous items. Questions should end with a punctuation mark.
    Example: Please Make sure to start "shortAns" with "It is" (ie if the answer is "a cat" then say "It is a cat."

    {
    "id": 0,

    "question": "What is Android?",

    "details": "Android is a stack of software for mobile devices which includes an Operating System, middleware and some key applications. The application executes within its own process and its own instance of Dalvik Virtual Machine.",

    "questionType": "multi",

    "trueOrFalse": false,

    "shortAns": "It is a stack of software for mobile devices.",

    "tag": "android"
    },

    {

    "id": 1,

    "question": "The Android Operating System runs on many different devices?",

    "details": "Android operating system devices — including computers, digital cameras, media players, notebooks, and smartphones. There are now more than 24,000 different Android devices.",

    "questionType": "bool",

    "trueOrFalse": true,

    "shortAns": "**NOTHING GOES HERE FOR BOOLEAN QUESTIONS" = "",

    "tag": "Operating System"

    }

  4. Open Contributors.md file and add your name and relevant information.

  5. Make Pull Request.

Json Objects in the Answers.json are terms that will be used to hide the correct answer supplied by an item from Questions. json. Please Make sure to start "Answer" with "It is" (ie if the answer is "a cat" then say "It is a cat."

If you'd like to contribute to answers.json:

  1. Fork this repo
  2. Navigate to the language folder you would like to contribute to.
  3. Open Answers.json, here copy the last item in the list, and fill in each label.

answer: A topic with a basic small description.
details: Detailed Information on the subject supplied in Answer, no more than 150 characters.

Please make sure to match the syntax of the previous items. Answers should end with a punctuation mark.
Example:

{

  "answer": "**It is** everything you can see on the screen of the app.",
  
  "details": "Think of the individual UI elements like buttons, labels, and text fields."

},

{

  "answer": "**It is** a month-long celebration of open source software run by DigitalOcean.",
  
  "details": "Hacktoberfest encourages participation in the open source community, which grows bigger every year. Complete the 2021 challenge and earn a limited edition T-shirt."
  
}
  1. Open Contributers.md file and add your name and relevant information.
  2. Make Pull Request.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.