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

Quality Engineer II

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

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structures, OOPS, Testing Life cycle, SDLC, JavaScript, Python, Selenium.
Tip
Tip

Tip 1 : Prepare to explain your project experience work in accurate method.
Tip 2 : Practice hand on for test case scripting 
Tip 3 : Practice OOPS related case studies

Application process
Where: Company Website
Eligibility: 6 month- 2 yrs experience
Resume Tip
Resume tip

Tip 1 : Showcase your past project experience categorically and detailed
Tip 2 : Use all the skills learned, used or you know with proper explanation

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date15 Dec 2021
Coding problem2

Online test was consisting of objective questions on aptitude, logical, reasoning and software technology domain based (60 mins) + 2 coding questions (30 mins). The test link was valid for 24 hrs.

1. Search The Element

Moderate
0/80
Asked in company
CIS - Cyber Infrastructure

Sam always likes to challenge Ninja with some problems. Today, he has come to Ninja for another challenge. Sam took a sorted array and rotated it clockwise by an unknown amount.

For example, he took a sorted array = [1, 2, 3, 4, 5] and if he rotates it by 2, then the array becomes: [4, 5, 1, 2, 3].

After rotating the sorted array, he asked Ninja Q queries, for each query Ninja has to search whether the number asked in that query is present in the rotated array or not, if the number is present then Ninja needs to tell Sam the index of the number, otherwise, he needs to tell Sam -1.

Since Ninja does not want to lose the challenge, he asked you to help him for the same. Your task is to find the index of the number asked in the query if it exists.

Problem approach

1. Iterate the array using the loop.

2. Check whether the given key present in the array i.e. arr[i] == key.

3. If yes,

print "Search Found".

4. Else

print "Search Not Found".

Try solving now

2. Reverse Linked List

Moderate
15m average time
85% success
0/80
Asked in companies
WalmartHCL TechnologiesInfo Edge India (Naukri.com)

Given a singly linked list of integers. Your task is to return the head of the reversed linked list.

For example:
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Follow Up :
Can you solve this problem in O(N) time and O(1) space complexity?
Problem approach

Initialize three pointers prev as NULL, curr as head, and next as NULL.
Iterate through the linked list. In a loop, do the following:
Before changing the next of curr, store the next node 
next = curr -> next
Now update the next pointer of curr to the prev 
curr -> next = prev 
Update prev as curr and curr as next 
prev = curr 
curr = next

Try solving now
02
Round
Medium
Video Call
Duration60 minutes
Interview date24 Dec 2021
Coding problem1

It was around 5 pm. The interviewer started with his own introduction and then asked for mine. He also asked about my prior experience in details and the reason for leaving the previous company. Then he asked me some testing domain based questions and some test case studies. Post that he asked me a Data structure problem. After that he was satisfiedn enough and the interview ended.

1. Design Question

Write Test Case for ATM.

Problem approach

Tip 1: Break the usage/ functioning of ATM into several part
Tip 2: Subdivide categories to failure and success cases
Tip 3: Now start writing the script in the sequential way ATM works

03
Round
Easy
HR Round
Duration30 minutes
Interview date11 Jan 2022
Coding problem1

Timing 12 pm afternoon.

Introduction, prior experience, behavioral questions, Date of joining and other formalities discussion and then compensation discussion.

1. Basic HR Question

What steps will you take if you find out your senior is harassing one of your colleague?

Problem approach

Tip 1: Understand the completed statement 
Tip 2: Analyse the situation
Tip 3: Look for the answer which is a best fit for the organization.

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 | 4 problems
Interviewed by CIS - Cyber Infrastructure
784 views
0 comments
0 upvotes
company logo
ATL2
3 rounds | 5 problems
Interviewed by CIS - Cyber Infrastructure
0 views
0 comments
0 upvotes
company logo
Trainee Engineer
2 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
605 views
0 comments
0 upvotes
company logo
Trainee Engineer
3 rounds | 6 problems
Interviewed by CIS - Cyber Infrastructure
1005 views
0 comments
0 upvotes