Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Safran Engineering Services India Team. If you also belong to the team, you can get access from here

Safran Engineering Services India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Safran Engineering Services India Software Engineer Interview Questions and Answers

Updated 5 May 2022

Safran Engineering Services India Software Engineer Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in 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 

Be confident

Round 3 - HR 

(1 Question)

  • Q1. General communication

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be good in communication

Interview questions from similar companies

I applied via Walk-in and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. .net questions - routing in asp.net MVC ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing . Prepare well for interview on .Net technology stack

I applied via Campus Placement and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good

Round 2 - Technical 

(1 Question)

  • Q1. Basic question from C++.Some questions from Data structure and computer architecture.

Interview Preparation Tips

Topics to prepare for TCS Software Engineer interview:
  • C++
Interview preparation tips for other job seekers - Prepare well. Aptitude is not very easy so you have to prepare well.

Interview Preparation Tips

Round: Test
Experience: Very easy questions. Practice R.S Agarwal aptitude and verbal books.
Duration matters. Solve the questions fast.Skip the questions if you think you don't know dont kill time on them.

In verbal most of the questions on subject verb agrement-wikipedia links are enough to practice on them.

It's easy just try to solve as many as u can and dont leave the questions unanswered,no negative marking.
Duration: 80 minutes
Total Questions: 120

Skill Tips: Talk in english. Be confident. smile in face.
Skills: c Language, Thinking ability, English fluency
College Name: K L University
Funny Moments: Im very bad in solving puzzles. The HR over there asking puzzles to every one.
It's my turn the 1st question he asked me was what are you bad at?
no 2nd thought I said solving puzzles...In that way he didnt ask me any puzzles. He checked my confidence, english fluency...e.t.c.

I was interviewed in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Question on specific language
  • Q2. Based on company

Interview Preparation Tips

Round: Test
Experience: There was 7 sections. And each section has a 60% sectional cutoff
Tips: Attempt questions which you know and you are confident about
Duration: 50 minutes
Total Questions: 70

Round: Story writing
Experience: Write a story based on picture
Tips: No grammatical errors must be there

Round: Technical Interview
Experience: 1 hour interview but based on technical and daily life
Tips: Be confident

Round: HR Interview
Experience: Just a simple round..bcoz u are almost selected
Tips: Be positive

Skills: Communication And Confidence

Interview Preparation Tips

Round: Resume Shortlist
Experience: The eligibility criteria was > 65% in academics.it was a pool campus drive in which nearly 5-6 college students participated in it

Round: Test
Duration: 1 hour

College Name: Institute of aeronautical engineering

Software Engineer Interview Questions & Answers

Wipro user image Rohit Karnatakapu

posted on 11 Nov 2015

Interview Preparation Tips

Round: Test
Experience: They conducted two tests.If you are an 8 pointer you should give the technical test,else you should give both the technical and aptitude test.It was conducted on amcat.If you have any material related to amcat,go through it once.They will select more people who give technical than people who give both technical and apti.

Round: Technical Interview
Experience: It's both technical and hr round.Some basic questions on your core subjects.Small puzzles.For some they have two rounds like technical and hr.People who do not give their hr also get recruited,so don't panic.They asked me why did you choose wipro?.And if you get a job in product based company will you go there?
Tips: Be cool and focussed. Answer properly.

Skills:
College Name: VIT Vellore

Interview Preparation Tips

