Tip 1 : Never leave any topic from any chapter / Subject
Tip 2 : Learn to explain your thoughts well
Tip 3 : Learn from previous experiences / interviews / problems asked.
Tip 4 : Atleast 4 projects in Resume
Tip 1 : Atleast 4 projects on Resume
Tip 2 : Do not write false things. You always get caught. Be genuine.
2 easy problems for coding.
1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.
Use sieve to find prime numbers.
Consider the array - [1, 2, 3, 4, 5, 6]
The elements at even positions will be 1, 3, 5. The running absolute difference of elements will be -
|1 - 3| = 2 , |2 -5| = 3. Hence our answer will be 3.
The elements at odd positions will be 2, 4, 6. The running absolute difference of elements will be -
|2 - 4| = 2 , |2 - 6| = 4. Hence our answer will be 4.
Iterate over array and calculate answers.
Face to face interview, design and coding involved.
Given a database of some records. Read records from there and using a formula, calculate maximum speed of cars.
Use data file handling concepts to read and write data in file, used easy arithmetic to find answer.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL keyword removes duplicate records from a result set?