Upload Button Icon Add office photos

Filter interviews by

State Farm Software Engineer Interview Questions and Answers

Updated 26 Jun 2024

State Farm Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Behavioral questions and a coding test

Interview questions from similar companies

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

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Q2. Project related quw
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Coding Test 

F2f virtual coding round

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA questions were asked
  • Q2. Oops questions were asked
Round 3 - One-on-one 

(2 Questions)

  • Q1. Java questions were asked
  • Q2. Sql questions were asked
Round 4 - One-on-one 

(2 Questions)

  • Q1. System design questions were asked
  • Q2. LLM questions was asked
Round 5 - HR 

(2 Questions)

  • Q1. Behavioural questions were asked
  • Q2. Managerial questions were asked

Interview Preparation Tips

Topics to prepare for Goldman Sachs Software Engineer interview:
  • DSA
  • OOPS
  • Java
  • SQL
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic OOPS concepts
  • Q2. Angular Interview quiestions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

2 coding questions, 1hr

Interview Preparation Tips

Topics to prepare for MasterCard Software Engineer interview:
  • DSA
  • OOPS
  • DBMS
  • Operating Systems
  • Computer Networking
  • Web Development
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. C# question on basics and advanced
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a company that you want to join.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Coding Test 

Core java , string, thread , sql, mvc, spring boot

Round 2 - Technical 

(2 Questions)

  • Q1. 2 coding questions on array and string
  • Q2. Sorting , thread
Round 3 - Technical 

(3 Questions)

  • Q1. Managerial round
  • Q2. Project and some basic questions
  • Q3. Describe your project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

This is Simple medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself ?
  • Ans. 

    I am a passionate software engineer with a strong background in coding and problem-solving.

    • Experienced in multiple programming languages such as Java, Python, and C++

    • Worked on various projects including web development and mobile applications

    • Strong understanding of data structures and algorithms

    • Excellent communication and teamwork skills

    • Constantly learning and adapting to new technologies

  • Answered by AI
  • Q2. Project Based Questions and Related to Resume Based ?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at BV Raju Institute of Technology, Medak and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Video Call 

(5 Questions)

  • Q1. Tell us about your Background and Experience that would make sure you are fit for this role
  • Q2. Write a program that converts the alternate letters of a sentence into uppercase, whitespace excluded
  • Ans. 

    Program to convert alternate letters of a sentence to uppercase, excluding whitespace

    • Iterate through each character of the sentence

    • Check if the character is a letter and if its index is odd

    • Convert the letter to uppercase if conditions are met

  • Answered by AI
  • Q3. Balanced parenthesis program
  • Q4. Explain your approach to solving balanced parenthesis program
  • Ans. 

    I approach solving balanced parenthesis program by using a stack data structure.

    • Use a stack to keep track of opening parentheses

    • Iterate through the input string and push opening parentheses onto the stack

    • When a closing parenthesis is encountered, pop from the stack and check if it matches the closing parenthesis

    • If stack is empty at the end and all parentheses are matched, the string is balanced

  • Answered by AI
  • Q5. Is there anything else that you want to tell us about yourselves?
Round 2 - Technical 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. Tell me about your project, tools and algorithms used
  • Q3. Write a program to print the top five students in a classroom, including edge cases
  • Ans. 

    Program to print top five students in a classroom, handling edge cases

    • Create a list of students with their grades

    • Sort the list in descending order based on grades

    • Print the top five students, handling cases where there are less than five students or ties in grades

  • Answered by AI
  • Q4. Exceptional handling
Round 3 - Technical 

(3 Questions)

  • Q1. Program to check if the given string is palindrome
  • Ans. 

    A program to check if a given string is a palindrome.

    • Create a function that takes a string as input.

    • Reverse the string and compare it with the original string.

    • If they are the same, then the string is a palindrome.

    • Example: 'racecar' is a palindrome.

    • Example: 'hello' is not a palindrome.

  • Answered by AI
  • Q2. Program to return Fibonacci series
  • Ans. 

    A program to return Fibonacci series using recursion or iteration

    • Use recursion to generate Fibonacci series

    • Use iteration to generate Fibonacci series

    • Handle edge cases like negative input or input of 0 or 1

    • Example: Fibonacci series up to 10 - 0, 1, 1, 2, 3, 5, 8, 13, 21, 34

  • Answered by AI
  • Q3. Different ways to create a table in python
  • Ans. 

    Different ways to create a table in Python include using pandas, sqlite3, and SQLAlchemy libraries.

    • Using pandas library to create a table from a dictionary or list of lists

    • Using sqlite3 library to create a table in a SQLite database

    • Using SQLAlchemy library to create a table in a SQL database

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have given all the rounds very well, but I didn't get selected.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

General SQL Questions.

Round 2 - HR 

(1 Question)

  • Q1. Salary Negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Third-party Payroll.

State Farm Interview FAQs

How many rounds are there in State Farm Software Engineer interview?
State Farm interview process usually has 1 rounds. The most common rounds in the State Farm interview process are Coding Test.

Tell us how to improve this page.

State Farm Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Compare State Farm with

ICICI Lombard General Insurance Company

3.7
Compare

HDFC Ergo General Insurance

3.9
Compare

Bajaj Allianz General Insurance

3.9
Compare

Reliance General Insurance

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