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

Associate Technology Java L1

CIS - Cyber Infrastructure
upvote
share-icon
2 rounds | 2 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1 month
Topics: JavaScript : ES6 Features, Hoisting, Closures, this, window, oops, function currying, callback ,A sync await, PromisesCSS: Positions ,Pseudo Class, Element ,transform ,display ,flexbox ,grid ,Sass ,custom CSSHTML: HTML vs HTML5 ,new elements in HTML5,Acessibility
Tip
Tip

Tip 1 : practical practice each and every topic with Realtime program
Tip 2 : try to solve problem more than one solution
Tip 3 : try to create TO DO application from scratch

Application process
Where: Referral
Eligibility: No criteria
Resume Tip
Resume tip

Tip 1 : mention your skills at top of your resume with some bigger font along with year of experience
Tip 2 : keep your skills short and precise

Interview rounds

01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date2 Jun 2022
Coding problem1

Average MCQ questions related to your skill set and one Problem solving questions

1. Valid Parentheses

Easy
10m average time
80% success
0/40
Asked in companies
AmazonIntuitOracle

You're given a string 'S' consisting of "{", "}", "(", ")", "[" and "]" .


Return true if the given string 'S' is balanced, else return false.


For example:
'S' = "{}()".

There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Problem approach

1)Declare a character stack S.
2)Now traverse the expression string exp. 
3)If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
4)If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
5)After complete traversal, if there is some starting bracket left in stack then “not balanced”

Try solving now
02
Round
Medium
Video Call
Duration90 minutes
Interview date4 Jun 2022
Coding problem1

they asked all topics of Front Ent Developer some hot topics are mentioned below:

JavaScript : ES6 Features, Hoisting, Closures, this, window, oops, function currying, callback ,A sync await, Promises
CSS: Positions ,Pseudo Class, Element ,transform ,display ,flexbox ,grid ,Sass ,custom CSS
HTML: HTML vs HTML5 ,new elements in HTML5,Acessibility

1. Check Permutation

Easy
15m average time
85% success
0/40
Asked in companies
AmazonGoldman SachsCIS - Cyber Infrastructure

You have been given two strings 'STR1' and 'STR2'. You have to check whether the two strings are anagram to each other or not.

Note:
Two strings are said to be anagram if they contain the same characters, irrespective of the order of the characters.
Example :
If 'STR1' = “listen” and 'STR2' = “silent” then the output will be 1.

Both the strings contain the same set of characters.
Problem approach

1)Sort both strings
2)Compare the sorted strings

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
Associate Technology Java L1
2 rounds | 2 problems
Interviewed by CIS - Cyber Infrastructure
0 views
0 comments
0 upvotes
company logo
Associate Technology Java L1
3 rounds | 3 problems
Interviewed by CIS - Cyber Infrastructure
0 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
3 rounds | 6 problems
Interviewed by CIS - Cyber Infrastructure
1005 views
0 comments
0 upvotes