#python
1) List- Tuple - Dict
2) Lambda
3) Decorator
4) Inheritance - multiple & multilevel
5) Pollymorphism - method overriding and method overloading
6) self keyword
7) deep & shallow copy
8) context manager
9) exception handle
10) list vs array
11) for and while loop
12) __init__ method
#django
13) context processor
14) Django request response cycle
15) Django architecture
16) Django URL structure
17) MVT structure
18) signal
19) django migration
20)template inheritance
21)django session
22)Queryset and functions
#mysql
23) primary key, unique key, foreign key
24) normalisation in table
25) database scema
27) join query example
#DRF
28) what is drf
#logical
programme:
29) min value from list:
input_list = [25,11,95,15,12,96]
output = [11]
30) unique value from list :
input_list = [1,1,2,2,3,3,1,2,3]
output = [1,2,3]
SECOND ROUND
1) Scenario based quetions
in my case make a online exams management system
candidate need to discuss proper with manager regarding tables and fields as well as relations of the tables.
2) Diff. Unique Key & Primary Key
3) Past Project discussion
Logical Question:
4) arr = [1,2,3,4,5,6,7,11,5]
find average value of the list and based on average number find nearest element from list.