Tip 1 : Practice all important subjects deeply and properly
Tip 2 : Core CS subjects and aptitude preparation.
Tip 3 : Practice at least 250+ coding question
Tip 4 : Build up your self confidence by practicing some frequently asked interview questions
Tip 5 : Have projects in your resume
Tip 1 : Include some projects
Tip 2 : Do not lie on a resume
Tip 3 : Try to show your skills in a resume by using very simple and effective language
Tip 4 : keep resume short and simple
This round is basically a coding round, in which they give few coding questions . And we can attempt those questions in any one of coding language . Only those candidates who cleared this round could sit in the next round.
1. Buying a stock and then selling it is called one transaction.
2. You are not allowed to do multiple transactions at the same time. This means you have to sell the stock before buying it again.
Input: ‘n’ = 7, ‘prices’ = [3, 3, 5, 0, 3, 1, 4].
Output: 6
Explanation:
The maximum profit can be earned by:
Transaction 1: Buying the stock on day 4 (price 0) and then selling it on day 5 (price 3).
Transaction 2: Buying the stock on day 6 (price 1) and then selling it on day 6 (price 4).
Total profit earned will be (3 - 0) + ( 4 - 1) = 6.
Involved some solving coding questions. This round is bit difficult
Perform each query on the original array only i.e. every output should be according to the original order of elements.
Let the array be [1, 2, 3, 4, 5, 6] and the queries be {2, 4, 1}. For every query, we’ll perform the required number of left rotations on the array.
For the first query, rotate the given array to the left by 2 elements, so the resultant array is: [3, 4, 5, 6, 1, 2].
For the second query, rotate the given array to the left by 4 elements, so the resultant array is: [5, 6, 1, 2, 3, 4].
For the third query, rotate the given array to the left by 1 element, so the resultant array is: [2, 3, 4, 5, 6, 1].
Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
2 is written as II in the roman numeral, just two one’s added together.
12 is written as XII, which is simply X(ten) + II(one+one).
The number 27 is written as XXVII, which is XX + V + II.
Roman numerals are usually written largest to smallest from left to right.
However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four.
The same principle applies to the number nine, which is written as IX.
There are six instances where subtraction is used:
I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
This is one of the easiest round. In this round they just ask few questions , may to just know more about us and just ti check our confidence
What is the difference between hard work and smart work?
How do you feel about working weekends and night shifts?
Tip 1 : Don't lie
Tip 2 : Be truthful
Tip 3 : Be confident
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++?