1.Introduce yourself.
2.What was your project? Explain in detail.
I explained about my project and she cross examined me on my project topics, especially on the output and the technologies which I had used.
3. Which is your preferred programming language?
I replied Python.
4.What is a list and tuple?
Lists:-
Lists are used to store data inside a single variable.
In Python lists performs the same function as an array.
A list is however different from an array because while arrays can store homogenous elements, a list can store heterogenous elements.
Properties of Lists:-
indexed
mutable
allow duplicates
Tuple:-
Tuple is similar to a list the only differences being tuples are not mutable.