General Tips: For EEE students it is very important to know your strengths. Also you got to plan effectively if you are taking GRE and other exams. Try to make your resume company specific. Having too many electronics or other research projects may hurt your chance of getting in companies which don't have suitable profile. For EEE students it is safe to learn basic programming skills in C , C++ . Having any software projects done in C,C++,Java languages is helpful. Unless anyone is interested in power systems related company it is beneficial for others to learn basic programming. Generally first round is toughest round to clear. So familiarity in basic aptitude questions is necessary. Interviews again require company specific preparation. A lot depends on luck at this stage to get a final offer.
Skill Tips: I went through Data structures and algorithms section in geeksforgeeks site.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Q2. Why wipro
  • Q3. What is pointer?Why do we need it and the applications of it?
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. It is used to manipulate data indirectly.

    • Pointers allow for dynamic memory allocation

    • Pointers can be used to pass data between functions efficiently

    • Pointers are used extensively in data structures such as linked lists and trees

  • Answered by AI
  • Q4. Multithreading
  • Q5. Wap to check a number whether prime or not
  • Ans. 

    A program to check if a number is prime or not.

    • A prime number is only divisible by 1 and itself.

    • Loop through all numbers from 2 to n-1 and check if n is divisible by any of them.

    • If n is divisible by any number, it is not prime.

    • If n is not divisible by any number, it is prime.

  • Answered by AI
  • Q6. Wap to implement bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the first element is greater than the next element, swap them

    • Repeat this process for all elements in the list

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q7. What is cloud
  • Ans. 

    Cloud is a network of remote servers where data and applications can be stored and accessed over the internet.

    • Cloud computing allows for on-demand access to computing resources

    • Cloud services can be public, private, or hybrid

    • Examples of cloud services include Amazon Web Services, Microsoft Azure, and Google Cloud Platform

  • Answered by AI
  • Q8. What is data abstrction and encapsulation with examples
  • Ans. 

    Data abstraction and encapsulation are OOP concepts that help in hiding implementation details and providing a simplified interface.

    • Data abstraction is the process of hiding implementation details while showing only the necessary information to the user.

    • Encapsulation is the process of wrapping data and code into a single unit, preventing direct access to data from outside the unit.

    • Example of data abstraction: A car das...

  • Answered by AI
  • Q9. What is data structre and y do we need it?
  • Ans. 

    Data structure is a way of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures help in efficient data storage and retrieval

    • They provide a way to organize and manage large amounts of data

    • Examples include arrays, linked lists, trees, and graphs

  • Answered by AI
  • Q10. What is database and normalization?
  • Ans. 

    A database is a collection of data organized in a structured way. Normalization is the process of organizing data to minimize redundancy.

    • A database is used to store and manage data.

    • Normalization is the process of breaking down data into smaller, more manageable pieces.

    • Normalization helps to minimize data redundancy and improve data consistency.

    • There are different levels of normalization, such as first normal form (1NF)...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It was amazing experience. He was impressed with my answers.
Tips: Whatever you answer,answer with examples so that the interviewer will feel that you know the concept.
And don't give up easily,try to answer it if you can't then ask for a HINT.

Skills: Confidence,Body language,Eagerness to learn,adaptibility,
College Name: KIIT University

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

Safran Engineering Services India Interview FAQs

How many rounds are there in Safran Engineering Services India Software Engineer interview?
Safran Engineering Services India interview process usually has 3 rounds. The most common rounds in the Safran Engineering Services India interview process are Resume Shortlist, Aptitude Test and HR.
How to prepare for Safran Engineering Services India Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Safran Engineering Services India. The most common topics and skills that interviewers at Safran Engineering Services India expect are Codesys, Software Engineering, Application Software, Data Analytics and Deep Learning.

Tell us how to improve this page.

Safran Engineering Services India Software Engineer Salary
based on 17 salaries
₹4 L/yr - ₹6 L/yr
40% less than the average Software Engineer Salary in India
View more details

Safran Engineering Services India Software Engineer Reviews and Ratings

based on 9 reviews

2.0/5

Rating in categories

2.8

Skill development

2.4

Work-life balance

2.4

Salary

4.2

Job security

2.4

Company culture

2.4

Promotions

2.4

Work satisfaction

Explore 9 Reviews and Ratings
Engineer 1
134 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
97 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

L2 Engineer
94 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Safran Engineering Services India with

AIRBUS

3.7
Compare

Boeing

3.9
Compare

GE

4.2
Compare

Honeywell Automation

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview