├── .gitignore ├── contributing.md ├── code-of-conduct.md ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | pip-wheel-metadata/ 24 | share/python-wheels/ 25 | *.egg-info/ 26 | .installed.cfg 27 | *.egg 28 | MANIFEST 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .nox/ 44 | .coverage 45 | .coverage.* 46 | .cache 47 | nosetests.xml 48 | coverage.xml 49 | *.cover 50 | *.py,cover 51 | .hypothesis/ 52 | .pytest_cache/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | target/ 76 | 77 | # Jupyter Notebook 78 | .ipynb_checkpoints 79 | 80 | # IPython 81 | profile_default/ 82 | ipython_config.py 83 | 84 | # pyenv 85 | .python-version 86 | 87 | # pipenv 88 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 89 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 90 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 91 | # install all needed dependencies. 92 | #Pipfile.lock 93 | 94 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 95 | __pypackages__/ 96 | 97 | # Celery stuff 98 | celerybeat-schedule 99 | celerybeat.pid 100 | 101 | # SageMath parsed files 102 | *.sage.py 103 | 104 | # Environments 105 | .env 106 | .venv 107 | env/ 108 | venv/ 109 | ENV/ 110 | env.bak/ 111 | venv.bak/ 112 | 113 | # Spyder project settings 114 | .spyderproject 115 | .spyproject 116 | 117 | # Rope project settings 118 | .ropeproject 119 | 120 | # mkdocs documentation 121 | /site 122 | 123 | # mypy 124 | .mypy_cache/ 125 | .dmypy.json 126 | dmypy.json 127 | 128 | # Pyre type checker 129 | .pyre/ 130 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contribution 2 | 3 | This project welcomes contributions from the community. All contributions to this repository must be 4 | signed as described on that page. Your signature certifies that you wrote the patch or have the right to pass it on 5 | as an open-source patch. 6 | 7 | ## Contribution Flow 8 | 9 | This is a rough outline of what a contributor's workflow looks like: 10 | 11 | - Create a topic branch from where you want to base your work 12 | - Make commits of logical units 13 | - Make sure your commit messages are in the proper format (see below) 14 | - Push your changes to a topic branch in your fork of the repository 15 | - Submit a pull request 16 | 17 | Example: 18 | 19 | ``` shell 20 | git remote add upstream https://github.com/paulveillard/ 21 | git checkout -b my-new-feature master 22 | git commit -a 23 | git push origin my-new-feature 24 | ``` 25 | 26 | ### Staying In Sync With Upstream 27 | 28 | When your branch gets out of sync with the paulveillard/master branch, use the following to update: 29 | 30 | ``` shell 31 | git checkout my-new-feature 32 | git fetch -a 33 | git pull --rebase upstream master 34 | git push --force-with-lease origin my-new-feature 35 | ``` 36 | 37 | ### Updating pull requests 38 | 39 | If your PR fails to pass CI or needs changes based on code review, you'll most likely want to squash these changes into 40 | existing commits. 41 | 42 | If your pull request contains a single commit or your changes are related to the most recent commit, you can simply 43 | amend the commit. 44 | 45 | ``` shell 46 | git add . 47 | git commit --amend 48 | git push --force-with-lease origin my-new-feature 49 | ``` 50 | 51 | If you need to squash changes into an earlier commit, you can use: 52 | 53 | ``` shell 54 | git add . 55 | git commit --fixup 56 | git rebase -i --autosquash master 57 | git push --force-with-lease origin my-new-feature 58 | ``` 59 | 60 | Be sure to add a comment to the PR indicating your new changes are ready to review, as GitHub does not generate a 61 | notification when you git push. 62 | 63 | ### Code Style 64 | 65 | ### Formatting Commit Messages 66 | 67 | We follow the conventions on [How to Write a Git Commit Message](http://chris.beams.io/posts/git-commit/). 68 | 69 | Be sure to include any related GitHub issue references in the commit message. See 70 | [GFM syntax](https://guides.github.com/features/mastering-markdown/#GitHub-flavored-markdown) for referencing issues 71 | and commits. 72 | 73 | ## Reporting Bugs and Creating Issues 74 | 75 | When opening a new issue, try to roughly follow the commit message format conventions above. 76 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in 6 | ansible-security-hardening project and our community a harassment-free 7 | experience for everyone, regardless of age, body size, visible or invisible 8 | disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at info@paulveillard.com. 63 | All complaints will be reviewed and investigated promptly and fairly. 64 | 65 | All community leaders are obligated to respect the privacy and security of the 66 | reporter of any incident. 67 | 68 | ## Enforcement Guidelines 69 | 70 | Community leaders will follow these Community Impact Guidelines in determining 71 | the consequences for any action they deem in violation of this Code of Conduct: 72 | 73 | ### 1. Correction 74 | 75 | **Community Impact**: Use of inappropriate language or other behavior deemed 76 | unprofessional or unwelcome in the community. 77 | 78 | **Consequence**: A private, written warning from community leaders, providing 79 | clarity around the nature of the violation and an explanation of why the 80 | behavior was inappropriate. A public apology may be requested. 81 | 82 | ### 2. Warning 83 | 84 | **Community Impact**: A violation through a single incident or series 85 | of actions. 86 | 87 | **Consequence**: A warning with consequences for continued behavior. No 88 | interaction with the people involved, including unsolicited interaction with 89 | those enforcing the Code of Conduct, for a specified period of time. This 90 | includes avoiding interactions in community spaces as well as external channels 91 | like social media. Violating these terms may lead to a temporary or 92 | permanent ban. 93 | 94 | ### 3. Temporary Ban 95 | 96 | **Community Impact**: A serious violation of community standards, including 97 | sustained inappropriate behavior. 98 | 99 | **Consequence**: A temporary ban from any sort of interaction or public 100 | communication with the community for a specified period of time. No public or 101 | private interaction with the people involved, including unsolicited interaction 102 | with those enforcing the Code of Conduct, is allowed during this period. 103 | Violating these terms may lead to a permanent ban. 104 | 105 | ### 4. Permanent Ban 106 | 107 | **Community Impact**: Demonstrating a pattern of violation of community 108 | standards, including sustained inappropriate behavior, harassment of an 109 | individual, or aggression toward or disparagement of classes of individuals. 110 | 111 | **Consequence**: A permanent ban from any sort of public interaction within 112 | the community. 113 | 114 | ## Attribution 115 | 116 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 117 | version 2.0, available at 118 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 119 | 120 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 121 | enforcement ladder](https://github.com/mozilla/diversity). 122 | 123 | [homepage]: https://www.contributor-covenant.org 124 | 125 | For answers to common questions about this code of conduct, see the FAQ at 126 | https://www.contributor-covenant.org/faq. Translations are available at 127 | https://www.contributor-covenant.org/translations. 128 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Engineering Interview Questions 2 | 3 | ###### Welcome to the The World of Enginering Interview Questions in Cybersecurity: 4 | > A collection of awesome framework, libraries, learning tutorials, videos, webcasts, technical resources and cool stuff about Interview for Security & Computer Engineering. 5 | > Thanks to all contributors, you're awesome and wouldn't be possible without you! Our goal is to build a categorized community-driven collection of very well-known resources. 6 | 7 | 8 | ## `Table of Contents` 9 | 10 | - [Programming Languages/Frameworks/Platforms](#programming-languagesframeworksplatforms) 11 | - [Android](#android) 12 | - [AngularJS](#angularjs) 13 | - [Angular](#angular) 14 | - [BackboneJS](#backbonejs) 15 | - [C++](#c) 16 | - [C](#c-1) 17 | - [C♯](#c-2) 18 | - [.NET](#net) 19 | - [Clojure](#clojure) 20 | - [CSS](#css) 21 | - [Cucumber](#cucumber) 22 | - [Django](#django) 23 | - [Docker](#docker) 24 | - [Elastic](#elastic) 25 | - [EmberJS](#emberjs) 26 | - [Erlang](#erlang) 27 | - [Golang](#golang) 28 | - [GraphQl](#graphql) 29 | - [HTML](#html) 30 | - [Ionic](#ionic) 31 | - [iOS](#ios) 32 | - [Java](#java) 33 | - [JavaScript](#javascript) 34 | - [jQuery](#jquery) 35 | - [Front-end build tools](#front-end-build-tools) 36 | - [KnockoutJS](#knockoutjs) 37 | - [Less](#less) 38 | - [Lisp](#lisp) 39 | - [NodeJS](#nodejs) 40 | - [Objective-C](#objective-c) 41 | - [PHP](#php) 42 | - [Python](#python) 43 | - [ReactJS](#reactjs) 44 | - [Rails](#ruby-on-rails) 45 | - [Ruby](#ruby) 46 | - [Rust](#rust) 47 | - [Sass](#sass) 48 | - [Scala](#scala) 49 | - [Shell](#shell) 50 | - [Spark](#spark) 51 | - [Swift](#swift) 52 | - [Vue.js](#vuejs) 53 | - [Wordpress](#wordpress) 54 | - [TypeScript](#typescript) 55 | 56 | - [Database technologies](#database-technologies) 57 | - [Cassandra](#cassandra) 58 | - [Microsoft Access](#microsoft-access) 59 | - [MongoDB](#mongodb) 60 | - [MySQL](#mysql) 61 | - [Neo4j](#neo4j) 62 | - [Oracle](#oracle) 63 | - [Postgres](#postgres) 64 | - [SQL](#sql) 65 | - [SQL Lite](#sql-lite) 66 | - [Caching technologies](#caching-technologies) 67 | - [Memcached](#memcached) 68 | - [Redis](#redis) 69 | 70 | - [OS](#os) 71 | - [Linux](#linux) 72 | - [Windows](#windows) 73 | - [Algorithms](#algorithms) 74 | - [Blockchain](#blockchain) 75 | - [Coding exercises](#coding-exercises) 76 | - [Comprehensive lists](#comprehensive-lists) 77 | - [Design patterns](#design-patterns) 78 | - [Data structures](#data-structures) 79 | - [Networks](#networks) 80 | - [Security](#security) 81 | - [Data Science](#data-science) 82 | 83 | **[`^ back to top ^`](#)** 84 | 85 | ## `Programming Languages/Frameworks/Platforms` 86 | 87 | ### Android 88 | 89 | * [10 Android interview question answers for Freshers](http://www.careerride.com/android-interview-questions.aspx) 90 | * [20 Essential Android Interview Questions from Toptal](http://www.toptal.com/android/interview-questions) 91 | * [25 Essential Android Interview Questions from Adeva](https://adevait.com/android/interview-questions) 92 | * [A couple of Android questions posted by Quora users](https://www.quora.com/What-are-good-job-interview-questions-for-an-Android-developer) 93 | * [A great list of Android interview questions covering all the aspects of this career](http://www.tutorialspoint.com/android/android_interview_questions.htm) 94 | * [Collection of Android and Java related questions and topics, including general developer questions, Java core, Data structures, Build Tools, Programming Paradigms, Core Android, Databases and etc](https://github.com/derekargueta/Android-Interview-Questions) 95 | * [Collection of Android and Java questions divided by experience](https://medium.com/@neteinstein/not-another-android-interviews-article-the-questions-3dedafa30bec) 96 | * [RocketSkill App Android Interview Questions](https://github.com/mindash/android-structured-interview) 97 | * [Android cheat sheet: Coding program, Data structure, Android and Java interview questions with answers and categorized by topics](https://github.com/anitaa1990/Android-Cheat-sheet) 98 | * [Android Interview Questions And Answers From Beginner To Advanced](https://www.andreasschrade.com/2017/02/23/android-interview-questions/) 99 | * [Interview Questions for Senior Android Developers](https://github.com/mohsenoid/Android-Interview-Questions) 100 | * [35+ Android Interview Questions](https://www.interviewbit.com/android-interview-questions/) 101 | 102 | **[`^ back to top ^`](#)** 103 | 104 | ### AngularJS 105 | 106 | * [12 Essential AngularJS Interview Questions from Toptal](http://www.toptal.com/angular-js/interview-questions) 107 | * [An AngularJS exam with questions from beginner to expert by @gdi2290 from @AngularClass](https://github.com/gdi2290/ngExam) 108 | * [29 AngularJS Interview Questions – Can You Answer Them All? Great Article from Codementor](https://www.codementor.io/angularjs/tutorial/angularjs-interview-questions-sample-answers) 109 | * [AngularJS interview questions and answers for experienced developers](http://www.web-technology-experts-notes.in/2014/11/angularjs-interview-questions-and-answers-for-experienced.html) 110 | * [AngularJS Interview Questions which have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of AngularJS](http://www.tutorialspoint.com/angularjs/angularjs_interview_questions.htm) 111 | * [This article discusses the top 50 Most occurred AngularJS interview question with answers](http://www.codeproject.com/Articles/891718/AngularJS-Interview-Questions-and-Answers) 112 | * [Top 25 Angularjs Interview Questions and Quiz](http://career.guru99.com/top-25-angular-js-interview-questions/) 113 | * [100 AngularJS Interview Questions - Quick Refresher](https://www.techbeamers.com/latest-angularjs-interview-questions-answers/) 114 | 115 | **[`^ back to top ^`](#)** 116 | 117 | ### Angular 118 | 119 | * [A list of helpful Angular related questions you can use to interview potential candidates, test yourself or completely ignore](https://github.com/Yonet/Angular-Interview-Questions) 120 | * [Angular 2 Interview Questions](https://www.onlineinterviewquestions.com/angular2-interview-questions/) 121 | * [List of 300 Angular Interview Questions and Answers](https://github.com/sudheerj/angular-interview-questions) 122 | * [Angular Interview Questions (2020)](https://www.interviewbit.com/angular-interview-questions/) 123 | * [Top Angular Interview Questions and Answers in 2021](https://hackr.io/blog/angular-interview-questions) 124 | 125 | ### BackboneJS 126 | 127 | * [8 Essential Backbonejs Interview Questions from Toptal](http://www.toptal.com/backbone-js/interview-questions) 128 | * [Backbonejs Interview Questions And Answers from web technology experts notes](http://www.web-technology-experts-notes.in/2015/01/backbone-js-interview-questions-and-answers.html) 129 | * [Top 25 Backbone.js interview questions](http://career.guru99.com/top-25-backbone-js-interview-questions/) 130 | 131 | ### C++ 132 | 133 | * [1000+ Multiple Choice Questions & Answers in C++ with explanations](http://www.sanfoundry.com/cplusplus-interview-questions-answers/) 134 | * [200 C++ interview questions and answers](http://www.careerride.com/C++-Interview-questions-Answer.aspx) 135 | * [24 Essential C++ Interview Questions from Toptal](http://www.toptal.com/c-plus-plus/interview-questions) 136 | * [C++ Interview Questions from GeekInterview](http://www.geekinterview.com/Interview-Questions/Languages/C-Plus-Plus) 137 | * [C++ Programming Q&A and quizzes from computer science portal for geeks](http://www.geeksforgeeks.org/c-plus-plus/) 138 | * [C++ Programming Questions and Answers related to such topics as OOPs concepts, Object and Classes, Functions, Constructors and Destructors, Inheritance and etc](http://www.indiabix.com/cpp-programming/questions-and-answers/) 139 | * [LeetCode Problems' Solutions written in C++](https://github.com/haoel/leetcode) 140 | 141 | ### C 142 | 143 | * [Basic C language technical frequently asked interview questions and answers It includes data structures, pointers interview questions and answers for experienced](http://www.cquestions.com/2010/10/c-interview-questions-and-answers.html) 144 | * [C Programming Interview Questions and Answers for such topics as Bits and Bytes, Preprocessors, Functions, Strings, Language basics and etc](http://www.indiabix.com/technical/c/) 145 | * [C Programming Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of C Programming](http://www.tutorialspoint.com/cprogramming/cprogramming_interview_questions.htm) 146 | * [First set of commonly asked C programming interview questions from computer science portal for geeks](http://geeksquiz.com/commonly-asked-c-programming-interview-questions-set-1/) 147 | * [Second set of commonly asked C programming interview questions from computer science portal for geeks](http://geeksquiz.com/commonly-asked-c-programming-interview-questions-set-2/) 148 | * [9 Essential C Interview Questions with answers](https://www.toptal.com/c/interview-questions) 149 | * [Top C Interview Questions and Answers](https://www.interviewbit.com/c-interview-questions/) 150 | 151 | ### C# 152 | 153 | * [15 Essential C# Interview Question from Toptal](http://www.toptal.com/c-sharp/interview-questions) 154 | * [C# interview questions from dotnetfunda.com](http://www.dotnetfunda.com/interviews/cat/6/csharp) 155 | * [Top 50 C# Interview Questions & Answers](http://career.guru99.com/top-50-c-sharp-interview-questions-answers/) 156 | * [50 C# Coding Interview Questions and Answers](https://www.techbeamers.com/csharp-coding-interview-questions-developers/) 157 | * [20 C# OOPS Interview Questions and Answers](https://www.techbeamers.com/csharp-oops-interview-questions-answers/) 158 | * [30+ C# Interview Questions](https://www.interviewbit.com/c-sharp-interview-questions/) 159 | 160 | ### .NET 161 | 162 | * [300 ASPNET interview questions and answers](http://www.careerride.com/ASPNet-Questions.aspx) 163 | * [ASP.NET Core Interview Questions](https://www.talkingdotnet.com/asp-net-core-interview-questions/) 164 | * [Great list of NET interview questions covering all the NET platform topics](http://www.indiabix.com/technical/dotnet/) 165 | * [NET Interview Questions and Answers for Beginners which consists of the most frequently asked questions in NET This list of 100+ questions and answers gauge your familiarity with the NET platform](http://www.dotnetcurry.com/dotnetinterview/70/dotnet-interview-questions-answers-beginners) 166 | * [Questions gathered by community of the StackOverflow](http://stackoverflow.com/questions/365489/questions-every-good-net-developer-should-be-able-to-answer) 167 | * [What Great NET Developers Ought To Know (More NET Interview Questions)](http://www.hanselman.com/blog/WhatGreatNETDevelopersOughtToKnowMoreNETInterviewQuestions.aspx) 168 | 169 | ### Clojure 170 | 171 | * [Classic 'Fizz Buzz' interview question for Clojure developers](http://www.learningclojure.com/2014/05/fizz-buzz-interview-question.html) 172 | * [Clojure Interview Questions for experienced devs](http://ita2zguide.blogspot.com.by/p/cc.html) 173 | * [Coding exercises in Clojure, handy practice for technical interview questions](https://github.com/dpetrovics/coding-exercises) 174 | * [Experience and questions from Clojure developer interview collected by Reddit users](https://www.reddit.com/r/Clojure/comments/34qhha/clojure_coding_job_interview_experience/) 175 | * [Interview cake Clojure solutions](https://github.com/DerekCuevas/interview-cake-clj) 176 | 177 | ### CSS 178 | 179 | * [CSS interview questions and answers for freshers and experienced candidates Also there you can find CSS online practice tests to fight written tests and certification exams on CSS](http://www.careerride.com/Interview-Questions-CSS.aspx) 180 | * [Development hiring managers and potential interviewees may find there sample CSS proficiency interview Q&As and code snippets useful](http://www.techrepublic.com/blog/software-engineer/css-interview-questions-and-answers/) 181 | * [Interview Questions and Exercises About CSS](https://css-tricks.com/interview-questions-css/) 182 | * [Top 50 CSS(Cascading Style Sheet) Interview Questions covering the most of tricky CSS moments](http://career.guru99.com/top-50-csscascading-style-sheet-interview-questions/) 183 | * [Front End Interview Handbook - CSS Questions and Answers](https://frontendinterviewhandbook.com/css-questions/) 184 | 185 | ### Cucumber 186 | 187 | * [Cucumber Web Application BDD Sample Interview Questions](https://ratedr05.wordpress.com/2017/09/22/cucumber-interview-questions/) 188 | * [Guide to building a simple Cucumber + Watir page object pattern framework](http://watir.com/simple-cucumber-watir-page-object-pattern-framework/) 189 | 190 | ### Django 191 | 192 | * [Some abstract interview questions for Python/Django developers](http://insights.dice.com/2014/04/30/interview-questions-pythondjango-developers/) 193 | * [Some Django basic interview questions to establish the basic level of the candidates](http://www.ilian.io/django-interview-questions/) 194 | * [Top 16 Django Interview Questions for both freshers and experienced developers](http://career.guru99.com/top-16-django-interview-questions/) 195 | 196 | ### Docker 197 | 198 | * [Docker Interview Questions](https://mindmajix.com/docker-interview-questions) 199 | * [Top Docker Interview Questions You Must Prepare In 2019](https://www.edureka.co/blog/interview-questions/docker-interview-questions/) 200 | * [Top Docker Interview Questions And Answers](https://intellipaat.com/interview-question/docker-interview-questions/) 201 | * [DOCKER (SOFTWARE) INTERVIEW QUESTIONS & ANSWERS](https://www.wisdomjobs.com/e-university/docker-software-interview-questions.html) 202 | * [30 Docker Interview Questions and Answers in 2019](https://www.fullstack.cafe/blog/docker-interview-questions-and-answers) 203 | * [Docker Interview Questions & Answers](https://www.interviewbit.com/docker-interview-questions/) 204 | * [Top 50 Docker Interview Questions & Answers](https://www.wissenhive.com/blogs/top-50-docker-interview-questions-and-answers) 205 | * [Top 50+ Docker Interview Questions and Answers in 2021](https://www.techgeekbuzz.com/top-docker-interview-questions/) 206 | 207 | ### Elastic 208 | 209 | * [Top Elastic Stack Interview Questions](https://logit.io/blog/post/the-top-50-elk-stack-and-elasticsearch-interview-questions) 210 | 211 | ### EmberJS 212 | 213 | * [8 Essential Emberjs Interview Questions from Toptal](http://www.toptal.com/emberjs/interview-questions) 214 | * [Top 25 Emberjs Interview Questions for both freshers and experienced developers](http://career.guru99.com/top-25-ember-js-interview-questions/) 215 | 216 | ### Erlang 217 | 218 | * [Top 22 Erlang Interview Questions for both freshers and experienced developers](http://career.guru99.com/top-22-erlang-interview-questions/) 219 | 220 | ### Golang 221 | 222 | * [Solutions for Elements of Programming Interviews problems written in Golang](https://github.com/mrekucci/epi) 223 | * [Solutions for some basic coding interview tasks written in Go](https://github.com/efischer19/golang_ctci) 224 | * [Top 20 GO Programming Interview Questions for both freshers and experienced developers](http://career.guru99.com/top-20-go-programming-interview-questions/) 225 | 226 | ### GraphQl 227 | 228 | * [8 GraphQl Interview Questions To Know](https://www.fullstack.cafe/blog/5-graphql-interview-questions-you-should-know) 229 | * [How to GraphQl - Common Questions](https://www.howtographql.com/advanced/5-common-questions/) 230 | 231 | ### HTML 232 | 233 | * [10 Typical HTML Interview Exercises from SitePoint.com](http://www.sitepoint.com/10-typical-html-interview-exercises/) 234 | * [16 Essential HTML5 Interview Questions from Toptal](http://www.toptal.com/html5/interview-questions) 235 | * [40 important HTML 5 Interview questions with answers](http://www.codeproject.com/Articles/702051/important-HTML-Interview-questions-with-answe) 236 | * [HTML interview questions and answers for freshers and experienced candidates Also find HTML online practice tests to fight written tests and certification exams on HTML](http://www.careerride.com/Interview-Questions-HTML.aspx) 237 | * [Top 50 HTML Interview Questions for both freshers and experienced developers](http://career.guru99.com/top-50-html-interview-questions/) 238 | * [Common HTML interview questions for freshers](http://www.javatpoint.com/html-interview-questions) 239 | * [Front End Interview Handbook - HTML Questions and Answers](https://frontendinterviewhandbook.com/html-questions/) 240 | * [30 HTML Interview Questions and Answers](https://www.techbeamers.com/latest-html-interview-questions/) 241 | * [30+ HTML Interview Questions (2021)](https://www.interviewbit.com/html-interview-questions/) 242 | 243 | ### Ionic 244 | 245 | * [23 Beginner Level Ionic Framework Questions](http://www.codeandyou.com/p/ionic-interview-questions.html) 246 | * [12 Essential Ionic Interview Questions](https://www.toptal.com/ionic/interview-questions) 247 | * [45 Ionic Interview Questions](https://www.javatpoint.com/ionic-interview-questions) 248 | * [Most Asked Ionic Interview Questions](https://www.maheshbhusanoor.com/article/ionic-interview-questions-answers.html) 249 | 250 | ### iOS 251 | 252 | * [14 Essential iOS Interview Questions from Toptal](http://www.toptal.com/ios/interview-questions) 253 | * [20 iOS Developer Interview Questions and Answers for getting you ready for your interview](https://www.codementor.io/ios/tutorial/ios-interview-tips-questions-answers-objective-c) 254 | * [25 Essential iOS Interview Questions from Adeva](https://adevait.com/ios/interview-questions) 255 | * [A small guide to help those looking to hire a developer or designer for iOS work While tailored for iOS, many questions could be used for Android developers or designers as well A great self-test if you're looking to keep current or practice for your own interview](https://github.com/CameronBanga/iOS-Developer-and-Designer-Interview-Questions) 256 | * [All you need to know about iOS technical interview including some tips for preparing, questions and some coding exercises](http://www.raywenderlich.com/53962/ios-interview-questions) 257 | * [Interview Questions for iOS and Mac Developers from the CEO of Black Pixel](https://blackpixel.com/writing/2013/04/interview-questions-for-ios-and-mac-developers-1.html) 258 | * [iOS Interview Questions and Answers including such topics as Development Basics, App states and multitasking, App states, Core app objects](http://www.geekinterview.com/Interview-Questions/iOS) 259 | * [iOS Interview Questions For Senior Developers](https://m.smartcloud.io/ios-interview-questions-for-senior-developers-in-2017-a94cc81c8205) 260 | * [50 iOS Interview Questions And Answers 1](https://medium.com/ios-os-x-development/ios-interview-questions-13840247a57a) 261 | * [50 iOS Interview Questions And Answers Part 2](https://medium.com/ios-os-x-development/50-ios-interview-questions-and-answers-part-2-45f952230b9f) 262 | * [50 iOS Interview Questions And Answers Part 3](https://medium.com/ios-os-x-development/50-ios-interview-questions-and-answers-part-3-3fad146b6c3d) 263 | * [50 iOS Interview Questions And Answers Part 4](https://medium.com/@duruldalkanat/50-ios-interview-questions-and-answers-part-4-6f26b26341a) 264 | * [50 iOS Interview Questions And Answers Part 5](https://medium.com/@duruldalkanat/50-ios-interview-questions-and-answers-part-5-de6241374a8f) 265 | * [10 iOS interview questions and answers](https://www.upwork.com/i/interview-questions/ios/) 266 | * [iOS Developer and Designer Interview Questions](https://github.com/9magnets/iOS-Developer-and-Designer-Interview-Questions#tech) 267 | * [IOS Interview Questions and Answers](http://www.thecrazyprogrammer.com/2015/11/ios-interview-questions-and-answers.html) 268 | * [iOS Interview Questions For Beginners](http://ichuiphonedev.blogspot.com/2014/05/iphone-latest-interview-questions-and.html) 269 | * [Babylon iOS Interview Questions](https://github.com/Babylonpartners/ios-playbook/blob/master/Interview/questions.md) 270 | * [RocketSkill App iOS Interview Questions](https://github.com/mindash/iOS-structured-interview) 271 | * [iOS Static vs Dynamic Dispatch](https://medium.com/flawless-app-stories/static-vs-dynamic-dispatch-in-swift-a-decisive-choice-cece1e872d) 272 | 273 | ### Java 274 | 275 | * [List of Java programs for interview Categoriwise](https://onurdesk.com/category/interview/interview-program-java/) 276 | * [115 Java Interview Questions and Answers – The ULTIMATE List](http://www.javacodegeeks.com/2014/04/java-interview-questions-and-answers.html) 277 | * [37 Java Interview Questions to Practice With from Codementor](https://www.codementor.io/java/tutorial/java-interview-sample-questions-answers) 278 | * [21 Essential Java Interview Questions](http://www.toptal.com/java/interview-questions) 279 | * [Top 30 Core Java Interview Questions](https://www.janbasktraining.com/blog/core-java-interview-questions-answers/) 280 | * [29 Essential Java Interview Questions from Adeva](https://adevait.com/java/interview-questions) 281 | * [A collection of Java interview questions and answers to them](https://github.com/svozniuk/java-interviews) 282 | * [Data Structures and Algorithms in Java which can be useful in interview process](https://github.com/donbeave/interview) 283 | * [Java Interview Questions: How to crack the TOP 15 questions](https://blog.udemy.com/java-interview-questions/) 284 | * [300 Core Java Interview Questions](http://www.javatpoint.com/corejava-interview-questions) 285 | * [Top 10 Tricky Java interview questions and Answers](http://java67.blogspot.com.by/2012/09/top-10-tricky-java-interview-questions-answers.html) 286 | * [Top 25 Most Frequently Asked Interview Core Java Interview Questions And Answers](http://javahungry.blogspot.com/2013/06/top-25-most-frequently-asked-core-java.html) 287 | * [Top 40 Core Java Interview Questions Answers from Telephonic Round](http://java67.blogspot.sg/2015/03/top-40-core-java-interview-questions-answers-telephonic-round.html) 288 | * [Top 50 Spring Interview Questions You Must Prepare For In 2020](https://www.edureka.co/blog/interview-questions/spring-interview-questions/) 289 | * [Spring Interview Questions And Answers](https://www.journaldev.com/2696/spring-interview-questions-and-answers) 290 | * [Interview Cake Java Interview Questions](https://www.interviewcake.com/java-interview-questions) 291 | * [Java Interview Questions & Quizzes](https://www.techbeamers.com/java-interview-questions/) 292 | * [Essetial Java Interview Questions](https://fdk.codes/some-java-interview-questions/) 293 | * [Fundamental Java Interview Questions](https://www.interviewbit.com/java-interview-questions/) 294 | 295 | ### JavaScript 296 | 297 | * [Practice common algorithms using JavaScript](https://github.com/ignacio-chiazzo/Algorithms-Leetcode-Javascript) 298 | * [10 Interview Questions Every JavaScript Developer Should Know](https://medium.com/javascript-scene/10-interview-questions-every-javascript-developer-should-know-6fa6bdf5ad95) 299 | * [21 Essential JavaScript Interview Questions from best mentors all over the world](https://www.codementor.io/javascript/tutorial/21-essential-javascript-tech-interview-practice-questions-answers) 300 | * [20 Essential JavaScript Interview Questions from Adeva](https://adevait.com/javascript-developers/interview-questions) 301 | * [37 Essential JavaScript Interview Questions from Toptal](http://www.toptal.com/javascript/interview-questions) 302 | * [5 More JavaScript Interview Exercises](http://www.sitepoint.com/5-javascript-interview-exercises/) 303 | * [5 Typical JavaScript Interview Exercises](http://www.sitepoint.com/5-typical-javascript-interview-exercises/) 304 | * [Development hiring managers and potential interviewees may find these sample JavaScript proficiency interview Q&As and code snippets useful](http://www.techrepublic.com/blog/software-engineer/javascript-interview-questions-and-answers/) 305 | * [123 Essential JavaScript Interview Question](https://github.com/nishant8BITS/123-Essential-JavaScript-Interview-Question) 306 | * [JavaScript Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of JavaScript](http://www.tutorialspoint.com/javascript/javascript_interview_questions.htm) 307 | * [JS: Basics and Tricky Questions](http://www.thatjsdude.com/interview/js2.html) 308 | * [JS: Interview Algorithm](http://thatjsdude.com/interview/js1.html) 309 | * [Some basic javascript coding challenges and interview questions](https://github.com/kolodny/exercises) 310 | * [Some JavaScript interview exercises](https://github.com/csvenja/javascript-exercises) 311 | * [Ten Questions I've Been Asked, Most More Than Once, Over Six Technical JavaScript / Front-End Engineer Job Interviews.](https://www.reddit.com/r/javascript/comments/3rb88w/ten_questions_ive_been_asked_most_more_than_once) 312 | * [Top 85 JavaScript Interview Questions](http://career.guru99.com/top-85-javascript-interview-questions/) 313 | * [Interview Cake JavaScript Interview Questions](https://www.interviewcake.com/javascript-interview-questions) 314 | * [The Best Frontend JavaScript Interview Questions (written by a Frontend Engineer)](https://performancejs.com/post/hde6d32/The-Best-Frontend-JavaScript-Interview-Questions-(written-by-a-Frontend-Engineer)) 315 | * [10 JavaScript Concepts You Need to Know for Interviews](https://dev.to/arnavaggarwal/10-javascript-concepts-you-need-to-know-for-interviews) 316 | * [Front End Interview Handbook - JavaScript Questions and Answers](https://frontendinterviewhandbook.com/javascript-questions/) 317 | * [JavaScript Interview Questions - Quick Refresher](https://www.techbeamers.com/javascript-interview-questions-answers/) 318 | * [The MEGA Interview Guide](https://github.com/danieldelcore/mega-interview-guide) 319 | * [Javascript Interview Questions and Answers (2020)](https://www.interviewbit.com/javascript-interview-questions/) 320 | * [JavaScript Modern Interview Code Challenges 2021](https://github.com/sadanandpai/javascript-code-challenges) 321 | * [70 JavaScript Interview Questions](https://dev.to/macmacky/70-javascript-interview-questions-5gfi) 322 | 323 | ### jQuery 324 | 325 | * [Top 50 jquery interview questions](https://career.guru99.com/top-50-jquery-interview-questions/) 326 | * [17 Essential jQuery Interview Questions From Toptal](https://www.toptal.com/jquery/interview-questions) 327 | * [Top JQuery Interview Questions and Answers](https://www.techgeekbuzz.com/top-jquery-interview-questions/) 328 | 329 | 330 | ### Front-end build tools 331 | 332 | * [Webpack interview questions & answers](https://github.com/styopdev/webpack-interview-questions) 333 | * [Gulp js interview questions](https://www.codeproject.com/Articles/1065184/Latest-Gulp-js-interview-questions) 334 | * [Grunt js interview questions for beginners](http://www.talkingdotnet.com/grunt-js-interview-questions/) 335 | * [Grunt js interview questions](https://mindmajix.com/grunt-interview-questions) 336 | 337 | ### KnockoutJS 338 | 339 | * [15 interview questions from CodeSample.com](http://www.code-sample.com/2014/01/knockout-js-interview-questions-and.html) 340 | * [20 questions you might be asked about KnockoutJS in an interview for both freshers and experienced developers](http://www.codeproject.com/Articles/987899/KnockoutJS-interview-questions) 341 | 342 | ### Less 343 | 344 | * [Top 25 LESS Interview Questions](http://career.guru99.com/top-25-less-interview-questions/) 345 | 346 | ### Lisp 347 | 348 | * [10 LISP Questions & Answers](http://www.sanfoundry.com/lisp-mcqs-class/) 349 | * [Top 18 Lisp Interview Questions from Career Guru](http://career.guru99.com/top-18-lisp-interview-questions/) 350 | 351 | ### NodeJS 352 | 353 | * [25 Essential Node.js Interview Questions from Adeva](https://adevait.com/nodejs/interview-questions) 354 | * [8 Essential Nodejs Interview Questions from Toptal](http://www.toptal.com/nodejs/interview-questions) 355 | * [Node.JS Interview Questions have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of Node.JS](http://www.tutorialspoint.com/nodejs/nodejs_interview_questions.htm) 356 | * [Node.js Interview Questions and Answers](https://blog.risingstack.com/node-js-interview-questions/) 357 | * [Top 25 Nodejs Interview Questions & Answers from Career Guru](http://career.guru99.com/top-25-interview-questions-on-node-js/) 358 | * [Top 30 Node.Js Interview Questions With Answers](https://www.techbeamers.com/top-30-node-js-interview-questions-answers/) 359 | * [Top Nodejs Interview Questions & Answers](https://www.interviewbit.com/node-js-interview-questions/) 360 | * [Node.js Interview Questions in Chinese](https://github.com/haizlin/fe-interview/blob/master/category/nodejs.md) 361 | * [Node.js Interview Questions by learning-zone](https://github.com/learning-zone/nodejs-interview-questions) 362 | 363 | ### Objective-C 364 | 365 | * [Interview Qs for Objective-C and Swift](http://insights.dice.com/2015/07/21/interview-qs-objective-c-swift/) 366 | * [iOS Interview Questions For Beginners](http://ichuiphonedev.blogspot.com/2014/05/iphone-latest-interview-questions-and.html) 367 | 368 | ### PHP 369 | 370 | * [100 PHP interview questions and answers from CareerRide.com](http://www.careerride.com/PHP-Interview-Questions.aspx) 371 | * [21 Essential PHP Interview Questions from Toptal](http://www.toptal.com/php/interview-questions) 372 | * [20 Common PHP Job Interview Questions and Answers](http://www.woodstitch.com/resources/php-interview-questions.php) 373 | * [25 Essential PHP Interview Questions from Adeva](https://adevait.com/php/interview-questions) 374 | * [PHP interview questions and answers for freshers](http://phpinterviewquestions.co.in/) 375 | * [Top 100 PHP Interview Questions & Answers from CareerGuru](http://career.guru99.com/top-100-php-interview-questions-answers/) 376 | * [25 PHP Interview Questions](https://www.codementor.io/php/tutorial/php-interview-questions-sample-answers) 377 | * [26 Essential PHP Interview Questions for 2018](https://pangara.com/blog/php-interview-questions) 378 | * [Cracking PHP Interviews Questions ebook 300+ Q&A](https://bootsity.com/books) 379 | * [PHP Interview Questions - Quick Refresher](https://www.techbeamers.com/latest-php-interview-questions-answers/) 380 | * [30+ PHP Interview Questions](https://www.interviewbit.com/php-interview-questions/) 381 | 382 | ### Python 383 | 384 | * [26 Essential Python Interview Questions from Adeva](https://adevait.com/python/interview-questions) 385 | * [20 Python interview questions and answers](http://www.careerride.com/python-interview-questions.aspx) 386 | * [11 Essential Python Interview Questions from Toptal](http://www.toptal.com/python/interview-questions) 387 | * [A listing of questions that could potentially be asked for a python job listing](https://github.com/sigmavirus24/python-interview-questions) 388 | * [Interview Questions for both beginners and experts](http://www.bogotobogo.com/python/python_interview_questions.php) 389 | * [Interview Cake Python Interview Questions](https://www.interviewcake.com/python-interview-questions) 390 | * [Python Frequently Asked Questions (Programming)](https://docs.python.org/2/faq/programming.html) 391 | * [Python interview questions collected by Reddit users](https://www.reddit.com/r/Python/comments/1knw7z/python_interview_questions) 392 | * [Top 25 Python Interview Questions from Career Guru](http://career.guru99.com/top-25-python-interview-questions/) 393 | * [Python Interview 10 questions from Corey Schafer](https://www.youtube.com/watch?v=DEwgZNC-KyE) 394 | * [Python interview questions. Part I. Junior](https://luminousmen.com/post/6) 395 | * [Python interview questions. Part II. Middle](https://luminousmen.com/post/7) 396 | * [Python interview questions. Part III. Senior](https://luminousmen.com/post/8) 397 | * [Python Interview Questions and Answers (2019)](https://www.interviewbit.com/python-interview-questions/) 398 | * [100 Python Interview Questions - Quick Refresher](https://www.techbeamers.com/python-interview-questions-programmers/) 399 | * [Top 100 Python Interview Questions from Edureka (2021)](https://www.edureka.co/blog/interview-questions/python-interview-questions/) 400 | 401 | ### Ruby on Rails 402 | 403 | * [20 Ruby on Rails interview questions and answers from CareerRide.com](http://www.careerride.com/ruby-on-rails-interview-questions.aspx) 404 | * [9 Essential Ruby on Rails Interview Questions from Toptal](http://www.toptal.com/ruby-on-rails/interview-questions) 405 | * [High-level Ruby on Rails Interview Questions](https://github.com/rishiip/ruby-on-rails-interview-questions) 406 | * [Ruby And Ruby On Rails interview Q&A](http://anilpunjabi.tumblr.com/post/25948339235/ruby-and-rails-interview-questions-and-answers) 407 | * [Some of the most frequently asked Ruby on Rails questions and how to answer them confidently](https://srikantmahapatra.wordpress.com/2013/11/07/ruby-on-rails-interview-questions-and-answers/) 408 | * [11 Ruby on Rails Interview Practice Questions](https://www.codementor.io/ruby-on-rails/tutorial/ruby-on-rails-interview-questions) 409 | * [Top 53 Ruby on Rails Interview Questions & Answers](https://career.guru99.com/top-34-ruby-on-rail-interview-questions/) 410 | * [10 Ruby on Rails interview questions and answers](https://www.upwork.com/i/interview-questions/ruby-on-rails/) 411 | 412 | ### ReactJS 413 | 414 | * [Reddit users share their expectations from ReactJS interview](https://www.reddit.com/r/reactjs/comments/3m5equ/react_what_interview_questions_to_expect/) 415 | * [5 Essential React.js Interview Questions](https://www.codementor.io/reactjs/tutorial/5-essential-reactjs-interview-questions) 416 | * [React Interview Questions](https://tylermcginnis.com/react-interview-questions/) 417 | * [Toptal's 21 Essential React.js Interview Questions](https://www.toptal.com/react/interview-questions) 418 | * [19 Essential ReactJs Interview Questions](https://www.educba.com/reactjs-interview-questions/) 419 | * [React Interview Questions & Answers](https://github.com/sudheerj/reactjs-interview-questions) 420 | 421 | ### Ruby 422 | 423 | * [21 Essential Ruby Interview Questions from Toptal](http://www.toptal.com/ruby/interview-questions) 424 | * [15 Questions to Ask During a Ruby Interview](https://gist.github.com/ryansobol/5252653) 425 | * [A list of questions about Ruby programming you can use to quiz yourself](https://github.com/undr/ruby-trivia) 426 | * [The Art of Ruby Technical Interview](http://technology.customink.com/blog/2015/11/23/the-art-of-ruby-technical-interviews/) 427 | * [Interview Cake Ruby Interview Questions](https://www.interviewcake.com/ruby-interview-questions) 428 | * [Frequently Asked Ruby Interview Questions](https://www.javatpoint.com/ruby-interview-questions) 429 | 430 | ### Rust 431 | 432 | * [Top 250+ Rust Programming Language Interview Questions](https://www.wisdomjobs.com/e-university/rust-programming-language-interview-questions.html) 433 | * [Rust Programming Interview Questions and Answers](https://www.code-sample.com/2018/02/rust-programming-interview-questions.html) 434 | * [rust-exam: A set of questions about the Rust programming language](https://github.com/jean553/rust-exam) 435 | * [Best Rust Programming Language Interview Questions and answers](https://www.bestinterviewquestion.com/rust-programming-language-interview-questions) 436 | 437 | 438 | ### Sass 439 | 440 | * [Top 17 Sass Interview Questions from Career Guru](http://career.guru99.com/top-17-sass-interview-questions/) 441 | * [Top 10 Sass Interview Questions from educba](https://www.educba.com/sass-interview-questions/) 442 | 443 | ### Scala 444 | 445 | * [4 Interview Questions for Scala Developers](http://insights.dice.com/2014/09/12/4-interview-questions-scala-developers/) 446 | * [A list of Frequently Asked Questions and their answers, sorted by category](http://www.scala-lang.org/old/faq) 447 | * [A list of helpful Scala related questions you can use to interview potential candidates](https://github.com/Jarlakxen/Scala-Interview-Questions) 448 | * [How Scala Developers Are Being Interviewed](http://programmers.stackexchange.com/questions/58145/how-scala-developers-are-being-interviewed) 449 | * [Top 25 Scala Interview Questions & Answers from Toptal](http://career.guru99.com/top-25-interview-questions-on-scala/) 450 | 451 | ### SharePoint 452 | 453 | * [Sharepoint Interview Question For Developer](http://www.rajeshg.me/2013/05/sharepoint-developer-2010-interview.html) 454 | * [Top SharePoint Interview Questions and Answers](https://intellipaat.com/blog/interview-question/sharepoint-interview-questions/) 455 | 456 | ### Shell 457 | 458 | * [Top 50 Shell Scripting Interview Questions from Career Guru](http://career.guru99.com/shell-scripting-interview-questions/) 459 | 460 | ### Spark 461 | 462 | * [Carefully Curated 70 Spark Questions with Additional Optimization Guides (First in the series)](https://github.com/ankurchavda/SparkLearning#spark-learning-guide) 463 | 464 | ### Swift 465 | 466 | * [10 Essential Swift Interview Questions from Toptal](http://www.toptal.com/swift/interview-questions) 467 | * [Get prepared for your next iOS job interview by studying high quality LeetCode solutions in Swift 5](https://github.com/diwu/LeetCode-Solutions-in-Swift) 468 | * [Swift Interview Questions and Answers](https://www.raywenderlich.com/762435-swift-interview-questions-and-answers) 469 | * [Swift Programming Language Interview Questions And Answers from mycodetips.com](http://mycodetips.com/swift-ios/swift-programming-language-interview-questions-answers-987.html) 470 | * [Your top 10 Swift questions answered](http://blog.udacity.com/2014/11/your-top-10-swift-questions-answered.html) 471 | * [Swift interview questions and answers on Swift 5 by Raywenderlich](https://www.raywenderlich.com/762435-swift-interview-questions-and-answers) 472 | * [Dynamic keyword in Swift](https://cocoacasts.com/what-does-the-dynamic-keyword-mean-in-swift-3) 473 | 474 | ### Vue.js 475 | * [List of 300 VueJS Interview Questions](https://github.com/sudheerj/vuejs-interview-questions) 476 | 477 | ### WordPress 478 | * [Top 45 WordPress interview questions](https://pangara.com/blog/blog45-wordpress-interview-questions-and-answers/) 479 | * [10 Essential WordPress Interview Questions](https://www.toptal.com/wordpress/interview-questions) 480 | 481 | ### TypeScript 482 | 483 | * [Typescript Interview Questions](https://www.onlineinterviewquestions.com/typescript-interview-questions) 484 | * [Top 10 TypeScript Interview Questions and Answers for Beginner Web Developers 2019](https://www.positronx.io/typescript-interview-questions-answers-2109/) 485 | 486 | ## Database technologies 487 | 488 | 489 | ### Cassandra 490 | 491 | * [Top 23 Cassandra Interview Questions from Career Guru](http://career.guru99.com/top-23-cassandra-interview-questions/) 492 | 493 | ### Microsoft Access 494 | 495 | * [Top 16 Microsoft Access Database Interview Questions from Career Guru](http://career.guru99.com/top-16-ms-access-database-interview-questions/) 496 | 497 | ### MongoDB 498 | 499 | * [28 MongoDB NoSQL Database Interview Questions and Answers](http://theprofessionalspoint.blogspot.com.by/2014/01/28-mongodb-nosql-database-interview.html) 500 | * [MongoDB frequently Asked Questions by expert members with experience in MongoDB These questions and answers will help you strengthen your technical skills, prepare for the new job test and quickly revise the concepts](http://www.globalguideline.com/interview_questions/Questions.php?sc=MongoDB) 501 | 502 | * [MongoDB Interview Questions from JavaTPointcom](http://www.javatpoint.com/mongodb-interview-questions) 503 | * [MongoDB Interview Questions that have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of MongoDB](http://www.tutorialspoint.com/mongodb/mongodb_interview_questions.htm) 504 | * [Top 20 MongoDB interview questions from Career Guru](http://career.guru99.com/top-20-mongodb-interview-questions/) 505 | 506 | ### MySQL 507 | 508 | * [10 MySQL Database Interview Questions for Beginners and Intermediates](http://www.tecmint.com/10-mysql-database-interview-questions-for-beginners-and-intermediates/) 509 | * [100 MySQL interview questions](http://www.careerride.com/MySQL-Interview-Questions.aspx) 510 | * [15 Basic MySQL Interview Questions for Database Administrators](http://www.tecmint.com/basic-mysql-interview-questions-for-database-administrators/) 511 | * [28 MySQL interview questions from JavaTPoint.com](http://www.javatpoint.com/mysql-interview-questions) 512 | * [40 Basic MySQL Interview Questions with Answers](http://www.testingbrain.com/interview/mysql-interview-questions.html) 513 | * [Top 50 MySQL Interview Questions & Answers from Career Guru](http://career.guru99.com/top-50-mysql-interview-questions-answers/) 514 | 515 | ### Neo4j 516 | 517 | * [Top 20 Neo4j Interview Questions from Career Guru](http://career.guru99.com/top-20-ne04j-interview-questions/) 518 | 519 | ### Oracle 520 | 521 | * [General Oracle Interview Questions & Answers](http://www.coolinterview.com/type.asp?iType=57) 522 | 523 | ### Postgres 524 | 525 | * [13 PostgreSQL Interview Q&A](http://www.dotnetfunda.com/interviews/cat/208/postgresql) 526 | * [Frequently Asked Basic PostgreSQL Interview Questions and Answers](http://nazafbtemplate.blogspot.com.by/2014/06/frequently-asked-basic-postgresql.html) 527 | * [PostgreSQL Interview Preparation Guide](http://www.globalguideline.com/interview_questions/Questions.php?sc=postgresqk_database_) 528 | * [PostgreSQL Interview Q&A from CoolInterview.com](http://www.coolinterview.com/type.asp?iType=411) 529 | 530 | ### SQL 531 | 532 | * [10 Frequently asked SQL Query Interview Questions](http://java67.blogspot.com.by/2013/04/10-frequently-asked-sql-query-interview-questions-answers-database.html) 533 | * [45 Essential SQL Interview Questions from Toptal](http://www.toptal.com/sql/interview-questions) 534 | * [Common Interview Questions and Answers](http://www.indiabix.com/technical/sql-server-common-questions/) 535 | * [General Interview Questions and Answers](http://www.indiabix.com/technical/sql-server-general-questions/) 536 | * [Schema, Questions & Solutions for SQL Exercising](https://github.com/XD-DENG/SQL-exercise) 537 | * [SQL Interview Questions that have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of SQL](http://www.tutorialspoint.com/sql/sql_interview_questions.htm) 538 | * [SQL Interview Questions CHEAT SHEET](https://www.interviewbit.com/sql-interview-questions/) 539 | 540 | ### SQLite 541 | 542 | * [Top 20 SQLITE Interview Questions from Career Guru](http://career.guru99.com/top-20-sql-lite-interview-questions/) 543 | 544 | ## Caching technologies 545 | 546 | ### Memcached 547 | 548 | * [Memcached Interview Questions from Javapoint](https://www.javatpoint.com/memcached-interview-questions-and-answers) 549 | * [Memcached Interview Questions from Wisdomjobs](https://www.wisdomjobs.com/e-university/memcached-interview-questions.html) 550 | 551 | ### Redis 552 | 553 | * [Redis Interview Questions from Javapoint](https://www.javatpoint.com/redis-interview-questions-and-answers) 554 | * [Redis Interview Questions from Wisdomjobs](https://www.wisdomjobs.com/e-university/redis-interview-questions-answers.html) 555 | * [Redis Interview Questions from Career Guru](https://career.guru99.com/top-10-redis-interview-questions/) 556 | 557 | ## OS 558 | 559 | ### Linux 560 | 561 | * [10 Job Interview Questions for Linux System Administrators from Linux.com](https://www.linuxfoundation.org/blog/2015/07/10-job-interview-questions-for-linux-system-administrators/) 562 | * [10 Useful Random Linux Interview Questions and Answers](http://www.tecmint.com/useful-random-linux-interview-questions-and-answers/) 563 | * [11 Basic Linux Interview Questions and Answers](http://www.tecmint.com/basic-linux-interview-questions-and-answers/) 564 | * [11 Essential Linux Interview Questions from Toptal](http://www.toptal.com/linux/interview-questions) 565 | * [Top 30 Linux System Admin Interview Questions & Answers](http://www.linuxtechi.com/experience-linux-admin-interview-questions/) 566 | * [Top 50 Linux Interview Questions from Career Guru](http://career.guru99.com/top-50-linux-interview-questions/) 567 | * [278 Test Questions and Answers for \*nix System Administrators](https://github.com/trimstray/test-your-sysadmin-skills) 568 | * [Linux Interview Questions - Quick Refresher](https://www.techbeamers.com/essential-linux-questions-answers/) 569 | 570 | ### Windows 571 | 572 | * [Top 10 Interview Questions for Windows Administrators](http://www.brentozar.com/archive/2009/07/top-10-interview-questions-for-windows-sysadmins/) 573 | * [Top 22 Windows Server Interview Questions from Career Guru](http://career.guru99.com/top-22-windows-server-interview-questions/) 574 | * [Windows Admin Interview Questions & Answers](http://www.01world.in/p/windows.html) 575 | 576 | ## DevOps 577 | 578 | * [Linux System Administrator/DevOps Interview Questions](https://github.com/chassing/linux-sysadmin-interview-questions) 579 | * [Top DevOps Interview Questions You Must Prepare In 2021](https://www.edureka.co/blog/interview-questions/top-devops-interview-questions-2016/) 580 | * [Top 60+ DevOps Interview Questions & Answers in 2021](https://intellipaat.com/interview-question/devops-interview-questions/) 581 | * [DevOps Interview Questions & Answers](https://www.interviewbit.com/devops-interview-questions/) 582 | 583 | ## Algorithms 584 | * [Comprehensive list of interview questions of top tech companies](https://github.com/rishabh115/Interview-Questions) 585 | * [A great list of Java interview questions](http://java2novice.com/java-interview-programs/) 586 | * [Algorithms playground for common interview questions written in Ruby](https://github.com/sagivo/algorithms) 587 | * [EKAlgorithms contains some well known CS algorithms & data structures](https://github.com/EvgenyKarkan/EKAlgorithms) 588 | * [Top 10 Algorithms for Coding Interview](http://www.programcreek.com/2012/11/top-10-algorithms-for-coding-interview/) 589 | * [Top 15 Data Structures and Algorithm Interview Questions for Java programmer](http://javarevisited.blogspot.com.by/2013/03/top-15-data-structures-algorithm-interview-questions-answers-java-programming.html) 590 | * [Tech Interview Handbook Best Practice Questions](https://techinterviewhandbook.org/best-practice-questions/) 591 | * [Daily Coding Interview Practice](https://www.techseries.dev/daily) 592 | 593 | ## Blockchain 594 | * [Top 55 Blockchain Interview Questions You Must Prepare In 2018](https://www.edureka.co/blog/interview-questions/blockchain-interview-questions/) 595 | * [Blockchain Interview Questions](https://mindmajix.com/blockchain-interview-questions) 596 | * [Top Blockchain Interview Questions](https://intellipaat.com/interview-question/blockchain-interview-questions/) 597 | * [Blockchain Developer Interview Questions and Answers](https://applicature.com/blog/blockchain-interview-questions) 598 | * [10 Essential Blockchain Interview Questions ](https://www.toptal.com/blockchain/interview-questions) 599 | * [Top 30 Blockchain Interview Questions – For Freshers to Experienced](https://data-flair.training/blogs/blockchain-interview-questions/) 600 | * [Most Frequently Asked Blockchain Interview Questions](https://www.digitalvidya.com/blog/blockchain-interview-questions/) 601 | 602 | **[`^ back to top ^`](#)** 603 | 604 | ## Coding exercises 605 | 606 | * [Common interview questions and puzzles solved in several languages](https://github.com/mre/the-coding-interview) 607 | * [Interactive, test-driven Python coding challenges (algorithms and data structures) typically found in coding interviews or coding competitions](https://github.com/donnemartin/interactive-coding-challenges) 608 | * [Interview questions solved in python](https://github.com/roseperrone/interview-questions) 609 | * [7 Swift Coding Challenges to Practice Your Skills](https://www.makeuseof.com/tag/swift-coding-challenges/) 610 | 611 | ## Comprehensive lists 612 | 613 | * [A list of helpful front-end related questions you can use to interview potential candidates, test yourself or completely ignore](https://github.com/h5bp/Front-end-Developer-Interview-Questions) 614 | * [Front End Developer Interview Questions](http://www.aperfectmix.com/free_web_design/front-end-interview-questions.html) 615 | * [Front End Interview Handbook](https://frontendinterviewhandbook.com/) 616 | * [Some simple questions to interview potential backend candidates](https://github.com/starandtina/backend-interview-questions) 617 | 618 | ## Design Patterns 619 | * [Design Pattern Interview Questions that have been designed specially to get you acquainted with the nature of questions you may encounter during your interview for the subject of Design Pattern](http://www.tutorialspoint.com/design_pattern/design_pattern_interview_questions.htm) 620 | * [Design Patterns for Humans™ - An ultra-simplified explanation](https://github.com/kamranahmedse/design-patterns-for-humans) 621 | * [Design Patterns implemented in Java](https://github.com/iluwatar/java-design-patterns) 622 | * [Design Patterns implemented in DotNet](https://www.dofactory.com/net/design-patterns) 623 | 624 | ## Data structures 625 | 626 | * [Top 15 Data Structures and Algorithm Interview Questions for Java programmer](http://javarevisited.blogspot.com.by/2013/03/top-15-data-structures-algorithm-interview-questions-answers-java-programming.html) 627 | * [Top 50 Data Structure Interview Questions from Career Guru](http://career.guru99.com/top-50-data-structure-interview-questions/) 628 | * [What is Data Structure? | Top 40 Data Structure Interview Questions](https://www.interviewbit.com/data-structure-interview-questions/) 629 | 630 | **[`^ back to top ^`](#)** 631 | 632 | ## Networks 633 | 634 | * [Top 100 Networking Interview Questions & Answers from Career Guru](http://career.guru99.com/top-100-networking-interview-questions-answers/) 635 | * [Networking Interview Questions](https://www.interviewbit.com/networking-interview-questions/) 636 | 637 | **[`^ back to top ^`](#)** 638 | 639 | ## Security 640 | 641 | * [101 IT Security Interview Questions](http://careers.simplicable.com/careers/new/101-IT-security-interview-questions) 642 | * [How to prepare for an information security job interview?](http://searchsecurity.techtarget.com/tip/How-to-prepare-for-an-information-security-job-interview) 643 | * [Information Security Interview Questions from Daniel Miessler](https://danielmiessler.com/study/infosec_interview_questions/) 644 | * [Top 50 Information Security Interview Questions for freshers and experts](http://resources.infosecinstitute.com/top-50-information-security-interview-questions/) 645 | 646 | **[`^ back to top ^`](#)** 647 | 648 | ## Data Science 649 | * [Data Science Interview Questions for Top Tech Companies](https://www.dezyre.com/article/-data-science-interview-questions-for-top-tech-companies/189) 650 | * [66 Job Interview Questions for Data Scientists](http://www.datasciencecentral.com/profiles/blogs/66-job-interview-questions-for-data-scientists) 651 | * [Top 45 Data Science Interview Questions You Must Prepare In 2021](https://www.edureka.co/blog/interview-questions/data-science-interview-questions/) 652 | * [Top 30 data science interview questions](https://towardsdatascience.com/top-30-data-science-interview-questions-7dd9a96d3f5c) 653 | * [Top 100 Data science interview questions](https://www.datacamp.com/community/news/top-100-data-science-interview-questions-cc3lts7gj5j) 654 | * [Data Science Interview Questions](https://hackr.io/blog/data-science-interview-questions) 655 | * [160+ Data Science Interview Questions](https://hackernoon.com/160-data-science-interview-questions-415s3y2a) 656 | * [Top Data Science Interview Questions](https://www.interviewbit.com/data-science-interview-questions/) 657 | 658 | 659 | **[`^ back to top ^`](#)** 660 | 661 | ## `License` 662 | MIT License & [cc](https://creativecommons.org/licenses/by/4.0/) license 663 | 664 | Creative Commons License
This work is licensed under a Creative Commons Attribution 4.0 International License. 665 | 666 | To the extent possible under law, [Paul Veillard](https://github.com/paulveillard/) has waived all copyright and related or neighboring rights to this work. 667 | --------------------------------------------------------------------------------