Tip 1 : Practice all previous questions
Tip 2 : Complete at least one project
Tip 3 : Go through all your strong points.
Tip 1 : Put those things in which you are confident.
Tip 2 : Put at least one project.
Round 1 contains 20 aptitude (15 MCQ + 5 value in box) and 10 verbal questions all MCQ and coding questions.



1. No two vehicles can have the same registration number.
2. Two registration numbers are said to be different if they have at least a different character or a digit at the same location. For eg. DL 05 AC 1234 and DL 05 AC 1235 are different, DL 05 AC 1234 and DL 05 AB 1234 are different registration numbers.
3. All the cars will have the same first two characters as they have to be registered in the same state.
4. The numbering of the districts in the state starts from ‘1’ (which will obviously be written as 01 in registration number).
It consist of questions related to Web development section which are HTML, CSS, JavaScript and Django.
It also consist questions of DBMS related to Normalization , Joins.



1. Constructor:
It initializes the data members(queues) as required.
2. push(data) :
This function should take one argument of type integer. It pushes the element into the stack and returns nothing.
3. pop() :
It pops the element from the top of the stack and, in turn, returns the element being popped or deleted. In case the stack is empty, it returns -1.
4. top :
It returns the element being kept at the top of the stack. In case the stack is empty, it returns -1.
5. size() :
It returns the size of the stack at any given instance of time.
6. isEmpty() :
It returns a boolean value indicating whether the stack is empty or not.
Query-1(Denoted by an integer 1): Pushes an integer data to the stack. (push function)
Query-2(Denoted by an integer 2): Pops the data kept at the top of the stack and returns it to the caller. (pop function)
Query-3(Denoted by an integer 3): Fetches and returns the data being kept at the top of the stack but doesn't remove it, unlike the pop function. (top function)
Query-4(Denoted by an integer 4): Returns the current size of the stack. (size function)
Query-5(Denoted by an integer 5): Returns a boolean value denoting whether the stack is empty or not. (isEmpty function)
Operations:
1 5
1 10
2
3
4
Enqueue operation 1 5: We insert 5 at the back of the queue.
Queue: [5]
Enqueue operation 1 10: We insert 10 at the back of the queue.
Queue: [5, 10]
Dequeue operation 2: We remove the element from the front of the queue, which is 5, and print it.
Output: 5
Queue: [10]
Peek operation 3: We return the element present at the front of the queue, which is 10, without removing it.
Output: 10
Queue: [10]
IsEmpty operation 4: We check if the queue is empty.
Output: False
Queue: [10]
What is Normalization? Difference between 2NF and 3NF .
What is the difference between margin and padding ? (CSS)
What is the difference between "LET" and "VAR" keywords ?(JavaScript)
What is the Architecture used in Django ? (Django)
It was a video call on Microsoft Team and asked questions on my strengths and leadership skills.
Tip 1: Don't lie your strength and weakness in CV as they will be asking question about it.
Tip 2: Give the true answer what you are in reality, it will help you in answering.
Tip 3: Take your time to think.
Tip 4: Give answer in positive way.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: