Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Crowe Horwath Software Developer Interview Questions and Answers

Updated 20 Apr 2024

Crowe Horwath Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Ankit Pandit

posted on 20 Apr 2024

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

Aptitude topic was as generally appears in other placement tests , coding questions(not that much hard )

Round 2 - Technical 

(1 Question)

  • Q1. Asked for the introduction , then asked questions from the resume . Also the OOPS concept and interface

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and give only neccessay answer of the question,do not say something extra

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous means happening at the same time, while asynchronous means not happening at the same time.

    • Synchronous operations occur in real-time, while asynchronous operations can be delayed or queued.

    • Synchronous operations block the program until they are completed, while asynchronous operations allow the program to continue running.

    • Examples of synchronous operations include function calls and loops, while examples of ...

  • Answered by AI
  • Q2. When to use CTE and temp table.
  • Ans. 

    CTE and temp table usage in SQL

    • Use CTE for recursive queries and complex subqueries

    • Use temp tables for large data sets and complex queries

    • CTE is more efficient for small data sets

    • Temp tables can be indexed for faster performance

    • Consider the scope and lifespan of the data when choosing between CTE and temp table

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. And aigle scrum methodology explains
  • Ans. 

    Agile Scrum methodology is a framework for managing and completing complex projects.

    • Agile Scrum is based on iterative and incremental development.

    • It involves breaking down the project into smaller tasks called user stories.

    • Scrum teams work in sprints, typically 2-4 weeks long, to deliver a potentially shippable product increment.

    • Daily stand-up meetings are held to discuss progress and any obstacles.

    • Scrum Master facilit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 135 minutes
Round difficulty - Easy

Coding questions was easy if you know the basic of coding in any language. I submitted optimized solution for every questions that's why i got selected in this round.

  • Q1. 

    Find K'th Character of Decrypted String

    You are given an encrypted string where repeated substrings are represented by the substring followed by its count. Your task is to find the K'th character of the d...

  • Ans. 

    Given an encrypted string with repeated substrings represented by counts, find the K'th character of the decrypted string.

    • Parse the encrypted string to extract substrings and their counts

    • Iterate through the substrings and counts to build the decrypted string

    • Track the position in the decrypted string to find the K'th character

  • Answered by AI
  • Q2. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle.

    • Use Depth First Search (DFS) to traverse the graph and detect cycles.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Check for back edges while traversing the graph.

    • Consider disconnected graphs as well.

  • Answered by AI
Round 2 - Assignment 

(3 Questions)

Round duration - 150 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are provided with an array ARR consisting of N distinct integers in ascending order and an integer TARGET. Your objective is to count all the distinct pairs in ARR whose sum...

  • Ans. 

    Count distinct pairs in an array whose sum equals a given target.

    • Use two pointers approach to iterate through the array and find pairs with sum equal to target.

    • Keep track of visited pairs to avoid counting duplicates.

    • Return -1 if no such pair exists with the given target.

  • Answered by AI
  • Q2. 

    Next Smaller Palindrome Problem Statement

    You are given a palindrome number represented as a string S. Your task is to find the largest palindrome number that is strictly less than S.

    Example:

    Input:
    T...
  • Ans. 

    Given a palindrome number represented as a string, find the largest palindrome number that is strictly less than the given number.

    • Iterate from the middle towards the start and end of the string to find the next smaller palindrome.

    • If the number is odd in length, simply mirror the left half to the right half to get the next smaller palindrome.

    • If the number is even in length, decrement the middle digit and mirror the left...

  • Answered by AI
  • Q3. 

    Longest Common Subsequence Problem Statement

    Given two strings STR1 and STR2, determine the length of their longest common subsequence.

    A subsequence is a sequence that can be derived from another sequen...

  • Ans. 

    The problem involves finding the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For input STR1 = 'abcde' and STR2 = 'ace', the longest common subsequence is 'a

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

Interview went well.The interviewer asked me how the previous interviews were.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to output the boundary nodes of this binary tree in Anti-Clockwise order, starting from the root node.

    Explanation:

    The b...

  • Ans. 

    Output the boundary nodes of a binary tree in Anti-Clockwise order, starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes from left to right

    • Traverse the right boundary nodes in bottom-up order

    • Combine the above traversals to get the boundary nodes in Anti-Clockwise order

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

  • Answered by AI
Round 4 - HR 

Round duration - 20 minutes
Round difficulty - Easy

This round is very easy, In this round they basically need confidence and truthful person.

Interview Preparation Tips

Eligibility criteriaabove 7.5 CGPADeloitte interview preparation:Topics to prepare for the interview - Data Structures, Web development, System Design, Algorithms, Dynamic Programming, Database, Networking, DevOps, Operating System, Database Management System, Object-Oriented Programming System , basic aptitudeTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : For Data Structures number of questions doesn't matter. Try to understand the logic behind them and try to apply them in creating multiple scenario's. 
Tip 2 : Do lot of hard work and practice of Data Structures and Algorithms based questions
Tip 3 : See which part interests you more, Increase your knowledge horizon, Always try to build a system a system considering It will be served to millions of customers.
Tip 4 : I personally recommend you Coding Ninjas and Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1 : Always try to make it a single page 
Tip 2 : do mention all your skills which you are confident of in your resume.
Tip 3 : Always make resume company specific

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Oops mvc .net sql
  • Q2. .net frame work
  • Q3. Solid priciples

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

One marks of Java and Java script

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked about project related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java questions
  • Q2. Spring, Spring boot basics
Round 2 - Technical 

(2 Questions)

  • Q1. Microservices Communications
  • Q2. Project level experiences

I applied via Naukri.com and was interviewed in Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic coding

Round 2 - Technical 

(1 Question)

  • Q1. Confidential sorry can't reveal them

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Stay strong with all concepts which are on JD
Don't get tensed
Presence of mind
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

In person , asked two questions, 1 about linked list and other about array

Round 2 - Technical 

(2 Questions)

  • Q1. System design problem related to Uber
  • Q2. Asked about micro services and design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy to prepare and revise all your basics
Contribute & help others!
anonymous
You can choose to be anonymous

Crowe Horwath Interview FAQs

How many rounds are there in Crowe Horwath Software Developer interview?
Crowe Horwath interview process usually has 2 rounds. The most common rounds in the Crowe Horwath interview process are Aptitude Test and Technical.
How to prepare for Crowe Horwath Software Developer 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 Crowe Horwath. The most common topics and skills that interviewers at Crowe Horwath expect are Javascript, .Net, Angular, Angularjs and Automation.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

SALARIES

Capace Software

DESIGNATION

INTERVIEWS

Crowe Horwath

No Interviews

INTERVIEWS

Crowe Horwath

No Interviews

INTERVIEWS

MasterCard

No Interviews

Tell us how to improve this page.

Crowe Horwath Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 789 Interviews
Grant Thornton Interview Questions
3.7
 • 101 Interviews
BDO India LLP Interview Questions
3.5
 • 77 Interviews
RSM India Interview Questions
3.4
 • 54 Interviews
BDO Interview Questions
3.3
 • 45 Interviews
View all
Crowe Horwath Software Developer Salary
based on 28 salaries
₹4 L/yr - ₹14.7 L/yr
19% more than the average Software Developer Salary in India
View more details

Crowe Horwath Software Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.7

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Crowe Horwath with

Deloitte

3.8
Compare

PwC

3.4
Compare

KPMG India

3.5
Compare

Ernst & Young

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