Live Classes: Upskill your knowledge Now!
Chat NowPublished - Mon, 05 Dec 2022
Infosys is one of the India's leading technology company. Infosys Limited headquarters are in Bengaluru, Karnataka, India. Company trade name as "Infosys Technologies Limited." This business provides consulting, information technology and outsourcing services.
The recruitment and selection process of Infosys is geared towards matching between the candidate's aptitudes and company requirements.
You have to crack three rounds to get selected in the interview. First round is an online test, which is logical answering and grammar. The second round is Technical round, which is technical answering, And the final and last round of the Infosys company is HR round, which is most common round in companies recruitment and selection process. Detailed Structure of the three rounds of company recruitment is given below.
First Round- Online Test: In the first round of Infosys recruitment and selection process Grammar and IQ is checked as per the company's requirements. Some frequently asked analytical questions are given below. Items may change but, grammar and logic will be the same. The difficulty level of this round is moderate. If you have a good IQ and communication skills, then you can easily crack this round.
Second Round- Technical Test: In the second step of recruitment and selection process Technical questions are asked. You can clear this test if you have good technical knowledge. Be careful while answering questions in the technical round, listen carefully to the interviewer because the technical round is the most difficult round among all the other rounds. Technical round is going to check your technical knowledge you had gained from your previous work experience.
Third Round- HR face to face Interview: If you completed the second round then you will be promoted to appear in the third round, which is straight face to face HR round. HR is a Human Resource Manager, who is going to talk to you and he is going to ask some questions about the company. I suggest you be cool while answering questions asked in HR round because he is not going to check your technical skill. HR round is not difficult if you have good communication skills. You only have to tell about yourself and the company.
The list of logical questions that have been asked in the Infosys interview is given below:
The list of aptitude questions that have been asked in the Infosys interview are given below:
Polymorphism is a concept by which we can perform a single action in different ways. Polymorphism is derived from two Greek words: poly and morphs. The word "poly" means many and "morphs" means forms. So polymorphism means many forms.
A linked list consists of two parts. Information part and the link part. In the single linked list, first node of the list is marked by a unique pointer named as start and this pointer points to the first element of the list, and the link part of each node consists of a pointer pointing to the next node, but the last node of the list has null pointer identifying the last node. The linked list can be traversed easily with the help of Start pointer.
Normalization is also known as the process of organizing data in a DBMS efficiently without any loss of data.
Advantages of the normalization process are as follows:
First is eliminating redundant data and ensuring data dependencies make sense. It reduces the amount of space that the database consumes and ensure that data is logically stored.
Join:
This clause is used in DBMS to combine rows from two or more tables, based on a related column between them.
Keys:
Keys are a crucial part of the relational database model. They are used to identify and establish relationships between tables. They are also used to uniquely determine each record or row of data in a table.
Key:
A Key can be a single attribute or a group of attributes acting as a key.
In, object-oriented programming, inheritance is a mechanism based on classes.
Inheritance refers to inheriting the data members and properties of a parent class to a child class. A class which is derived from another class is often called as a sub-class, and the class from which the child class is derived is known as super-class or parent class.
Types of Inheritance:
To execute a block of statement several times in a program depending upon the conditional statement loops are used.
The basic structure of a loop is given above in the diagram. For each successful execution of the loop, the conditional statement should be checked. If the conditional statement is true, then the loop will be executed. If the conditional statement is false, then the loop will be terminated.
The difference between classes and interface are listed below:
SDLC is a process followed for developing and enhancing software project. It consists of a detailed plan for developing, maintaining a specific software. The life cycle defines a methodology process for improving the quality of software and the overall development process.
In "The Waterfall" model, the whole process of software development is divided into separate phases. In this Waterfall model, typically, the outcome of one phase acts as the input for the next phase sequentially.
The four basic principles of Object-Oriented Programming System are listed below:
The conditional statements can alternatively be called a conditional expression also. Conditional statements are the set of rules which were executed if a particular condition is true. It is often referred to an if-then statement because if the condition is true, then the statement is executed.
A Database Management System is a software system is used for creating and managing databases. DBMS make it possible for the end user to create and maintain databases. DBMS provides an interface between the end user/application and the databases.
Improved data sharing.
The list of several advantages of Database Management System:
The object-relational database (ORD) is a database management system (DBMS) that are composed of both an object-oriented database (OODBMS) and a relational database (RDBMS). ORD supports the essential components of an object-oriented database model in its schemas and the query language used, such as inheritance, classes, and objects.
An object-relational database is also known as an object-relational database management systems (ORDBMS).
It is a set of formulas (sentences) called integrity constraints imposed on a database.
IC refers to integrated circuits sets of electronic circuits on single flat piece semiconductor material, and usually, silicon is used. The integration of a large number of tiny transistors into a small chip results in circuits that are smaller in size and faster than those discrete electronic components. The importance of integrated circuits than the separate electronic components is integrated circuits are smaller in size, faster, low costs than discrete electronic components.
A Data Source Name as the name suggests it is the logical name for Open Database Connectivity to refer to other information that is required to access data. For a connection to an ODBC data source Microsoft SQL Server database.
Clustered Index - Only one per table is allowed
Faster to read than non clustered because the data is physically stored in index order
Non-Clustered Index - Can be used many times in a table
Quicker for inserting and updating operations than a clustered index
C Language
Embedded C
The pointer is a particular variable which holds the address of another variable of the same type. Pointers can be of any data type and structure are allowed in C programming language. Pointer variable stores the address of another variable of the same data type as the value of the pointer variable.
Following are the uses of pointers:
The Socket is the Combination of Ip address, and Port Number and the session is a Logical Connectivity between the source and destination.
The null pointer is the pointer with no reference to any location of the memory.
A null pointer contains zero as its value which means pointer is empty and not pointing to anywhere in the memory. Null pointers can be used further in the program to initialize the address of the memory location with the same data type of the pointer.
A real-time operating system is an operating system which acts as an interface between hardware and user. This system guarantees a specific capability within a specified time. For example, an operating system is designed to ensure that a specific object was available for a robot on an assembly line.
TCP | UDP |
---|---|
Connection-orientated protocol | Connectionless protocol |
Segment sequencing. | No sequencing. |
Acknowledge sequencing | No windowing and retransmission. |
Reliable transmission protocol. | Unreliable transmission protocol. |
The Function calloc() allocates a memory area, and the length will be the product of its parameters(it has two parameters). It fills the memory with ZERO's and returns a pointer to the first byte of the memory. If it fails to locate enough space, Then it returns a NULL pointer.
The function malloc() allocates a memory area, and length will be the value entered as a parameter. (it has one parameter). It does not initialize memory area free() used to free the allocated memory(allocated through calloc and malloc), in other words, this used release the allocated memory new also used to allocate memory on the heap and initialize the memory using the constructor delete also used release memory allocated by new operator
Virtual function:- In order to achieve polymorphism, function in base class is declared as virtual, By declare virtual we make the base class pointer to execute the function of any derived class depends on the content of pointer (any derived class address).
Pure Virtual Function:- This is a function used in base class, and its definition has to be provided in a derived class, In other pure virtual function has no definition in the base is defined as:
That means this function not going to do anything, In case of the pure virtual function derived function has to implement the pure virtual function or redeclare it as the pure virtual function
WPF/WCF application, need in .NET 3.0 Framework. This application will cover the following concepts:
The term EXE is a short-term of the word executable as it identifies the file as a program. Whereas, DLL stands for Dynamic Link Library, which commonly contains functions and procedures that can be used by other programs.
Scenarios in which web application used are listed below:
Scenarios in which desktop application should be used are listed below:
Safe for computationally expensive software that needs to communicate directly with the OS.
The desktop application is often offline and does not need an Internet connection to function compared to a web application.
An array is a group of elements used to store a group of related data of the same data type.
The array uses index number to identify each element in an array.
A table is a set of related data in a structured format in the database. A table is consists of rows and columns.
An array is the group of similar elements having the same data type, whereas the pointer is a variable pointing to some data type in the memory. Arrays can only contain the elements of similar data type whereas pointer variable is used to point to any data type variable.
Abstraction and encapsulation are complementary because in object-oriented programming classes can only be abstracted if it is encapsulated. The abstraction focuses on the observable behavior of an object, whereas encapsulation focuses on the implementation that gives rise to this behavior.
Modularity is the concept explained in oops concept, and it was introduced with class and objects in c++. Functions, classes, structures implements modularity in C++.
Btree
This tree structure was developed by Bayer and McCreight in 1972.
This tree structure is a height-balanced m-way search tree. A B-tree of the order m can be defined as an m-way search tree.
It is made up of branch nodes and leaf nodes.
Bitmap
It consists merely of bits for every single distinct value. It uses a string of bits to locate rows in a table quickly. Used to index low cardinality columns.
The platform independence refers to the ability of programming language or a platform that you implement on one machine and use them on another machine without or minimal changes. There are two types of platform independence, source platform independence, and binary platform independence. For example, Java is a binary platform independent language whereas c and c++ are source platform independence languages because java uses java virtual machine to run their programs but c and c++ use compilers to convert the source code to executable machine language.
Char and Varchar both are the datatypes in DBMS. Char and varchar both datatypes are used to store characters up to 8000. The only point of difference between the Char and Varchar is Char fixed length string datatype whereas Varchar, as the name suggests, is a variable length character storing data type.
For example, char(7) will take 7 bytes of memory to store the string, and it also includes space. Whereas varchar will take variable space, which means that it will only take that much of space as the actual data entered as the data of varchar data type.
The different levels of programming languages were listed below:
The word "Java Virtual Machine known as JVM in short" is used for the virtual machine in Java. This word is implemented from the java runtime environment (JRE).
The list of areas where data structures are applied extensively are listed below:
A structure and a class differ a lot as a structure has limited functionality and features as compared to a class. A class can be defined as the collection of related variables and functions encapsulated in a single structure whereas a structure can be referred to as an user-defined datatype for processing its operations. A keyword "Struct" is used for declaration of Struct Where a keyword "class" is used for the declaration of a class in the programming language. Default access specifier of the class is private whereas default access specifier of the struct is public. The purpose of the class is data abstraction and further inheritance whereas the use of the struct is generally, Grouping of data. General usage of the struct is a small amount of data whereas general usage of the class is to store a large amount of data.
White Box Testing | Black Box Testing | Gray Box Testing |
---|---|---|
Internal programming fully known. | Internal programming is not known. | Internal programming is partially known. |
Tester knows the internal working of the application. | The knowledge of the internal working of the application is not required. | Internal working of the application is partially known. |
White box testing is also known as glass, open box, clear box, structural testing, or code-based testing. | Black box testing is also known as a closed box, data-driven, and functional testing. | Gray box testing is also known as translucent testing. |
Performed by tester and developers. | Performed by the end user and also by tester and developers. | Performed by the end user and also by tester and developers. |
The tester can design test data. | Testing is based on external expectation. | By high-level database diagrams and data flow diagrams. |
Most exhaustive and time-consuming. | Least time consuming and exhaustive. | Partially time-consuming and exhaustive. |
Data domain and internal boundaries can be better tested. | Performed by the trial, and error method. | Data domains and the internal boundaries can be tested if known. |
Not suited for algorithm testing. | Not suited for algorithm testing. | Suited for algorithm testing. |
The three levels of data abstraction are listed below:
No doubt, View level layer of database abstraction is at the user end.
IPv4 | IPv6 |
---|---|
IPv4 contains 32 bit Ip address. | IPv6 contains 128 bit IP address. |
The older version of the IP address. | The newer version of the IP address. |
generates 4.29 x 109 unique network addresses | produces 3.4 x 1038 addresses |
C and C++ both use the same syntax. C++ is the extension of the C language. C and C++ both have same compilers. C++ language consists of classes and objects whereas there are no classes and objects available in the C language. C++ is an OOP based programming whereas C is not OOPS based programming language.
The two types of modulation techniques are an analog and digital modulation. Further analog modulation is subdivided into amplitude, frequency and phase modulation.
"a" is string value whereas 'a' is a character value in c programming language.
The pre-processor is just a text substitution tool, and they instruct the compiler to do required pre-processing before actual compilation.
Infosys Limited is an Indian company. The headquarters are in Bengaluru, Karnataka, India. Company trade name as "Infosys Technologies Limited." This business provides consulting, information technology and outsourcing services.
I would like to tell you other than what is there in it. I am born and raised in Banaras city. In Banaras, there are not many good colleges to pursue B.Tech, so I came to Bengaluru for learning and understanding things. Here, in my early phase I started facing few difficulties but after some days, I was able to sort out almost every problem. I think, adaptability, quick learning and problem-solving are my positive points and coming to my weakness I am emotional kind of person, but this might be helpful in maintaining the proper relationship.
Example 1: I would like to work in software development.
Example 2: I would like to work in software testing.
Example: I get to know about your company from several online websites.
Infosys is the second-largest revenue earning IT Company in India. Every person wants to work for your company.
I am a hard working person, and my priority is to serve your organization. I can sort out almost every problem, and I think adaptability, quick learning and problem-solving are my positive points.
Yes, I had many offers from many IT companies like HCL and TCS.
Infosys Limited is an Indian company. The headquarters are in Bengaluru, Karnataka, India. Company trade name as "Infosys Technologies Limited." This company provides consulting, information technology and outsourcing services.
Infosys has many competitors, providing the software facilities worldwide. HCL, Wipro, IBM, and Microsoft were some software companies in competition with Infosys.
Example: "No. This is my dream company so wait doesn't matter. I have enough time for the interview."
Answer of this question depends upon the interviewee, If the interviewee faces any problem while giving the online test then he can tell the issue to the interviewer otherwise answer will be "Online test was good."
For Example, My father is a police officer working in Rajiv Chowk police station.
Example: The role model of my life is my mother. Whenever I am down my mother helps me to push my limits, and she always keeps me on the track. She scolds me every time when I do something wrong. She is everything for me, and I always got inspired from her how she manages every problem in every situation.
Example 1: I am living with my family in New Delhi.
Example 2: I am living in a hostel of Cambridge University.
Example: Technically, I am active in programming, and I will be passionate to work on my programming skills because programming is nothing but just telling the computer how to perform tasks.
Example: I can sort out almost every problem, and I think adaptability, quick learning and problem-solving are my positive points and coming to my weakness I am emotional kind of person, but this might be helpful in maintaining the proper relationship.
The three things would make a good leader are listed below:
Success refers to the accomplishment of an aim or purpose.
The hardest experience I had experienced in my life is doing my university project alone because no one understands my project idea.
Yes, I have been the team leader in my last working organization, where I confidently applied my leadership quality to all my team members. I often give small treats to all my team members in return for successful completion of the assigned task.
Example: The most stressful situation I have faced in college life is learning accountancy, which is of course not a subject of computer science but, in Indira Gandhi National Open University (IGNOU) accountancy is a compulsory subject to Complete BCA programme. Well, that was a very stressful situation for me, one side I was against the education system, and in another side, I was not so right in accountancy. After all of this, I started learning accountancy. In my early phase I started facing a few difficulties, but after some days I was able to sort out almost every problem.
Example 1: Yes, in my previous organization I had emerged as the group leader in the technical department. Where I had faced many challenges facing the issues but after some time I can sort every problem.
If the person is a fresher, then he should answer like this:
Example 2: I don't have any work experience, so I have no such real-time situation when I have emerged as a leader but, in my college, I have been the leader of the group project. In my team, I have emerged as a leader.
I understand that success is not always guaranteed but there is still hope, and I never lose the faith, whether I succeed or not. I think this power makes me standalone from all other candidates.
I will see myself in a respectful position in your company.
My goal is to work for the company like Infosys where I can enhance my technical skills and knowledge, and my long-term goal is to see myself at a topmost position in a reputed company like yours.
I had worked on swiggy food delivering a mobile Android application.
I will rate myself 7 out of 10 as an engineer because there are always some things which have to learn in life.
My strongest point of technical knowledge is programming. I like every programming language because programming is as easy as telling someone to perform some task, for that you need the same communication language. The only difference is we are telling task to the computer instead of the humans.
Fri, 16 Jun 2023
Fri, 16 Jun 2023
Fri, 16 Jun 2023
Write a public review