Tip 1: Start understanding the fundamentals of any one programming language (OOPs would be beneficial)
Tip 2: Try to write one code every day for any problem you see or come across be it making a simple calculator
Tip 3: Break your problem set into single units to have a clear understanding and practice more different types of questions rather than sticking to one category and practising 50 problems. Instead, take one topic and solve 10 questions and move on to the next topic.
Tip 1: Write more about the projects you've done & the technologies you used in it.
Tip 2: Always stick to a single-page resume format
It was an MCQ round where in it consist of 30 questions divided into different categories as stated below and it was a general screening round to shortlist the candidates.
Predict the output of the following code:
-#include using namespace std;
class Test {
int value; public:
Test(int v = 0) {
value = v; }
int getValue() {
return value; } };
int main() {
const Test t;
cout << t.getValue();
return 0; }
Compilation Error (In the above program, object ‘t’ is declared as a const object. A const object can only call const functions. To fix the error, we must make getValue() a const function)
Predict the output of the following code:
-#include
using namespace std;
int main(){
cout << sizeof("GeeksforGeeks") << endl;
cout << strlen("GeeksforGeeks");
return 0;
}
14
13
What does the following statement in SQL do?
DROP TABLE student;
Deletes the table called student
This round was conducted during the daytime only (between 08:00 AM to 06:00 PM) and it was a virtual process so we joined using teams and got our process done. The technical interview took some 40 minutes.



For N = 5 , K = 2
Series = [ 5, 3, 1, -1, 1, 3, 5]
I figured out how we can reach the solution since it was an iterative one, I wrote a code based on the conditions and was able to get my answer. To crack this, always look for what your problem is demanding. If it is something that requires multiple times to run the same line of code, better iterate it and get the solution in one go.



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
It was more like a general discussion wherein the HR executive will introduce you to more about the company, giving you input for the role you will work (if selected) meanwhile understanding your knowledge of the English language.
Are you comfortable relocating to the business location if asked?
Tip 1 : Always say yes if you're encountered such questions. They want to know that you're really interested in joining the organisation and will relocate for better opportunities as well if asked in the future (say onsite)
Tip 2 : Be confident and carry a smile always and give a pleasant impression to the interviewer

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?