Tip 1 : Prepare aptitude and coding based questions until you are good with the basics and take notes.
Tip 2 : Be clear about the applied job role, have a good knowledge about your resume and the projects mentioned in it.
Tip 3 : Come prepared and be confident to be able to confront new problems and conquer them yourself.
Tip 1 : Add technical skills along with any IT certifications.
Tip 2 : Be real and accurate, do not over do.
The online preliminary quiz round comprised of two sections: a mandatory section and an advanced section with options (Mandatory Section + Advanced Networking, Mandatory Section + Advanced Software Programming). It was conducted on Mettl platform in the morning. I only remember 1 coding question from this round.



Subsequences of string "abc" are: ""(empty string), a, b, c, ab, bc, ac, abc.
I started solving this problem with a brute force recursion approach.
Step 1: When either of the strings were empty, the LCS is 0.
Step 2: Else, if the current character of the strings matched, I checked for the previous prefix of the whole string, and added 1 to the answer.
Step 3: If the characters didn’t match, I took the maximum of LCS(string1_length - 1, string2_length) and LCS(string1_length, string2_length - 1).
After this I started solving it through an optimal approach. i solved this by using Dynamic Programming, and memoizing the results into an DP array, where DP[i][j] represents the length of the Longest Common Subsequence of the Strings from [0, i - 1] and from [0, j - 1].
Knowing customer's real time pulse is a huge challenge today. How can you leverage data science to help in predicting customer experience/sentiment proactively unlike the existing survey mechanisms which are reactive in nature? (Hint: Think about factors that can influence customer experience)
Given the challenges that exist in our country using possible sensor data from future cars, derive solutions that can help reduce the carbon footprint that can include things like carbon tax, car pooling detection and matching, traffic re-routing among many other things.



The solution is quite simple if the height of wall is less than or equal to x, only one jump in that wall is required else we can calculate it by height of wall-(climb up-climb down) and get the jumps required.
How will you use a linked list to simulate 3 TCP/IP packets?
In order to use a linked list to simulate 3 TCP/IP packets, all the packets should have a source IP, a destination IP, and some data (at least 20 characters).
What are the advantages of DBMS?
What do you mean by durability in DBMS?
What is normalization?
1. Why do you want to join Cisco?
2. Mention your strength and weakness.
3. Where do you see yourself in the next 5 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: