Siemens Limited interview experience Real time questions & tips from candidates to crack your interview

Senior Software Engineer

Siemens Limited
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 4 months
Topics: OOPS, MySQL, Spring Boot, Hibernate, Java8
Tip
Tip

Tip 1 : First have overview of the concepts through theory and then do the practical implementation.
Tip 2 : Make a habit of solving at least 5-7 problems daily. (Doesn't matter big or small).
Tip 3 : Try to solve the problem in 2 or more 2 approaches

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have some certification in the resume.
Tip 2 : Mention the proper keyword as per the role you are applying for.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date15 Jan 2018
Coding problem1

1. Bubble Sort

Easy
10m average time
90% success
0/40
Asked in companies
Lenskart.comOptumWells Fargo

Following are the steps involved in bubble sort(for sorting a given array in ascending order):

Starting with the first element(index = 0), compare the current element with the next element of the array.
If the current element is greater than the next element of the array, swap them.
If the current element is less than the next element, move to the next element. Repeat Step 1.
Let's consider an array with values {5, 1, 6, 2, 4, 3}



#include

void bubbleSort(int arr[], int n)
{
int i, j, temp;
for(i = 0; i < n; i++)
{
for(j = 0; j < n-i-1; j++)
{
if( arr[j] > arr[j+1])
{
// swap the elements
temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
}
}
}

// print the sorted array
printf("Sorted Array: ");
for(i = 0; i < n; i++)
{
printf("%d ", arr[i]);
}
}

int main()
{
int arr[100], i, n, step, temp;
// ask user for number of elements to be sorted
printf("Enter the number of elements to be sorted: ");
scanf("%d", &n);
// input elements if the array
for(i = 0; i < n; i++)
{
printf("Enter element no. %d: ", i+1);
scanf("%d", &arr[i]);
}
// call the function bubbleSort
bubbleSort(arr, n);

return 0;
}

Try solving now
02
Round
Easy
Group Discussion
Duration20 minutes
Interview date1 May 2019
Coding problem1

It was a group discussion round

1. Group Discussion

As you all know that the Indian Government recently removed article 370. What are your views on the article and its removal

Problem approach

Tip 1 : Just do not speak continuously take breaks in between.
Tip 2 : Let the others speak and listen to them carefully

03
Round
Easy
HR Round
Duration15 minutes
Interview date1 May 2019
Coding problem1

In the HR Round, the HR asked some basic question

1. Basic HR Questions

  • Tell me about yourself.
  • Why we should hire you.
  • Why you want to join our company.
  • Under circumstance x, How would you perform up to expectations?
  • In absence of a senior, How will you manage clients?
Problem approach

Tip 1 : Be confident
Tip 2 : Speak politely
Tip 3 : Be firm with your answers, don't change them if the interviewer cross-questions you

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
Devops Engineer
3 rounds | 16 problems
Interviewed by Siemens Limited
3843 views
0 comments
0 upvotes
System Engineer
3 rounds | 15 problems
Interviewed by Siemens Limited
1963 views
0 comments
0 upvotes
Senior Systems Engineer
3 rounds | 16 problems
Interviewed by Siemens Limited
2750 views
0 comments
0 upvotes
SDE - 1
3 rounds | 3 problems
Interviewed by Siemens Limited
0 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Senior Software Engineer
1 rounds | 6 problems
Interviewed by Arcesium
3920 views
0 comments
0 upvotes
company logo
Senior Software Engineer
3 rounds | 3 problems
Interviewed by Ernst & Young (EY)
5173 views
0 comments
0 upvotes
company logo
Senior Software Engineer
3 rounds | 3 problems
Interviewed by HCL Technologies
3156 views
3 comments
0 upvotes