Upload Button Icon Add office photos

Filter interviews by

Siemens Industry Software (India) Interview Questions, Process, and Tips for Freshers

Updated 11 Feb 2025

Top Siemens Industry Software (India) Interview Questions and Answers for Freshers

Siemens Industry Software (India) Interview Experiences for Freshers

Popular Designations

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2025

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

I applied via Campus Placement and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two coding questions of easy to moderate difficulty level, focusing on arrays and strings.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the Quick Sort algorithm?
  • Ans. 

    Quick Sort is a popular sorting algorithm that uses a divide-and-conquer approach to sort elements in an array.

    • Divides the array into two sub-arrays based on a pivot element

    • Recursively sorts the sub-arrays

    • Combines the sorted sub-arrays to produce the final sorted array

    • Example: [3, 6, 8, 10, 1, 2, 1] -> [1, 1, 2, 3, 6, 8, 10]

  • Answered by AI
  • Q2. What is the merge sort algorithm and what is its time complexity?
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them recursively, and then merges them back together.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

    • Time complexity is O(n log n)

  • Answered by AI

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Go with basic stuff clear, as for advanced stuff they are also not clear

Round 2 - HR 

(4 Questions)

  • Q1. Salary discussion
  • Q2. What is your current CTC
  • Q3. What is your expected CTC
  • Ans. 

    My expected CTC is based on my experience, skills, and the market rate for Softwaretest Engineers.

    • My expected CTC is in line with industry standards for Softwaretest Engineers.

    • I have taken into consideration my years of experience and expertise in software testing.

    • I am open to negotiation based on the overall compensation package offered by the company.

  • Answered by AI
  • Q4. Whay you decided to change Job
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Desire for career advancement

    • Interest in working with new technologies

    • Seeking better work-life balance

    • Company restructuring or downsizing

    • Relocation to a new city

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you got the interview call, it is most likely that you will be hired, as they do interviews when they seriously needs one and situation is unbalanced without a additional resource.
But of you join, you will be stuck with mediocre colleagues.

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Scenario based to be solved with python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the core concepts very well.

Interview Preparation Tips

Round: Resume Shortlist
Experience: General resume shortlisting out of nearly 400 applicants. Shortlisted close to 150 students.

Round: Technical Interview
Experience: Mostly questions from the resume were asked. They just wanted to know the types of projects I had done.
Tips: Make sure you know everything about what you write in your resume.

Round: Technical Interview
Experience: Another round of technical interview. Questions were more focused on the kind of profile they were offering, mostly to judge whether you are right for the job or not.

Skills: Confidence, Core knowledge
College Name: IIT BOMBAY

I applied via Approached by Company and was interviewed in Aug 2017. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic Java questions. Coding based on technical topics in Java. Approach and knowledge of other technology apart from core strength like ui ,design .
  • Q2. Scenario based questions. Deeper into Java and related technologies
  • Q3. Again based on Java and project but kind of client interview
  • Q4. Basic hr questions and salary discussion

Interview Preparation Tips

Round: Managerial
Experience: More of past projects and team handling

General Tips: Be prepared for basics in related technology and good through understanding in one core area.
Skills: Communication, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-3 Months

Interview Questionnaire 

3 Questions

  • Q1. Simple question as per 4 year of experience
  • Q2. Same question asked by interviewer
  • Q3. Too much tried for negotiation and not gave expected compansession

I applied via Naukri.com and was interviewed before Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Implement stack data structure
  • Ans. 

    Implement stack data structure

    • Use an array or linked list to store elements

    • Push operation adds element to top of stack

    • Pop operation removes element from top of stack

    • Peek operation returns top element without removing it

  • Answered by AI
  • Q2. How global variable work , how its shared by all function
  • Ans. 

    Global variables are accessible from any part of the program and can be modified by any function.

    • Global variables are declared outside of any function.

    • They can be accessed and modified by any function in the program.

    • If a function modifies the value of a global variable, the new value is visible to all other functions.

    • Global variables can be useful for sharing data between functions.

    • However, overuse of global variables

  • Answered by AI
  • Q3. Program to transpose the matrix
  • Ans. 

    Program to transpose a matrix

    • Iterate through rows and columns of the matrix

    • Swap the elements at (i,j) and (j,i) positions

    • Return the transposed matrix

  • Answered by AI
  • Q4. Internal implementation of pre and post fix operator
  • Ans. 

    Pre and post fix operators are used to increment or decrement a value before or after it is used in an expression.

    • Pre-fix operator (++x) increments the value of x and returns the new value.

    • Post-fix operator (x++) returns the value of x and then increments it.

    • Both operators can be used with variables of numeric data types.

    • They can also be used with pointers to increment or decrement the memory address they point to.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some standard problem from geekforgeeks.com

