Upload Button Icon Add office photos

Filter interviews by

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

Updated 28 Nov 2024

Siemens Industry Software (India) Softwaretest Engineer Interview Experiences for Freshers

1 interview found

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.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. 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 - One-on-one 

(1 Question)

  • Q1. Technical Questions - access specifiers, why is java platform independent, oops concepts, difference between Array List and LinkedList, Time Complexity, Immutable class, Questions related to Strings, Valid...
Round 3 - One-on-one 

(1 Question)

  • Q1. Live coding question based on array and Strings
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. 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 - Technical 

(1 Question)

  • Q1. Project related questions, output related questions and 2 coding questions
Round 3 - Coding Test 

Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Why do you want to change the job
  • Q2. Manual testing and automation testing questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about correlation some technical questions about loadrunner tool
  • Q2. Loadrunner basics
  • Q3. Diff b/w thread process
  • Ans. 

    A process is an instance of a program running on a computer, while a thread is a smaller unit of execution within a process.

    • Process is an independent entity that runs in its own memory space, while threads share the same memory space within a process.

    • Processes have their own resources like memory, file handles, etc., while threads share these resources.

    • Processes are heavyweight, while threads are lightweight.

    • Example: A...

  • Answered by AI
  • Q4. Appd basic questions
  • Q5. Diffeent approach for load balancing model
  • Ans. 

    Load balancing models distribute incoming network traffic across multiple servers to ensure no single server is overwhelmed.

    • Different algorithms for load balancing include round robin, least connections, and IP hash.

    • Consider factors like server capacity, network latency, and traffic patterns when choosing a load balancing model.

    • Implementing a hybrid approach combining multiple load balancing algorithms can optimize per

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Good 

(2 Questions)

  • Q1. What is data types
  • Ans. 

    Data types are classifications that specify the type of data that a variable can hold in programming languages.

    • Data types define the type of data that can be stored in a variable, such as integers, strings, or booleans.

    • Examples of data types include int (for integers), float (for floating-point numbers), and string (for text).

    • Data types help ensure data integrity and provide constraints on the operations that can be pe

  • Answered by AI
  • Q2. What' we are using ide
  • Ans. 

    We are using an Integrated Development Environment (IDE) for software testing.

    • IDE helps in writing, debugging, and testing code in one place

    • Popular IDEs include IntelliJ IDEA, Eclipse, and Visual Studio

    • IDEs provide features like code completion, syntax highlighting, and debugging tools

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Prepare python data structures and python basics

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 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

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

Siemens Industry Software (India) Interview FAQs

How many rounds are there in Siemens Industry Software (India) Softwaretest Engineer 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 and HR.
How to prepare for Siemens Industry Software (India) Softwaretest Engineer 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 Agile, Automation Framework, Computer science, GIT and HTML.
What are the top questions asked in Siemens Industry Software (India) Softwaretest Engineer interview for freshers?

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

  1. What is your expected ...read more
  2. Whay you decided to change ...read more
  3. C++ questions ba...read more

Tell us how to improve this page.

Siemens Industry Software (India) Softwaretest Engineer Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more
Siemens Industry Software (India) Softwaretest Engineer Salary
based on 23 salaries
₹3.1 L/yr - ₹5.6 L/yr
23% less than the average Softwaretest Engineer Salary in India
View more details

Siemens Industry Software (India) Softwaretest Engineer Reviews and Ratings

based on 2 reviews

2.0/5

Rating in categories

1.7

Skill development

1.7

Work-life balance

1.5

Salary

4.7

Job security

1.7

Company culture

1.5

Promotions

2.5

Work satisfaction

Explore 2 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