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

Fullstack Developer

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

Interview preparation journey

expand-icon
Preparation
Duration: 2 Months
Topics: Data Structures, DBMS, Algorithms, DP, Operating Systems , Recursiom
Tip
Tip

Tip 1 : Practice Leetcode
Tip 2 : Solve COdeforces A,B,C

Application process
Where: Campus
Eligibility: 6.5 GPA
Resume Tip
Resume tip

Tip 1 : Make a clear resume with normal style
Tip 2 : Use overleaf for templates

Interview rounds

01
Round
Medium
Online Coding Test
Duration90 Minutes
Interview date1 Sep 2021
Coding problem2

It was at 9 am in the morning

1. Add two number as linked lists

Moderate
10m average time
80% success
0/80
Asked in companies
QuikrMicrosoftAdobe

You have been given two singly Linked Lists, where each of them represents a positive number without any leading zeros.

Your task is to add these two numbers and print the summation in the form of a linked list.

Example:
If the first linked list is 1 -> 2 -> 3 -> 4 -> 5 -> NULL and the second linked list is 4 -> 5 -> NULL.

The two numbers represented by these two lists are 12345 and 45, respectively. So, adding these two numbers gives 12390. 

So, the linked list representation of this number is 1 -> 2 -> 3 -> 9 -> 0 -> NULL.
Try solving now

2. Cycle Detection In Undirected Graph

Moderate
0/80
Asked in companies
AmazonAdobeSamsung

You have been given an undirected graph with 'N' vertices and 'M' edges. The vertices are labelled from 1 to 'N'.

Your task is to find if the graph contains a cycle or not.

A path that starts from a given vertex and ends at the same vertex traversing the edges only once is called a cycle.

Example :

In the below graph, there exists a cycle between vertex 1, 2 and 3. 

Example

Note:

1. There are no parallel edges between two vertices.

2. There are no self-loops(an edge connecting the vertex to itself) in the graph.

3. The graph can be disconnected.

For Example :

Input: N = 3 , Edges =  [[1, 2], [2, 3], [1, 3]].
Output: Yes

Explanation : There are a total of 3 vertices in the graph. There is an edge between vertex 1 and 2, vertex 2 and 3 and vertex 1 and 3. So, there exists a cycle in the graph. 
Try solving now
02
Round
Hard
Video Call
Duration50 Minutes
Interview date6 Sep 2021
Coding problem2

1. Technical Questions

What is OOPS . Tell the different OOps features. Implement method overloading in c++

What is Synchronisation. How can we implement synchronisation in C++

What is Normalisation? Also implement a schema of a school database

How do you access DOM?

What is indexing in SQL

2. Maximum Subarray Sum

Moderate
0/80
Asked in companies
IntuitAmazonOracle

You are given an array/list ARR consisting of N integers. Your task is to find the maximum possible sum of a non-empty subarray(contiguous) of this array.

Note: An array C is a subarray of array D if it can be obtained by deletion of several elements(possibly zero) from the beginning and the end of array D.

For e.g.- All the non-empty subarrays of array [1,2,3] are [1], [2], [3], [1,2], [2,3], [1,2,3].

Try solving now
03
Round
Hard
HR Round
Duration30 Minutes
Interview date6 Sep 2021
Coding problem1

Happened on teams

1. Basic HR Questions

Explain yourself. How will you manage a team of 10 employees

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
Junior Associate: Marketing Strategy and Analysis
3 rounds | 5 problems
Interviewed by CIS - Cyber Infrastructure
902 views
0 comments
0 upvotes
company logo
Associate Technology
3 rounds | 4 problems
Interviewed by CIS - Cyber Infrastructure
1057 views
0 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
598 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
Fullstack Developer
3 rounds | 5 problems
Interviewed by HashedIn
1051 views
0 comments
0 upvotes
company logo
Fullstack Developer
4 rounds | 3 problems
Interviewed by Newgen Software
1092 views
0 comments
0 upvotes