Liberin Technologies interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Liberin Technologies
upvote
share-icon
2 rounds | 8 Coding problems

Interview preparation journey

expand-icon
Journey
The interview process was very smooth..it scheduled on 23 Jan 2023 at 3:30pm. The duration of interview was around 30, min... It was conducted on MS teams. The interviewer was frank. first of all he told me to what is your your tech stack? How you are doing in your tech stack? interviewer was a java person.. he only know java. Then he asked me about oops concept. q1> what is polymorphism? and write an example of polymorphism q2> what is function overloading and function overriding.. then he told me if we change the return type in function would it effect in code. But i answered according to C++. it will give error. Function will not be overloaded. But in java it is reverse. q3> what is inheritance? what is multilevel inheritance.. example of multilevel inheritance? q4> what is copy constructor? then he moved to dsa question .. q1> how you will sort the array ? q2> write code of bubble sort? q3> what is stack? q4> operation of stack? q5> what is linked list? types of linked list explain each of them DBMS question' q1> what is normalization? q2> what is inner joins? q3>what is foreign key? q4> difference between truncate and delete?
Application story
it was a on campus drive. They were hiring for many roles Enterprise Application Developers, Mobile Application Developers, Software Testers for Quality Assurance, software developer. there were 4 round technical interview round. including hr. First round was aptitude. numerical ability, verbal ability, logical ability. the duration of the test around 1 hr. scheduled on 13Jan. at 3 pm. after first I got the next round link that was coding round.
Why selected/rejected for the role?
i got rejected after first technical interview because interviewer only know java and i am not familiar with java .. my all answered of oops concept which i given is totally correct but he assumed my all answered in java. so i got rejected.
Preparation
Duration: 2 months
Topics: array, string, linked list, oops concept, database management system
Tip
Tip

Tip 1 : Do practice coding question regularly on platform like leetcode, gfg. 
Tip 2 : Before going interview. Check the interview experience on GFG. You will get some idea.
Tip 3 : Maintain your consistency

Application process
Where: Campus
Eligibility: B.tech (CS/IT/ECE/EEE) No percentage criteria.
Resume Tip
Resume tip

Tip 1 : Don't write false information in your resume.
Tip 2 : Be prepared with your resume

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 min
Interview date13 Jan 2023
Coding problem5

In this round question is based on numerical ability, verbal ability, logical ability. the duration of the test around 1 hr. scheduled on 16 Jan. at 12 pm...mainly they are focusing on aptitude part which i was able to clear this round. question was quite easy.. some question are tricky but i can say the level of this round is easy to moderate

1. Puzzle

Find the average of the square of first 16 natural number is:
 

Problem approach

Tip 1 : you can do numeric ability question logical ability and verbal ability
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also

2. Puzzle

If there is a comparison between two nominative cases, the pronoun of the nominative case is used after ‘than’.
 

Problem approach

Tip 1 : you can do numeric ability question logical ability and verbal ability on indiabix
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also

3. Puzzle

Two ships are sailing in the sea on the two sides of a lighthouse. The angle of elevation of the top of the lighthouse is observed from the ships are 30° and 45° respectively. If the lighthouse is 100 m high, the distance between the two ships is:
 

Problem approach

Tip 1 : you can do numeric ability question logical ability and verbal ability on indiabix
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also

4. Puzzle

The angle of elevation of a ladder leaning against a wall is 60° and the foot of the ladder is 4.6 m away from the wall. The length of the ladder is:
 

Problem approach

Tip 1 : you can do numeric ability question logical ability and verbal ability on indiabix
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also

5. Puzzle

Look at this series: 2, 1, (1/2), (1/4), ... What number should come next?
 

Problem approach

Tip 1 : you can do numeric ability question logical ability and verbal ability on indiabix
Tip 2 : practice ques from interview bit
Tip 3 : practice ques from gfg also

02
Round
Medium
Online Coding Test
Duration45 minutes
Interview date16 Jan 2023
Coding problem3

there were 3 question in this question.. questions are from array string and linked list.. these 3 question were there. i was able to solve all three question

1. Next greater element

Easy
10m average time
90% success
0/40
Asked in companies
IBMInfo Edge India (Naukri.com)Amazon

You are given an array 'a' of size 'n'.



The Next Greater Element for an element 'x' is the first element on the right side of 'x' in the array, which is greater than 'x'.


If no greater elements exist to the right of 'x', consider the next greater element as -1.


For example:
Input: 'a' = [7, 12, 1, 20]

Output: NGE = [12, 20, 20, -1]

Explanation: For the given array,

- The next greater element for 7 is 12.

- The next greater element for 12 is 20. 

- The next greater element for 1 is 20. 

- There is no greater element for 20 on the right side. So we consider NGE as -1.
Problem approach

by using help of stack data structure i was able to solve this question

Try solving now

2. Reverse Linked List

Moderate
15m average time
85% success
0/80
Asked in companies
IBMQuikrMicrosoft

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

used three pointer approach

Try solving now

3. Check Permutation

Easy
15m average time
85% success
0/40
Asked in companies
OptumGrabUber

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

i used map data structure and comparing both map

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

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
SDE - 1
2 rounds | 5 problems
Interviewed by Liberin Technologies
664 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6450 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
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57825 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes