Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Know Fundamental concepts of every subject you studied in Engineering
Tip 3 : Chose one Programming Language i prefer C++ or Java, Solve Data Structures Problems, Most Frequently asked codes from GeeksForGeeks, Practice at Leetcode
Tip 4 : Be prepared for Behavioural Questions, there are only some set of FAQs that can be followed from youtube vedios.
Tip 5 : Have atleast 1 good technical Project, and Use Technical keywords to mention that project in your Resume.
Tip 6 : Be humble in Interviews.
Tip 7 : Practice at Leetcode atleast top 100 questions.
Tip 1 : Don't put anything in resume that you are not sure of.
Tip 2 : if you don't have any internship experience then you can show your good technical projects and certifications too.
Tip 3 : Use professional Keywords in your resume.
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.
Amcat Test ( WebCam On and in Proctored mode)
The First round was divided into multiple sections Logical, aptitude, English comprehensive writing and Error Handling For given C++ and Java Programs( 6 Programs were there), Each section was time bounded.
I tried to understand the logic of the code and then i get that there is a logical error then i corrected it, and compiled it.
The output was correct after this. And then i submitted it.
Step 1 : Imported the Exception class in java
Step 2 : Put the Code which was throwing exception in Try Block and then in catch Block I defined the Exception
It was a virtual interview round. The platform consist of an online IDE, Video of Interviewer and a chat window.
Interviewer asked me Tell me about yourself, then programs on patterns , string handling , SQL queries and OOPs concept.
In the End he asked me about my projects and on what project i am currently working. why you want to join DXC. How you got to know about DXC. Do you want to pursue higher education.
https://codezen.codingninjas.com/practice/categories/programming-fundamentals/patterns
https://www.edureka.co/blog/30-pattern-programs-in-java/
These links are enough for the pattern problems.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
I used this approach
1. First, convert String to character array by using the built in Java String class method toCharArray().
2. Then, scan the string from end to start, and print the character one by one.
Write a query for inner join and explain it and also take any tables to perfom inner join on it and why do we use it.
First i wrote the syntax of the inner join query then took example of student table and performed on it
SELECT table1.column1, table2.column2...
FROM table1
INNER JOIN table2
ON table1.common_field = table2.common_field;

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