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

Fullstack Developer

Cephei Infotech
upvote
share-icon
2 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Application story
Having a good presence on LinkedIn helped me get this interview opportunity as one of the company employees connected to me for the interview.
Preparation
Duration: 2 months
Topics: ReactJS, NodeJS, ExpressJS, Firebase, MongoDB, HTML/CSS,
Tip
Tip

Tip 1: Building projects helps retain concepts, making explaining them in interviews easier.
Tip 2: Make sure to have hands-on practice solving basic DSA problems, like searching and sorting.

Application process
Where: Coding Ninjas
Eligibility: No criteria, need two development projects on Resume and having a good understanding of tech stacks.
Resume Tip
Resume tip

Tip 1: Try to create an ATS-friendly resume.
Tip 2: List only the skills you can explain in an interview.

Interview rounds

01
Round
Medium
Face to Face
Duration40 minutes
Interview date26 Jun 2024
Coding problem3

1. Sum Of Max And Min

Easy
10m average time
90% success
0/40
Asked in companies
SAP LabsOracleFlexiEle Consulting Services (FE)

You are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array.

Follow Up:
Can you do the above task in a minimum number of comparisons?
Try solving now

2. Quick Sort

Moderate
10m average time
90% success
0/80
Asked in companies
FreshworksSamsung R&D InstituteLenskart

You are given an array of integers. You need to sort the array in ascending order using quick sort.

Quick sort is a divide and conquer algorithm in which we choose a pivot point and partition the array into two parts i.e, left and right. The left part contains the numbers smaller than the pivot element and the right part contains the numbers larger than the pivot element. Then we recursively sort the left and right parts of the array.

Example:

Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.

example

After the 1st level partitioning the array will be { 2, 1, 3, 4, 5 } as 3 was the pivot. After 2nd level partitioning the array will be { 1, 2, 3, 4, 5 } as 1 was the pivot for the left part and 5 was the pivot for the right part. Now our array is sorted and there is no need to divide it again.

Try solving now

3. Get the list of all first Name values

List of all firstName from the array whose age is more than 30
const users=[
 {firstName:"john",lastName:"Biden",age:26},
 {firstName:"jimmy",lastName:"Cob",age:75},
 {firstName:"Sam",lastName:"Lewis",age:50},
 {firstName:"Ronald",lastName:"Mathew",age:26},  
];


 

Problem approach

Solution:
const output=users.filter((x)=>x.age>30).map((x)=>x.firstName);
console.log(output);

02
Round
Medium
Face to Face
Duration50 minutes
Interview date26 Jun 2024
Coding problem2

1. JavaScript Questions:

  1. Hoisting
  2. Scope chaining and lexical scope
  3. Explain ES-6 new updates in detail. (Learn)
  4. How does this keyword behave in an arrow function?
  5. Higher-order functions and their examples. (Learn)
  6. What are Events in JS and how to implement it? (Learn)
  7. Explain promises and in which scenario we are using them.

2. React.js and Node.js Questions

  1. What is Express explain its features. (Learn)
  2. Aggregation in MongoDB. (Learn)
  3. CORS and API fetching
  4. What is the use of Middleware why are we using them (Learn)
  5. Different HTTP request methods CRUD operations with scenarios 
  6. Why is Node.js better than other backend frameworks explain its benefits and features. (Learn)
  7. Explain virtual DOM in react. (Learn)
  8. Class-based components and their methods. (Learn)
  9. Props and state
  10. Explain Hooks useEffect, useState, useMemo, useContext. (Learn)
  11. Higher order Components why do we use them? (Learn)

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
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
961 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Fullstack Developer
6 rounds | 5 problems
Interviewed by Microsoft
2223 views
0 comments
0 upvotes
company logo
Fullstack Developer
2 rounds | 2 problems
Interviewed by Samsung
2164 views
0 comments
0 upvotes
company logo
Fullstack Developer
2 rounds | 2 problems
Interviewed by Amdocs
1813 views
0 comments
0 upvotes