Centilytics | Intelligent Cloud Management interview experience Real time questions & tips from candidates to crack your interview

Backend Developer

Centilytics | Intelligent Cloud Management
upvote
share-icon
2 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
The interview was scheduled on 28 Feb 2023 at 5:30 pm. The duration of the interview was around 30 minutes It was conducted on MS teams. The first question she asked me tell me about yourself, then she asked me about my project, and then she questioned related to data Structures and Algorithms.
Application story
It was a on campus drive. They were hiring for backend developer role. There were 4 round. including Technical interview round and. hr. interviews. First round was aptitude. Question are based on computer fundamental and coding question. Duration of the test around 30 min. scheduled on 23 Feb. at 11 am. after first I got the next round link that was coding round.
Why selected/rejected for the role?
My first impression was very bad. When she asked me question related to commands of dbms .. I had given wrong answer of those question. but I covered up well. I had solved all the coding question, but still, I didn't get offered.
Preparation
Duration: 2 months
Topics: Array, String, Linked List, OOPS, Database Management System
Tip
Tip

Tip 1 : Do practice coding question regularly on platform like leetcode, gfg. 
Tip 2 : Before going interview. Check the interview experience on GFG. You will get some idea.
Tip 3 : Maintain your consistency

Application process
Where: Campus
Resume Tip
Resume tip

Tip 1 : Don't write false information in your resume.
Tip 2 : Be prepared with your resume

Interview rounds

01
Round
Easy
Online Coding Interview
Duration30 minutes
Interview date23 Jan 2023
Coding problem3

There were 15 questions and 2 coding question, basically questions were based on computer fundamental and some question were based on output question.

1. DBMS Questions

Which of the following is the property of transaction that protects data from system failure?

Which normalization form is based on the transitive dependency?

During transaction before commit which of the following statement is done automatically in case of shutdown?

Which of the following is known as minimal super key?

How many levels are there in architecture of database?

2. Find pair with a given sum in a doubly linked list

Easy
10m average time
90% success
0/40
Asked in companies
OlaCentilytics | Intelligent Cloud Management

A doubly-linked list is a data structure that consists of sequentially linked nodes, and the nodes have reference to both the previous and the next nodes in the sequence of nodes.


You are given a sorted doubly linked list of size 'n', consisting of distinct positive integers, and a number 'k'.


Find out all the pairs in the doubly linked list with sum equal to 'k'.


Example :
Input: Linked List: 1 <-> 2 <-> 3 <-> 4 <-> 9 and 'k' = 5

Output: (1, 4) and (2, 3)

Explanation: There are 2 pairs in the linked list having sum 'k' = 5.
Try solving now

3. First Repeated Character

Moderate
30m average time
70% success
0/80
Asked in companies
Expedia GroupDelhiveryGoldman Sachs

You are given a string 'STR' of lowercase English alphabets. You need to find the repeated character present first in the string.

Example:
If the string is: “abccba”, then the first repeated character is ‘c’, but the repeated character that is present first in the string is ‘a’. You need to print ‘a’.
Note:
Keep in mind that you need to print the repeated character that is present first in the string and not the first repeating character.
Try solving now
02
Round
Easy
Online Coding Test
Duration30 minutes
Interview date23 Feb 2023
Coding problem2

There were two easy coding questions. I was able to solve both question

1. Fibonacci Sum

Moderate
15m average time
85% success
0/80
Asked in companies
WalmartNatwest GroupMathworks

Given two integers, ‘N’ and ‘M’, your task is to find the sum of Fibonacci numbers between ‘fib(N)’ and ‘fib(M)’ where ‘fib(N)’ represents the Nth Fibonacci number and ‘fib(M)’ represents the Mth Fibonacci number. The sum is given by sum(N, M) = fib(N) + fib(N+1) + fib(N+2) … fib(M). Since the answer could be large, so you have to return the sum modulo 10^9 + 7.

The fibonacci relation is given by:

fib(0) = 0 
fib(1) = 1
fib(n) = fib(n-1) + fib(n-2), n >= 2, where fib(n) represents the nth fibonacci number.
Try solving now

2. Check If The String Is A Palindrome

Easy
10m average time
90% success
0/40
Asked in companies
IntuitSprinklrCIS - Cyber Infrastructure

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces.

Note :

String 'S' is NOT case sensitive.

Example :

Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Try solving now

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
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4898 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3639 views
0 comments
0 upvotes
Software Engineer
3 rounds | 8 problems
Interviewed by Centilytics | Intelligent Cloud Management
322 views
0 comments
0 upvotes
Backend Developer
2 rounds | 7 problems
Interviewed by Centilytics | Intelligent Cloud Management
292 views
0 comments
0 upvotes