Tip 1 : Data structure and algorithms
Tip 2 : Practise Maths
Tip 3 : Practise English
Tip 1 : Write only that thing which you can explain there.
Tip 2 : Also Specify Your project and the part of the project you did.
The round contain 20 medium MCQ question ranging from Mathematics and Data Structure questions And at the last 2 coding questions.
Make array and use switch cases like
switch(ch)
{
case 'a':
case 'e':
case 'i':
case 'o':
case 'u':
case 'A':
case 'E':
case 'I':
case 'O':
case 'U':
return 1;
default:
return 0;
}
If we are given N=3
The pattern is :
1 ...
We will start from 1 and print the first half of the pattern and then do the same for the second part also.