Tip 1 : Make sure you know CS fundamentals very well
Tip 2 : Prepare Behavioral questions also
Tip 3 : Try to solve as many aptitude question as possible
Tip 1 : Do not put false things on your resume
Tip 2 : Have some good projects
Round 1 at Infosys is an online test that consists of 5 sections . The five sections were Mathematics Ability, Logical Reasoning, Verbal Ability, Pseudocode, and Puzzles .The total duration of the test is 100 minutes. Each section of the test has specific time allocated to them and all questions of that section need to be completed in that specific period. There is no negative marking but you cannot navigate between the questions or sections. To clear this round, you need to clear the sectional cutoff for each section. The timing for the test was morning shift .The test was difficult because out of 300 only 40 get selected
Output for the following
#include
int main(){
float x = 0.0;
long int y = 10;
printf("%d", sizeof(x) == sizeof(x+y));
return 0;
}
sizeof(x) that is float is 4
sizeof(y) that is long int is 8
sizeof(x+y) that also comes out to be float will have size = 4
here it is asking sizeof(x) == sizeof(x+y)
i.e 4 == 4
"==" operator gives result in either 0 or 1
so answer is 1.
This round comprised of both the technical and HR questions.
The technical questions mainly include topics like OOPS(with their real-life examples), basic knowledge of DBMS, Java, and a basic idea about data structures. I was able to clear it. They select 10 out of 40 .
What are DDL and DML commands in SQL?
What is the left outer join and the right outer join in SQL?
Tip 1:Try to give examples
Tip 2:Try to read the previous year questions from gfg

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: