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

Graduate Engineer Trainee

Crowe
upvote
share-icon
2 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 month
Topics: DBMS, Computer Networks, Object Oriented Programming, Operating System, DSA.
Tip
Tip

Tip 1 : Lay more focus on SQL/DBMS
Tip 2 : The interview would be either mostly on Programming or on DBMS(writing queries)
Tip 3 : Computer Networks is not asked too much but you should have somewhat knowledge of this

Application process
Where: Campus
Eligibility: 65% & above Current Backlogs :No standing backlog
Resume Tip
Resume tip

Tip 1 : Do not mention too many interests 
Tip 2 : Be strong for whatever you write

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date11 Oct 2021
Coding problem2

It has some mcq questions and coding questions
Timing: Morning
The environment was good without any faults

1. Anagram Pairs

Moderate
30m average time
60% success
0/80
Asked in companies
NearbuyAppleAmerican Express

You are given two strings 'str1' and 'str1'.


You have to tell whether these strings form an anagram pair or not.


The strings form an anagram pair if the letters of one string can be rearranged to form another string.

Pre-requisites:

Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams. 

Other examples include:

'triangle' and 'integral'
'listen' and 'silent'
Note:
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct. 
Try solving now

2. Remove 9

Easy
15m average time
85% success
0/40
Asked in companies
DunzoCitrixCrowe

A committee of mathematicians decided to remove every natural number which contains digit 9 such as 9, 19, 29, ... . Hence the new sequence of natural numbers will be: 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, ….

Given the natural number ‘N’, can you find the ‘N’th number in the new sequence formed after removing every integer that contains 9?

Note:

The sequence of natural numbers are integers that start from 1.
Problem approach

Initialize two variables, say res = 0 and p = 1, to store the number in base 9 and to store the position of a digit.
Iterate while N is greater than 0 and perform the following operations:
Update res as res = res + p*(N%9).
Divide N by 9 and multiply p by 10.
After completing the above steps, print the value of res.

Try solving now
02
Round
Medium
Face to Face
Duration45 minutes
Interview date26 Oct 2022
Coding problem3

Timing : Afternoon
Environment was good.
Interviewer was friendly in Nature

1. SQL Question

Write an SQL query to fetch the EmpId and FullName of all the employees working under Manager with id – ‘986’.

Problem approach

SELECT EmpId, FullName
FROM EmployeeDetails
WHERE ManagerId = 986;

2. SQL Question

Write an SQL query to fetch the employees whose name begins with any two characters, followed by a text “hn” and ending with any sequence of characters.

Problem approach

SELECT FullName
FROM EmployeeDetails
WHERE FullName LIKE ‘__hn%’;

3. SQL Question

Write an SQL query to fetch the EmpIds that are present in both the tables – ‘EmployeeDetails’ and ‘EmployeeSalary.

Problem approach

SELECT EmpId FROM 
EmployeeDetails 
where EmpId IN 
(SELECT EmpId FROM EmployeeSalary);

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2580 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Graduate Engineer Trainee
2 rounds | 5 problems
Interviewed by HCL Technologies
13565 views
3 comments
0 upvotes
company logo
Graduate Engineer Trainee
3 rounds | 4 problems
Interviewed by HCL Technologies
2811 views
0 comments
0 upvotes
company logo
Graduate Engineer Trainee
2 rounds | 2 problems
Interviewed by HCL Technologies
3452 views
0 comments
0 upvotes