Tip 1 : Start with basics of programming don’t jump into complex and advanced stuff quickly.
Tip 2 : Practise what learned each day and try doing capstones on your own.
Tip 1 : Have some projects on the resume and be confident to answer in and out about those projects.
Tip 2 : Don’t fake skills in the resume.
Online Test (Aptitude, Logical and Verbal Reasoning) with 90 minutes duration. With an essay writing in the last as a part of verbal reasoning.
Cup:LIP :: LIP::BIRD:?
Tip 1 : practice reasoning and apti beforehand
Tip 2 : don't jump into questions that take much time
Pseudocodes
Which of the following data structures is non linearStack, array, graph, linked list
Graph as in non linear data structure, data are hierarchical and can be traversed in one go but at a time only one element is reachable.
Coding round




Create and initialize variables k – starting row index, m – ending row index, l – starting column index, n – ending column index
Run a loop until all the squares of loops are printed.
In each outer loop traversal print the elements of a square in a clockwise manner.
Print the top row, i.e. Print the elements of the kth row from column index l to n, and increase the count of k.
Print the right column, i.e. Print the last column or n-1th column from row index k to m and decrease the count of n.
Print the bottom row, i.e. if k < m, then print the elements of m-1th row from column n-1 to l and decrease the count of m
Print the left column, i.e. if l < n, then print the elements of lth column from m-1th row to k and increase the count of l



'N' = 5, 'ARR' = [1, 2, 3, 2, 3]
Output: 1
Except for number 1, all numbers occur an even number of times.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?