Lcube creation interview experience Real time questions & tips from candidates to crack your interview

Software Developer

Lcube creation
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
First of all, I got selected for a Tier 2 college from there, my journey in coding started. I have done most of my coding in my final years only, but I till now regret that I should have started a little bit earlier. I practised mainly from Leetcode and Code Studio.
Application story
This company visited our campus for the placement. First, they took the online assessment. Later, they called us for the interview rounds.
Why selected/rejected for the role?
I was rejected because I was not able to give Automata/core subjects related answers excellently. I think that was the only reason for not selecting me.
Preparation
Duration: 3 months
Topics: Data Structures, Algorithms, System Design, Aptitude, OOPS
Tip
Tip

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application process
Where: Campus
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds

01
Round
Easy
Online Coding Test
Duration30 minutes
Interview date29 Nov 2021
Coding problem2

First round is coding test which contains 2 questions. We have to answer any one of the questions.

1. Check If The String Is A Palindrome

Easy
10m average time
90% success
0/40
Asked in companies
SprinklrCIS - Cyber InfrastructureSamsung

You are given a string 'S'. Your task is to check whether the string is palindrome or not. For checking palindrome, consider alphabets and numbers only and ignore the symbols and whitespaces.

Note :

String 'S' is NOT case sensitive.

Example :

Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Problem approach

In the recursive approach, we will traverse the string from [0, N/2], where N is the length of the string.
While traversing, we will check if S[i] == S[N-i-1], and if it is equal, then we will continue with recursion calls. Else, we will return false. 
If the output of the recursive function is true, then we will print "YES"; else, we will print "NO."

Try solving now

2. Find prime numbers

Easy
15m average time
80% success
0/40
Asked in companies
HSBCSalesforceDeutsche Bank

You are given a positive integer ‘N’. Your task is to print all prime numbers less than or equal to N.

Note: A prime number is a natural number that is divisible only by 1 and itself. Example - 2, 3, 17, etc.

You can assume that the value of N will always be greater than 1. So, the answer will always exist.

Problem approach

We iterate from 2 to N.
For each number num, we check if it is prime or not. We use the following optimized approach to check if a given number is prime.
We loop through all numbers from 2 to (num)^½.
For every number in the loop, we check if it divides num.
If we find any number that divides num, we can say num is not prime.
If num is prime, we store it in the result vector/list.
Finally, we return the result vector/list.

Try solving now
02
Round
Easy
Video Call
Duration40 minutes
Interview date29 Nov 2021
Coding problem2

This was the first technical round. Questions based on OOPS and Automata were asked.

1. Automata Questions

Are Normal forms really needed? 
Validate a phone number with finite automata.

2. OOPs Questions

What is the use of virtual keyword?
What are friend functions?

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4657 views
0 comments
0 upvotes
Software Engineer
3 rounds | 5 problems
Interviewed by Lcube creation
569 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6451 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3452 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Developer
5 rounds | 14 problems
Interviewed by Microsoft
3932 views
1 comments
0 upvotes
company logo
Software Developer
6 rounds | 12 problems
Interviewed by SAP Labs
2806 views
0 comments
0 upvotes
company logo
Software Developer
3 rounds | 3 problems
Interviewed by Amazon
1134 views
0 comments
0 upvotes