Infosys Campus Questions With Solutions 2024

Infosys Off Campus Questions & Answers 2024 | Infosys Software Engineer Coding Questions With Solution | Infosys Interview Questions | Infosys Interview Questions & Answer 2024 | Infosys Campus Coding Questions in Java

Infosys Campus Questions and Answers 2024: Infosys Limited, an India-based multinational IT company, provides business consulting, information technology, and outsourcing services. Founded in Pune and headquartered in Bangalore, Infosys is India’s second-largest IT company. Many students dream of working in Infosys. To help you, in this post, we will know about the interview process in Infosys the most important questions asked in it to help you get a job in Infosys, and how to prepare yourself for Infosys off-campus with the right seeds.

Infosys has released off-campus notifications for 2024. This notification is an opportunity for fresh graduates and professionals who are willing to work in Infosys company. But getting selected for this competitive post is not that easy. 3 round interviews (Technical, Managerial, and HR) are conducted for the Infosys Off campus drive 2024. It is possible with proper guidance and training. If you want to prepare for this Infosys off-campus then knowing the previous year’s norms will help you to prepare accordingly. You need more practice to make your exam easy. You will have to spend a lot of time to know the previous questions. It will affect your training time. As a solution for that, you can know Infosys Campus Previous Questions, Infosys Selection Method, etc., for those who are preparing for off-campus on our site dailyrecruitment.in.

Following the norms of Infosys previous recruitment campaigns will help you. Code will be very important for you to qualify for Infosys off-campus. Among them, you need to be very strong in problem-solving. you should choose a language you are comfortable with like C, C++, Java, or Python to complete the coding tasks. More details like Infosys off-campus coding questions and answers, Infosys coding questions and answers, Infosys interview questions and answers, Infosys cut-off, salary, promotion, increment, and annual evaluation are available on this page.

Infosys Campus Coding Questions with Answers

Q ) What is an Object in OOPs?

An object is an instance or subset of the class. It is attributable to a physical operation such as individual attributes, properties, and behaviour. It occupies space in the memory and has member functions defined in a class.

Q ) What is a Class in OOPs?

A class gives the object’s outline and has a fixed data type defined by the user. Member functions, variables, constants, and other functionality are designated within a class. It does not use any memory during run time. A class can exist without an object, but an object cannot exist outside the class.

Q ) What Are The Basic OOPS Principles?

OOPs have four major basic principles:

Abstraction: Abstraction refers to the representation of essential properties without revealing the entire framework. Problems are solved at the ‘abstract’ or interface level.
Encapsulation: Data and the corresponding code are ‘encapsulated’, that is, combined in a single unit called a class.
Inheritance: The existing class properties are ‘inherited’ by the new child class. For example, if there are two separate child classes such as ‘Dog’ and ‘Cat’, they can inherit properties such as ‘mammals’ and ‘pets’ from the parent ‘Animal’ class.
Polymorphism: It allows cross-movement between parent and child classes. It is implemented using overriding and overloading.

Q ) Write a C++ program to check whether a number is palindrome or not.

/* A palindrome number is a number that remains same after reversing the digits. */
#include<iostream.h>
#include<conio.h>
void main()
{
int num, n, rem, rev=0;
clrscr();
cout<<“Enter a number:”;
cin>>num;
n=num; //Used for comparision after reversal of a number
while(num>0)
{
/* In this block, we retrieve each digit from a given number and will get the reversed number at the end stored at rev variable. */
rem=num%10;
rev=(rev*10)+rem;
num=num/10;
}
if(n==rev) //Comparing given number with reversed number
cout<<n<<” is a palindrome.”;
else
cout<<n<<” is not a palindrome.”;
getch();
}

Q ) Write a program to print “Hello World” in Java?

Writing the “Hello World” program is easy in java. Here is a program to print Hello World:
Hello World in Java:
public class FileName {
public static void main(String args[]) {
System.out.println(“Hello World!”);
}
}

Q ) What is a thread in Java?

Threads allow a program to operate more efficiently by doing multiple things at the same time. A thread is a lightweight program that allows multiple processes to run concurrently. Every java program has at least one thread called the main thread, the main thread is created by JVM. The user can define their own threads by extending the Thread class (or) by implementing the Runnable interface. Threads are executed concurrently. It can be created by extending the Thread class and overriding its run() method:

