Tip 1 : Practice Company's Previous asked Questions.
Tip 2 : Practice Aptitude Questions also
Tip 3 : Practise mock interview it will boost your confidence
Tip 1 : Add development Projects
Tip 2 : Don't add too much unnecessary things
it was a technical round consists of aptitude questions and coding round.
A majority element is an element that occurs more than floor('N' / 2) times in the array.
Right rotation on a matrix is shifting each column to the right side (the last column moves to the first column) and 'K' times means performing this rotation 'K' times.
For 'K' = 1 and the given 'MAT':
1 2 3
4 5 6
7 8 9
Output after rotating 'MAT' one time is:
3 1 2
6 4 5
9 7 8
I was asked to solve problems based on NLP,DBMS,ML. Some of them were situational based questions.
Infix expression: A + B * C - D
Postfix expression: A B + C D - *
1. Operators will only include the basic arithmetic operators like '*', '/', '+', and '-'.
2. The operand can contain multiple digits.
3. The operators and operands will have space as a separator between them.
4. There won’t be any brackets in the postfix expression.
they asked me about my projects, social activities, extra curricular activities
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?