Tip 1 : Start with basics of programming
Tip 2 : Revise regularly.
Tip 3 : Make concise one page resume.
Tip 1 : Highlight the tech used in projects.
Tip 2 : Use simple template using black and white font colour.
Find the value of x in equation given 8x+1 – 8x-1 = 63?
a) 1
b) 2
c) 3
d) 4
Tip 1: Revise the Aptitude, basic maths till 10th class.
Tip 2: Practice problems on Indiabix.
It was a technical + HR round.



-The idea to solve this problem is to iterate through all the numbers starting from 2 to sqrt(N) using a for loop and for every number check if it divides N.
-If we find any number that divides, we return false.
-If we did not find any number between 2 and sqrt(N) which divides N then it means that N is prime and we will return True.



153 = 1^3 + 5^3 + 3^3.
Therefore 153 is an Armstrong number.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?