Extend Syntax

public class MyClass extends Thread {

public void run() {

System.out.println(“This code is running in a thread”);

}

}

OR

public static void main(String[] args){//main thread starts here

}

Q ) What is a package in Java?

A package in Java is used to group related classes. Think of it as a folder in a file directory. We use packages to avoid name conflicts and to write better maintainable code. Packages are divided into two categories:

Built-in Packages (packages from the Java API)
User-defined Packages (create your own packages)

Q ) How to download turbo C++ for windows 10?

To download turbo c++ follow the steps mentioned below:
Step-1: Download turbo C++ from http://www.turboccom/p/download.html
Step-2: Extract the Turbo.C.zip file.
Step-3: Run setup.exe file.
Step-4: Follow the instructions mentioned.

Q ) What is a function in C++?

A function in C++ is a block of code that can be referenced from anywhere in the system and that serves a specific purpose.
int fun(){

int a = 11;

return 11;

}

int main(){

int b = fun();

}

Q ) How to use a string in C++?

A string is a sequence of characters. In C++, the string is a data type as well as a header file. This header file consists of powerful functions of string manipulation. A variable of string is declared as follows:
string str= “Hello”;

And to use string one needs to include the header file.

// Include the string library

#include <string>

// Create a string variable

string str= “Hello”;

Infosys interview Managerial Questions with Solution 

Q ) How do you handle the pressure?

I stay calm under pressure and handle it well. My complete focus is on the job done.

Q ) How do you manage your workload?

I prioritize my task by what is most important and urgent to least important and urgent. If there are some tasks that I can assign to others, I will also delegate.

Q ) Why did you apply for this position?

I wanted to join a company like ABC that values their employees and helps them achieve their potential. This position is a great fit for my current skills, so I will be able to contribute to the company immediately. There is also an opportunity to continue to develop my abilities to the next level and help in company’s continued success.

Q )How do you motivate your employees in tough times?

I believe that as a leader, I have to be the one who is constantly driving an atmosphere of positivity and focus. I make sure that I am acting and saying positive things about my employees. I remind them daily of the goals and celebrate as we accomplish them.

Q ) What are some of your weaknesses?

I have started multiple projects at one time. I know that it is more productive to complete one task at a time. So anytime I catch myself doing this, I take a step back and prioritize my work.

Infosys HR interview questions and answers

Q ) Tell me something about yourself in brief
Q ) Describe who you are? or Tell me about your background.
Q ) What are your strengths and weaknesses?
Q ) You have not done your PG yet. This is not a drawback, but don’t you think you should get a PG degree asap?
Q ) You have changed jobs/jumped ship too many times already, why so?
Q ) What are your strong points? or What are your strengths?
Q ) What is your greatest fear?
Q ) If I call up your current or previous reporting manager now, what will be their opinion about you? What will they say that you need to work on?
Q ) Do you have any serious medical issues?
Q ) Did you ever have a conflict with your current/previous boss or professor

Keep watch dailyrecruitment.in site for more upcoming jobs, study material notification.

JOB ALERT ON INSTAGRAM FOLLOW NOW>>
JOB ALERT ON TELEGRAM  JOIN NOW>>

 

Govt Jobs by Qualifications

Education & Vacancies Salary Apply Link
10th Pass Govt Jobs - 5,000 Vacancies Rs. 5,200 - 63,200 Apply Now
12th Pass Govt Jobs - 18,000+ Vacancies Rs. 5,200 - 92,300 Apply Now
ITI Pass Jobs - 3,500 Vacancies Rs. 5,200 - 35,000 Apply Now
Any Graduate Jobs - 19,100 Vacancies Rs. 5,200 - 92,300 Apply Now
Central Govt Jobs Rs. 5,200 - 17,000 Apply Now
Bank Jobs - 1,000 Vacancies Rs. 5,200 - 29,200 Apply Now
Diploma Jobs - 9,300 Vacancies Rs. 5,200 - 35,000 Apply Now
BTech/BE Jobs - 18,000 Vacancies Rs. 15,000 - 1,00,000 Apply Now
Data Entry Jobs - 1,300 Vacancies Rs. 5,200 - 29,200 Apply Now
Private Jobs Rs. 10,000 - 67,700 Apply Now