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.
(i) If the input string is 'CodeGeek', the output should be CdGk after removing ‘o’ and ‘e’.
(ii) If the input string is 'Odinson', the output should be 'dnsn' after removing ‘o’ and ‘i’.
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 2 3 10 11 12
4 5 8 9
6 7
We will start from 1 and print the first half of the pattern and then do the same for the second part also.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What does print(2 ** 3) output in Python?