CIS - Cyber Infrastructure interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

CIS - Cyber Infrastructure
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 6 months
Topics: Data Structures, Algorithms, OOPS, JAVA, DBMS,
Tip
Tip

Tip 1 : Prepare graphs and DP very well for online exam.
Tip 2 : Having one or two projects in java will give you an edge in the interview.
Tip 3 : Be kind and polite in the interview. Show them that you will be the good fit for their comoany

Application process
Where: Campus
Eligibility: 6 CGPA
Resume Tip
Resume tip

Tip 1 : Having one or two projects in java will give you an edge in the interview. Keep java project on the top
Tip 2 : Resume should be one page and nothing fancy. Don't mention skills in the resume that you don't have.

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date13 Aug 2020
Coding problem2

Online round was conducted during day time at around 1 pm on 13th of Aug, 2020. Prepare well for DP and Graphs as online questions were from these topics. There were in total 2 questions. 
Graph question: 15/15 test cases passed
DP question: 8/15 test cases passed
It was an Audio and video proctored exam.

1. Find Number Of Islands

Moderate
34m average time
60% success
0/80
Asked in companies
WalmartShareChatAmazon

You are given a 2-dimensional array/list having N rows and M columns, which is filled with ones(1) and zeroes(0). 1 signifies land, and 0 signifies water.

A cell is said to be connected to another cell, if one cell lies immediately next to the other cell, in any of the eight directions (two vertical, two horizontal, and four diagonals).

A group of connected cells having value 1 is called an island. Your task is to find the number of such islands present in the matrix.

Problem approach

Step 1:Checking coordinates are valid or not
Step 2: Marking 1 so that next time will not visit
Step 3: If coordinates are valid and not visited and value equal to 1 then call recursively

Try solving now

2. Frog Jump

Easy
30m average time
60% success
0/40
Asked in companies
MicrosoftDunzoCIS - Cyber Infrastructure

There is a frog on the '1st' step of an 'N' stairs long staircase. The frog wants to reach the 'Nth' stair. 'HEIGHT[i]' is the height of the '(i+1)th' stair.If Frog jumps from 'ith' to 'jth' stair, the energy lost in the jump is given by absolute value of ( HEIGHT[i-1] - HEIGHT[j-1] ). If the Frog is on 'ith' staircase, he can jump either to '(i+1)th' stair or to '(i+2)th' stair. Your task is to find the minimum total energy used by the frog to reach from '1st' stair to 'Nth' stair.

For Example
If the given ‘HEIGHT’ array is [10,20,30,10], the answer 20 as the frog can jump from 1st stair to 2nd stair (|20-10| = 10 energy lost) and then a jump from 2nd stair to last stair (|10-20| = 10 energy lost). So, the total energy lost is 20.
Problem approach

Step 1: Declare a t[] array having size n.
Step 2: initialize the base condition values, i.e t[0] as 0.
Step 3: Set a loop that should traverse the whole array and for every index calculate jumpOne and jumpTwo and set t[i] = min(jumpOne, jumpTwo).

Try solving now
02
Round
Medium
Face to Face
Duration40 minutes
Interview date14 Aug 2020
Coding problem1

Timing: 3pm daytime
Environment: Interviewer was very friendly.
My Experience: This round was very unique and different one. I was expecting some DSA and problem solving questions
but interviewer asked more questions about my resume and my projects. Basically whole round was revolving around resume.

1. Scenario based Questions

why did you use this specific tech stack in your project?

 what will you do if after joining sapient one of your team members leaves the team and there is a dependency on him?

 What are your future goals?

 Are you more interested in backend or frontend?

Problem approach

Tip 1 : Be Confident. Read about PS core values before going to the interview.
Tip 2 : Show them that you would be the ideal candidate and right fit for their company
Tip 3 : Don't write any irrelevant skill in your resume that you don't know.

03
Round
Easy
HR Round
Duration20 minutes
Interview date14 Aug 2020
Coding problem1

Timing: 6 pm in the evening
Environment: HR was very friendly. She gave me feedback of my previous round.

1. Basic HR questions

Why do you think that you will be a good fit for our company? 

What kind of environment do you think that you will get after joining fresh? 

What did you find most interesting in the presentation that we showed. She was referring to the introductory presentation that every company gives when they visit for hiring.

Problem approach

Tip 1 : Be Confident and polite.
Tip 2 : Right attitude is the key to success.
Tip 3 : Prepare some situation based answers on generally asked HR questions 
beforehand.

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 | 5 problems
Interviewed by CIS - Cyber Infrastructure
2197 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 11 problems
Interviewed by CIS - Cyber Infrastructure
0 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
498 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
580 views
1 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by BNY Mellon
6365 views
3 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by BNY Mellon
0 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by BNY Mellon
0 views
0 comments
0 upvotes