├── .github └── FUNDING.yml ├── DBMS-Interview-Questions └── DBMS Interview Questions.pdf ├── DSA-Interview-Questions ├── Data Structure Interview Questions.pdf ├── Top 50 Array Coding Problems for Interviews.pdf ├── Top 50 DSA programming interview questions.pdf └── top-50-data-structure-interview-questions.pdf ├── HR-Interview-Questions └── HR Interview Questions.pdf ├── Interview_Questions.docx ├── Java-Interview-Questions ├── Core Java -Basics of Java Interview Questions.pdf └── Core Java OOPs- Polymorphism Interview Questions.pdf ├── LICENSE ├── Networking-Interview-Questions └── Networking Interview Questions.pdf ├── OOPS-Interview-Questions └── OOPs Interview Questions.pdf ├── OS-Interview-Questions └── Operating System Interview Question.pdf ├── Python-Interview-Questions └── Python Interview Questions.pdf ├── README.md └── SQL-Interview-Questions ├── README.md ├── SQL Interview Questions and Answers.pdf └── TOP 50 SQl queries for interview.pdf /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [avinash201199] 2 | 3 | custom: ["https://paypal.me/Avinash425"] 4 | -------------------------------------------------------------------------------- /DBMS-Interview-Questions/DBMS Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/DBMS-Interview-Questions/DBMS Interview Questions.pdf -------------------------------------------------------------------------------- /DSA-Interview-Questions/Data Structure Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/DSA-Interview-Questions/Data Structure Interview Questions.pdf -------------------------------------------------------------------------------- /DSA-Interview-Questions/Top 50 Array Coding Problems for Interviews.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/DSA-Interview-Questions/Top 50 Array Coding Problems for Interviews.pdf -------------------------------------------------------------------------------- /DSA-Interview-Questions/Top 50 DSA programming interview questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/DSA-Interview-Questions/Top 50 DSA programming interview questions.pdf -------------------------------------------------------------------------------- /DSA-Interview-Questions/top-50-data-structure-interview-questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/DSA-Interview-Questions/top-50-data-structure-interview-questions.pdf -------------------------------------------------------------------------------- /HR-Interview-Questions/HR Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/HR-Interview-Questions/HR Interview Questions.pdf -------------------------------------------------------------------------------- /Interview_Questions.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/Interview_Questions.docx -------------------------------------------------------------------------------- /Java-Interview-Questions/Core Java -Basics of Java Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/Java-Interview-Questions/Core Java -Basics of Java Interview Questions.pdf -------------------------------------------------------------------------------- /Java-Interview-Questions/Core Java OOPs- Polymorphism Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/Java-Interview-Questions/Core Java OOPs- Polymorphism Interview Questions.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Avinash Singh 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Networking-Interview-Questions/Networking Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/Networking-Interview-Questions/Networking Interview Questions.pdf -------------------------------------------------------------------------------- /OOPS-Interview-Questions/OOPs Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/OOPS-Interview-Questions/OOPs Interview Questions.pdf -------------------------------------------------------------------------------- /OS-Interview-Questions/Operating System Interview Question.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/OS-Interview-Questions/Operating System Interview Question.pdf -------------------------------------------------------------------------------- /Python-Interview-Questions/Python Interview Questions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/Python-Interview-Questions/Python Interview Questions.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Interviews-Resources 2 | 3 | 1.[DBMS-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/DBMS-Interview-Questions)
4 | 2.[DSA-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/DSA-Interview-Questions)
5 | 3.[Java-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/Java-Interview-Questions)
6 | 4.[Networking-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/Networking-Interview-Questions)
7 | 5.[OOPS-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/OOPS-Interview-Questions)
8 | 6.[OS-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/OS-Interview-Questions)
9 | 7.[Python-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/Python-Interview-Questions)
10 | 8.[SQL-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/SQL-Interview-Questions)
11 | 9.[HR-Interview-Questions](https://github.com/avinash201199/Interviews-Resources/tree/main/HR-Interview-Questions)
12 | 13 | ### Star this repository and share it with your friends 14 | 15 | If you have any interview resourses and want to add it so that it can be helpful for the community then please create an issue will assign it to you and then you can make pull request ! 16 | 17 | 18 | 19 | ### Resources 20 | 21 | I have created a Placement Kit, where you will find everything, including resume, cover letter, internship updates, freshers’ and experienced job updates, interview questions, startup lists, DSA material, web development, AI/ML/DS, cloud, ChatGPT prompts, and CS Fundamentals, etc. 22 | 23 | [A TO Z placement Kit](https://docs.google.com/spreadsheets/d/1mBWWVVzCupbjQeTlpXFfHflqTmsBK9rCBQ7QJNE7HdY/edit#gid=1547960802)
24 | 25 | In this drive, you will find resources on algorithms, company-wise DSA materials, competitive programming, DSA notes, dynamic programming, interview preparation, time complexity, and much more.
26 | 27 | [drive link](https://drive.google.com/drive/folders/1Da_v5uHIvBscWcRRgMsYGq-hJ00dQL9Y) 28 |
29 | 30 | 📌 Follow me on [Linkedin](https://www.linkedin.com/in/avinash-singh-071b79175/) for more resourcse
31 | 📌 Follow me on[ GitHub](https://github.com/avinash201199) as well
32 | 33 | 34 | 35 | 36 | Thank you ! 37 | 38 | [![](https://img.shields.io/static/v1?label=Sponsor-ME&message=%E2%9D%A4&logo=GitHub&color=%23fe8e86)](https://github.com/sponsors/avinash201199) 39 | 40 | [PayPal me to show some support](https://paypal.me/Avinash425) 41 | 42 | -------------------------------------------------------------------------------- /SQL-Interview-Questions/README.md: -------------------------------------------------------------------------------- 1 | #### Here are 5 resources to learn the basics of sql for free: 2 | 3 | - [sqlbolt.com](sqlbolt.com)
4 | 5 | - [mode.com/sql-tutorial](mode.com/sql-tutorial)
6 | 7 | - [sqlteaching.com](sqlteaching.com)
8 | 9 | - [w3schools.com/sql](w3schools.com/sql)
10 | 11 | - [selectstarsql.com](selectstarsql.com)
12 | -------------------------------------------------------------------------------- /SQL-Interview-Questions/SQL Interview Questions and Answers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/SQL-Interview-Questions/SQL Interview Questions and Answers.pdf -------------------------------------------------------------------------------- /SQL-Interview-Questions/TOP 50 SQl queries for interview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avinash201199/Interviews-Resources/c4a56c6bf738111566379fa887f777d6093d5a29/SQL-Interview-Questions/TOP 50 SQl queries for interview.pdf --------------------------------------------------------------------------------