Skills evaluated in this interview

I appeared for an interview in Aug 2017.

Interview Questionnaire 

4 Questions

  • Q1. Difference between c and java?
  • Ans. 

    C is a procedural programming language while Java is an object-oriented programming language.

    • C is a low-level language while Java is a high-level language.

    • C requires manual memory management while Java has automatic memory management.

    • C is platform-dependent while Java is platform-independent.

    • C supports pointers while Java does not.

    • C has a simpler syntax compared to Java.

  • Answered by AI
  • Q2. Difference between final, finally and finalize
  • Ans. 

    final, finally, and finalize are keywords in Java with different meanings.

    • final is a keyword used to declare a constant value, a variable that cannot be modified.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method in the Object class that is called by the garbage collector before an object is destroyed.

    • final and finally a...

  • Answered by AI
  • Q3. About yourself
  • Q4. Why Johnson
  • Ans. 

    Johnson is a reputable company known for its innovative software solutions and collaborative work environment.

    • Johnson has a strong reputation in the industry for delivering high-quality software solutions.

    • The company values collaboration and teamwork, which aligns with my own work style.

    • I admire Johnson's commitment to innovation and staying ahead of technological advancements.

  • Answered by AI

Interview Preparation Tips

Round: Apptitude Test
Experience: Questions was unpredictable as it was from reasoning,verbal , and from general knowledge also.Technical questions was also there.
Tips: Technical question was not that hard. Just have good basic knowledge of programming and DBMS

Round: Technical Interview
Experience: It was from basic concepts only.

Round: HR Interview
Experience: There were 12 HRs to take my interview but asked mainly from CV only.

Tips: Be calm and confident and learn the basic of subjects

College Name: BPPIMT

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

Interview Questionnaire 

1 Question

  • Q1. 1. What are delegates? 2. Question on Linq C# 3. Most of the questions were on design patterns and SOLID principles 4. OOPS concepts 5. Puzzles were also there.

Siemens Industry Software (India) Interview FAQs

How many rounds are there in Siemens Industry Software (India) interview for freshers?
Siemens Industry Software (India) interview process for freshers usually has 2 rounds. The most common rounds in the Siemens Industry Software (India) interview process for freshers are Coding Test, Technical and HR.
How to prepare for Siemens Industry Software (India) interview for freshers?
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 Siemens Industry Software (India). The most common topics and skills that interviewers at Siemens Industry Software (India) expect are Siemens, Accountancy, Accounting, Analytics and Automation.
What are the top questions asked in Siemens Industry Software (India) interview for freshers?

Some of the top questions asked at the Siemens Industry Software (India) interview for freshers -

  1. What is the merge sort algorithm and what is its time complexi...read more
  2. What is the Quick Sort algorit...read more
  3. What is your expected ...read more
How long is the Siemens Industry Software (India) interview process?

The duration of Siemens Industry Software (India) interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Siemens Industry Software (India) Interview Process for Freshers

based on 2 interviews

Interview experience

4
  
Good
View more

Siemens Industry Software (India) Reviews and Ratings

based on 121 reviews

4.3/5

Rating in categories

3.8

Skill development

4.4

Work-life balance

3.7

Salary

4.2

Job security

4.2

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 121 Reviews and Ratings
Software Engineer
166 salaries
unlock blur

₹7.9 L/yr - ₹26 L/yr

Software Developer
56 salaries
unlock blur

₹5.6 L/yr - ₹19.5 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹12.6 L/yr - ₹38.6 L/yr

Associate Software Engineer
30 salaries
unlock blur

₹6.9 L/yr - ₹14.8 L/yr

Advanced Software Engineer
28 salaries
unlock blur

₹16.4 L/yr - ₹37.3 L/yr

Explore more salaries
Compare Siemens Industry Software (India) with

Siemens

4.1
Compare

Schneider Electric

4.1
Compare

Johnson Controls

3.5
Compare

Honeywell Automation

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