In the modern tech landscape, possessing strong coding abilities is increasingly crucial for securing quality positions in software development. Companies like Infosys, a global IT consulting and services firm, often use coding questions to assess candidates’ problem-solving skills during their hiring process. One key aspect of Infosys’ coding assessments is the Pseudocode round, which tests candidates’ ability to write algorithmic solutions using simplified code.
In this article, we will explore 5 Pseudocode Infosys coding questions for 2024 that will help you prepare for the interview and demonstrate your coding prowess.
What is Pseudocode?
Pseudocode is a high-level description of a computer program or algorithm that uses natural language or simplified syntax to express the logic of the program. It is not a programming language with a specific syntax but rather a way of writing down the steps of an algorithm in a language-agnostic way that can be understood easily.
Pseudocode is often used in the early stages of software development to help programmers plan and design their programs before writing actual code. It allows developers to focus on the logic and flow of the program without getting bogged down in the details of a particular programming language.
Pseudocode typically uses simple English words and phrases and basic programming skills constructs such as loops, conditionals, and variables. Here’s an example of a simple pseudocode algorithm that calculates the sum of two numbers:
Pseudocode Infosys Coding Questions Pattern
The Infosys online exam, conducted annually, includes a crucial Pseudocode round. Candidates must successfully clear this round to advance to the next round, Puzzle Solving.
The Pseudocode round consists of five questions, which must be solved within a 10-minute time period. The questions are based on C, C++, and data structures, and their difficulty level ranges from moderate to high.
To crack the Infosys online test, performing well in this section is essential. The Pseudocode questions play a significant role in determining the candidate’s eligibility for the next round. However, there is no negative marking for this section.
Out of the five questions, one is based on the C language, one is based on the C++ language, and two are based on data structures. The questions in this section have a moderate difficulty level, but candidates can easily crack this section with practice.
Pseudocode Infosys Coding Questions With Answers
Here are the solutions and explanations to the seven Infosys coding questions with pseudocode for 2024:
- What could be the output of the given code?
Options:
- a) 0 1 2 3 4
- b) 1 2 3 4 5
- c) 0 2 4 6 8
- d) Compilation error
Answer: The correct option is a) 0 1 2 3 4. This is because the code defines a βwhileβ loop that runs as long as i is less than 5. Inside the loop, it prints the current value of βiβ and then increments it by 1. The loop will run a total of 5 times, with βiβ taking the values 0, 1, 2, 3, and 4. Therefore, the program’s output will be “0 1 2 3 4“.
The output:
- What is the possible output of the given code?
Options:
- a) 8 2 15 1 2
- b) 8 2 15 1 1
- c) 8 2 15 2 2
- d) Compilation error
Answer: The correct option is b) 8 2 15 1 1. This is because the code defines two integer variables, βxβ and βyβ, with values β 5β and β 3β, respectively. It then prints the results of several arithmetic operations involving x and y, using the format string %d to indicate that integers should be printed. The operations are addition, subtraction, multiplication, division, and modulo. The expected output can be calculated as follows: β5 + 3 = 8β, β5 – 3 = 2β,β 5 * 3 = 15β, β5 / 3 = 1β (integer division), and 5 % 3 = 2 (remainder when 5 is divided by 3). Therefore, the output of the program will be “8\n2\n15\n1\n1\n“.
The output:
- What will be the outcome of the following code?
Options:
- a) x is greater than 5
- b) x is less than or equal to 5
- c) x is greater than or equal to 5
- d) Compilation error
Answer: The correct option is a) x is greater than 5. This is because the code defines an integer variable βxβ with value 10 and then checks whether βxβ is greater than 5 using an βifβ statement. If β xβ is greater than 5, the program prints the string “x is greater than 5\n”. Otherwise, it prints the string “x is less than or equal to 5\n”. Since x is indeed greater than 5, the program’s output will be “x is greater than 5\n.
The output:
- Give the output of the following program
Options:
- a) 10 9 8 7 6
- b) 9 8 7 6 5
- c) 10 8 6
- d) Compilation error
Answer: The correct option is a) 10 9 8 7 6. This is because the code defines an integer variable βiββ with an initial value 10 and then enters a βdo-whileβ loop that runs as long as βiβ is greater than 5. Inside the loop, it prints the value of βiβ using the format string β%dβ and then decrements βiβ by 1 using the postfix decrement operator β–β. Since i is initially 10, the first value printed will be 10, followed by 9, 8, 7, and 6. Therefore, the program’s output will be “10 9 8 7 6“.
The output:
- What will be the output of the given code?
Options:
- a) 0.0
- b) 0
- c) logical Error
- d) None
Answer: The program defines a new type, βnumβ, using βtypedefβ, which is equivalent to the built-in βintβ type. It then declares a variable βbunkβ of type βnumβ and initialises it to β0.00β, which is a floating-point constant. Finally, it prints the value of βbunkβ using the β%dβ format specifier intended for printing integers.
Since βbunkβ is declared as an βint,β the floating-point constant β0.00β will be implicitly converted to an integer value of β0.β Therefore, the program’s output will be β0.β
The output:
Summing up
Regularly practising Infosys coding questions and utilising Pseudocode to tackle challenging problems can enhance your problem-solving abilities, which increases your chances of passing the Infosys coding round. It’s crucial to remember that coding is a skill that necessitates perseverance and practice to excel.
If you require assistance, you can avail of CodeQuotient‘s exclusive SuperCoders Program, which provides hands-on practice with full-stack development and paid internships. The program’s unique emphasis on internships helps learners develop a strong fundamental understanding that will remain with them for a long time. Apply today to this exclusive program.