HTML
- What is HTML
- Difference between absolute and relative path
- difference between http and https
- Difference between get and post method
- how to add multiple submit button in form
- how to open multiple pages using single hyperlink
CSS
- What is CSS
- Type of CSS
- Difference between padding and margin
- how to give background color to bdy
- how to remove underline from hyperlink
- what is pseudo class
JS
- What is javascript
- Difference between Java and Javascript
- Difference between x, var y and let z
- What is JSON
- What is function prototype
- What is AJAX
OOPS
- Major and minor pillars of OOPS
- What is inheritance and types of inheritance
- Which inheritance does not support in Java | Php
- Difference between method overloading and overriding
- Difference between abstract class and interface
SQL
- What is RDBMS
- What is NoSQL
- Difference between function and procedures
- Difference between triggers and events
- What is view
- Types of Joins
- Difference between Left join and Right join
- What is view
- What is indexing
- Difference between InnoDB and MyISAM
Php
- What is Php
- Difference between GET, POST and REQUEST
- How session works | How to destroy session
- How to print error logs
- Difference between Session and Cookie
Server
- What is web server
- What is server block in nginx
- What is document root
- How to check status of service (nginx or mysql)
- What is CRON
General CS/IT Questions
- How Internet works
- What is SQL Injection
- WHAT is CSRF attack
- What is MVC Design Pattern
- What is REST API
- What is DevOps
- What is Agile
- Difference between unit testing and integration testing
- What is SDLC
- Difference between Windows and Linux
GIT
- What is git
- How to take clone of any project in new folder
- What is the procedure to push any file from local to git repository
- What is branch in git
- How to resolve conflict
Agile
- What is Agile Scrum Master
- What is daily scrum
- What is product backlog
- What are the roles in scrum framework
- What is the ideal time period of 1 sprint.
- What is retrospective
- What are different ceremonies happened in scrum
- What is user stories
- What is Story Point
- What is daily scrum and how much time you should spend in daily scrum
Practical
- WAP to find factorial of 5 using recursive function
- Write SQL to find employees having 2nd highest salary
- WAP to print the following pattern using for loop
5 4 3 2 1
4 3 2 1
3 2 1
2 1
1 - WAP to print table of 5 using only one loop in following format
5 * 1 = 5 | 5 * 10 = 50
5 * 2 = 10 | 5 * 10 = 50
5 * 3 = 15 | 5 * 10 = 50
5 * 4 = 20 | 5 * 10 = 50
5 * 5 = 25 | 5 * 10 = 50
5 * 6 = 30 | 5 * 10 = 50
5 * 7 = 35 | 5 * 10 = 50
5 * 8 = 40 | 5 * 10 = 50
5 * 9 = 45 | 5 * 10 = 50
5 * 10 = 50 | 5 * 10 = 50 - WAL to remove duplicate characters from string
- WAL to sort array of numbers having length 10
- WAL to find count of each characters from string
e.g. aaabbc
o/p:-
a = 3
b = 2
c = 1