Upload Button Icon Add office photos

Filter interviews by

Boeing International Corporation India Software Engineer Intern Interview Questions and Answers for Freshers

Updated 23 Oct 2024

Boeing International Corporation India Software Engineer Intern Interview Experiences for Freshers

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a python string using slicing or other methods
  • Ans. 

    Use slicing to reverse a Python string

    • Use string slicing with a step of -1 to reverse the string

    • Example: 'hello'[::-1] will return 'olleh'

  • Answered by AI
  • Q2. Print 1000 first rows in sql using the id column
  • Ans. 

    Use SQL query to print the first 1000 rows using the id column

    • Use SELECT statement to retrieve data from the table

    • Use ORDER BY clause to sort the data by id column

    • Limit the result set to 1000 rows using LIMIT clause

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Boeing International Corporation India?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Nov 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Numerical and logical aptitude test

Round 3 - Coding Test 

There are 5 rounds on datastructure and algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice hr and all team is suportive
Good and smoth interview experiance

Software Engineer Intern Interview Questions Asked at Other Companies for Fresher

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, y ... read more
Q2. Partition Array Minimizing Subset Sum Difference Given an array c ... read more
Q3. Zero Matrix Problem Statement You are given a matrix MATRIX of di ... read more
Q4. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q5. Search In Rotated Sorted Array Problem Statement Given a rotated ... read more

Interview Questionnaire 

1 Question

  • Q1. Aptitude, coding

I applied via Campus Placement and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. 1) Introduce yourself
  • Ans. 

    I am a passionate Software Engineer with a strong background in full-stack development and a love for solving complex problems.

    • Education: I hold a degree in Computer Science, where I developed a solid foundation in algorithms and data structures.

    • Experience: I have over 3 years of experience working with technologies like Java, Spring Boot, and React, building scalable web applications.

    • Projects: I led a team project to ...

  • Answered by AI
  • Q2. 2) OOPS concepts
  • Q3. 3) About Project
  • Q4. 4) Why cognizant
  • Ans. 

    Cognizant offers innovative solutions, a collaborative culture, and opportunities for growth in a dynamic tech environment.

    • Cognizant's commitment to innovation aligns with my passion for cutting-edge technology, as seen in their AI and cloud solutions.

    • The company's diverse projects across various industries provide a unique opportunity to broaden my skill set and experience.

    • Cognizant's emphasis on employee development ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is completely based on basic concepts of c++

Interview Questionnaire 

2 Questions

  • Q1. Difference between++I and I++
  • Ans. 

    ++I is a pre-increment operator that increments the value of I before using it, while I++ is a post-increment operator that increments the value of I after using it.

    • ++I increments the value of I and then uses the updated value in the expression.

    • I++ uses the current value of I in the expression and then increments it.

    • Both operators can be used with variables, arrays, or pointers.

  • Answered by AI
  • Q2. Local static variable

Skills evaluated in this interview

I appeared for an interview before Nov 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

The interview was with a Korean employee. 

  • Q1. 

    Bridge in Graph Problem Statement

    Given an undirected graph with V vertices and E edges, your task is to find all the bridges in this graph. A bridge is an edge that, when removed, increases the number of...

  • Ans. 

    Find all the bridges in an undirected graph.

    • Use Tarjan's algorithm to find bridges in the graph.

    • A bridge is an edge whose removal increases the number of connected components.

    • Check for bridges by removing each edge and checking the number of connected components.

    • Return the edges that are bridges in non-decreasing order.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

Interviewer was an Indian employee. 

  • Q1. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindrome with the smallest start index

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

Interviewer was an Indian employee.

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

    • Iterate through the words in the dictionary to build a graph of character dependencies.

    • Perform a topological sort on the graph to determine the character order.

    • Return the character order as a list of characters.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Hard

