Tip 1 : Make notes of everything and go through it.
Tip 2 : Prepare well before appearing for interview.
Tip 3 : Have a look at other people interview experience for the same role.
Tip 1 : Make it short and simple.
Tip 2 : Make it precise.
Tip 3 : Highlight key skills
Timing was 12-12.45 pm. Interviewer joined in time.



Yeah we can implement sieve of eratosthenes to solve this problem in best optimized way.



‘S’ = racecar
The reverse of ‘S’ is: racecar
Since ‘S’ is equal to its reverse. So ‘S’ is a palindrome.
Hence output will be 1.
It is very basic question of coding. Just need to find out the reverse of given number and then compare both. If they are same then palindrome otherwise not.
Tip 1 : Always prepare your ongoing projects of your current company or the one which you have done in your college.
Tip 2 : Have a good knowledge of technical skills used in these projects.
Tip 3 : Be ready to tell your contribution in the project
This round was scheduled for 2-2.45 pm.
Tip 1 : Prepare SQL queries
Tip 2 : Practice on online platform
Tip 3 : Have a look at all types of SQL commands.
There are three boxes, one contains only apples, one contains only oranges, and one contains both apples and oranges. The boxes have been incorrectly labelled such that no label identifies the actual contents of the box it labels. Opening just one box, and without looking in the box, you take out one piece of fruit. By looking at the fruit, how can you immediately label all of the boxes correctly?
Tip 1 : Do puzzle solving for practice.
Tip 2 : Try at least 10-20 puzzle and solve them by own.
Tip 3 : Check best optimized approach as well.
using namespace std;
class Base1 {
public:
Base1()
{ cout << " Base1's constructor called" << endl; }
};
class Base2 {
public:
Base2()
{ cout << "Base2's constructor called" << endl; }
};
class Derived: public Base1, public Base2 {
public:
Derived()
{ cout << "Derived's constructor called" << endl; }
};
int main()
{
Derived d;
return 0;
}
#include<iostream>
using namespace std;
class A {
public:
A(int ii = 0) : i(ii) {}
void show() { cout << "i = " << i << endl;}
private:
int i;
};
class B {
public:
B(int xx) : x(xx) {}
operator A() const { return A(x); }
private:
int x;
};
void g(A a)
{ a.show(); }
int main() {
B b(10);
g(b);
g(20);
getchar();
return 0;
}
Tip 1 : Practice brings perfection.
Tip 2 : Try to solve as many as you can C, C++ debugging questions.
Tip 3 : Do dry run first in your mind and then if required on paper. Try to understand the execution.
Timing was 4-4.25 pm. Interviewer was very friendly.
Tip 1 : These are very common HR question which were asked by almost every company so please be prepared for these types of questions.
Tip 2 : Never lie in your HR interview. They will get to know.
Tip 3 : If you are not confident enough to speak in English then practice on mirror first. You will gain some confidence.

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