Interviewer was an Indian employee. 

  • Q1. 

    Problem: Ninja's Robot

    The Ninja has a robot which navigates an infinite number line starting at position 0 with an initial speed of +1. The robot follows a set of instructions which includes ‘A’ (Acceler...

  • Ans. 

    Determine the minimum length of instruction sequence for a robot to reach a given target on an infinite number line.

    • Start at position 0 with speed +1, update position and speed based on 'A' and 'R' instructions

    • For each test case, find the shortest sequence of instructions to reach the target

    • Consider both positive and negative positions for the robot

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaMust be in final yearGoogle interview preparation:Topics to prepare for the interview - Data Structures, Pointers, Trees, Graphs, Algorithms, Dynamic Programming, BacktrackingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Do competitive coding in 1st and 2nd year.
Tip 2 : Practice basic questions before starting complex problem.
Tip 3 : Start doing mock interviews from the end of 5th semester. It gives a lot of confidence.

Application resume tips for other job seekers

Tip 1 : Adding competitive programming ranks add value.
Tip 2 : You should have some good project which you can explain nicely.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basic OOPs and Database
  • Q2. BTech Subjects and Upcoming IT Trends

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Work-Life Balance. U will get time to learn many new skills.
May be little work satisfaction
Are these interview questions helpful?

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked to calculate time complexity of any algorithm
  • Ans. 

    Time complexity measures the amount of time an algorithm takes to complete based on input size.

    • Time complexity is expressed using Big O notation (e.g., O(n), O(log n)).

    • O(1) indicates constant time, e.g., accessing an array element.

    • O(n) indicates linear time, e.g., iterating through an array.

    • O(n^2) indicates quadratic time, e.g., nested loops through an array.

    • O(log n) indicates logarithmic time, e.g., binary search in a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice is the only silver bullet to crack any interview!
Do coding of problem on notepad. Refer DS, ALGO related problem from GeeksOfGeeks site.

And 1 more thing coding is an art and please do not mug up the code, just try to understand the tricks, logic and solution and use those tricks and solution to solve any coding problem.

Do practice, Do practice and Do practice....nothing else

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

It was a hangout video call. The interviewer asked me these questions. Tell me about yourself and 1 coding question.

  • Q1. 

    Special Numbers Problem Statement

    Your task is to find the total count of special numbers within a range from 1 to a given integer, 'MAXVAL'. A special number is defined as a number whose digits, when rot...

  • Ans. 

    Count the total number of special numbers within a given range by rotating digits 180 degrees.

    • Create a function to check if a number is a special number by rotating its digits.

    • Iterate through the range from 1 to MAXVAL and count the special numbers.

    • Handle the digit rotation mapping for 0, 1, 6, 8, 9.

    • Return the count of special numbers for each test case.

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

This was an On-site (Behavioural Round) interview. He asked me these questions.

Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

This was another On-site ( DS & Algo) algorithm.

  • Q1. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. 

    Given constraints, find max vaccines administered on a specific day during a vaccination drive.

    • Iterate through each test case and calculate the maximum number of vaccines distributed on the specified day.

    • Distribute vaccines evenly across days while maximizing the number on the specified day.

    • Ensure that the sum of vaccines administered does not exceed the maximum allowed.

    • Consider edge cases like when the number of days ...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

Another On-site ( DS & Algo) interview.

  • Q1. 

    Painter's Partition Problem Statement

    Given an array/list representing boards, where each element denotes the length of a board, and a number ‘K’ of available painters, determine the minimum time required...

  • Ans. 

    Determine the minimum time required to paint all boards with given constraints.

    • Use binary search to find the minimum and maximum possible time to paint all boards.

    • Iterate through the boards and assign them to painters based on the time constraints.

    • Calculate the total time taken to paint all boards with the assigned painters.

  • Answered by AI
  • Q2. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates.

    • Use sliding window technique to find the minimum difference between the largest and smallest number of chocolates.

    • Return the minimum difference as the output.

  • Answered by AI
Round 5 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

Another On-site ( DS & Algo) interview.

  • Q1. 

    Problem Statement: Minimize the Maximum

    You are given an array of integers and an integer K. For each array element, you can adjust it by increasing or decreasing it by a value of K. Your goal is to minim...

  • Ans. 

    Given an array of integers and an integer K, minimize the difference between the maximum and minimum elements after adjusting each element by +/- K.

    • Sort the array in non-decreasing order.

    • For each element, calculate the difference between the current element and the next element.

    • Adjust the element by adding or subtracting K to minimize the difference.

    • Return the minimum possible difference between the maximum and minimum...

  • Answered by AI
Round 6 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

On-site ( DS & Algo) interview.
Google mainly focuses on logic and how you are coming with a solution. It notes down each and every small mistake. Interviewers are really very helpful. They expect clear code with an optimal approach.

  • Q1. 

    Farthest Distance From Lands Problem Statement

    Given a binary square matrix 'ARR' with 'N' rows and 'N' columns, where '0' represents water and '1' represents land.

    Determine the water cell whose distanc...

  • Ans. 

    Find the water cell farthest from land in a binary matrix using Manhattan distance.

    • Iterate through the matrix to find all land cells and water cells

    • Calculate the Manhattan distance of each water cell to the nearest land cell

    • Return the maximum distance found

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaGoogle interview preparation:Topics to prepare for the interview - Java, Data Structure, Algorithms, Dynamic Programming, STLTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in coding contests.
Tip 2 : Practice as many questions as you can.
Tip 3 : Do some good projects.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. General HR questions. Some questions from AI and some from web development

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume, projects and ready with general HR questions.

Boeing International Corporation India Interview FAQs

How many rounds are there in Boeing International Corporation India Software Engineer Intern interview for freshers?
Boeing International Corporation India interview process for freshers usually has 1 rounds. The most common rounds in the Boeing International Corporation India interview process for freshers are Technical.
What are the top questions asked in Boeing International Corporation India Software Engineer Intern interview for freshers?

Some of the top questions asked at the Boeing International Corporation India Software Engineer Intern interview for freshers -

  1. Reverse a python string using slicing or other meth...read more
  2. Print 1000 first rows in sql using the id col...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Programmer Analyst
20 salaries
unlock blur

₹8.9 L/yr - ₹18.3 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹8.5 L/yr - ₹21 L/yr

Lead Engineer
9 salaries
unlock blur

₹10 L/yr - ₹38 L/yr

Software Engineer
9 salaries
unlock blur

₹6 L/yr - ₹12.5 L/yr

System Engineer
8 salaries
unlock blur

₹7.5 L/yr - ₹26.6 L/yr

Explore more salaries
Compare Boeing International Corporation India with

Cognizant

3.7
Compare

Teleperformance

3.9
Compare

iEnergizer

4.7
Compare

Reliance Retail

3.9
Compare
write
Share an Interview