Maventic Innovative Solutions Pvt Ltd interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Maventic Innovative Solutions Pvt Ltd
upvote
share-icon
4 rounds | 5 Coding problems

Interview preparation journey

expand-icon
Journey
First of all, I cleared the coding test in which they gave a dynamic programming question .Then they take us through technical and hr interview, which is not very hard.Then I finally got the offer letter.
Application story
The application journey for students typically involves identifying and applying for internships or entry-level positions. Students can apply for jobs through various channels such as career fairs, online job boards, company websites, and personal connections.
Why selected/rejected for the role?
To be successful in a technical role, it's important to have a solid understanding of the relevant technical skills, as well as good problem-solving, analytical, and communication skills. Employers typically look for candidates who have a strong academic background, relevant technical certifications or training, and hands-on experience with relevant software or programming languages.
Preparation
Duration: 3 months
Topics: Data Structures, Pointers, OOPS,, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Focus on Solving DSA problem
Tip 2 : Make good projects
 

Application process
Where: Campus
Eligibility: 6 CGPA
Resume Tip
Resume tip

Tip 1 : Make it Simple and write some word in bold letter and also give links
Tip 2 : List Good projects with some AI and Machine learning

Interview rounds

01
Round
Easy
Online Coding Interview
Duration55 minutes
Interview date15 Sep 2022
Coding problem2

1. First Unique Character in a String

Easy
15m average time
85% success
0/40
Asked in companies
Livekeeping (An IndiaMART Company)IBMMicrosoft

Given a string ‘STR’ consisting of lower case English letters, the task is to find the first non-repeating character in the string and return it. If it doesn’t exist, return ‘#’.

For example:

For the input string 'abcab', the first non-repeating character is ‘c’. As depicted the character ‘a’ repeats at index 3 and character ‘b’ repeats at index 4. Hence we return the character ‘c’ present at index 2.
Try solving now

2. Box Stacking

Hard
25m average time
65% success
0/120
Asked in companies
Morgan StanleyDirectiJio Platforms Limited

You are given a set of ‘n’ types of rectangular 3-D boxes. The height, width, and length of each type of box are given by arrays, ‘height’, ‘width’, and ‘length’ respectively, each consisting of ‘n’ positive integers. The height, width, length of the i^th type box is given by ‘height[i]’, ‘width[i]’ and ‘length[i]’ respectively.

You need to create a stack of boxes that is as tall as possible using the given set of boxes.

Below are a few allowances:

You can only stack a box on top of another box if the dimensions of the 2-D base of the lower box ( both length and width ) are strictly larger than those of the 2-D base of the higher box. 

You can rotate a box so that any side functions as its base. It is also allowed to use multiple instances of the same type of box. This means, a single type of box when rotated, will generate multiple boxes with different dimensions, which may also be included in stack building.

Return the height of the highest possible stack so formed.

alt text

Note:
The height, Width, Length of the type of box will interchange after rotation.

No two boxes will have all three dimensions the same.

Don’t print anything, just return the height of the highest possible stack that can be formed.
Try solving now
02
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date22 Oct 2022
Coding problem1

Technical Round

1. Longest Palindromic Subsequence

Hard
45m average time
50% success
0/120
Asked in companies
CIS - Cyber InfrastructureIBMLinkedIn

You have been given a string ‘A’ consisting of lower case English letters. Your task is to find the length of the longest palindromic subsequence in ‘A’.

A subsequence is a sequence generated from a string after deleting some or no characters of the string without changing the order of the remaining string characters. (i.e. “ace” is a subsequence of “abcde” while “aec” is not).

A string is said to be palindrome if the reverse of the string is the same as the actual string. For example, “abba” is a palindrome, but “abbc” is not a palindrome.

Problem approach

I used dynamic programming to solve this length of palindromic subsequence in string

Try solving now
03
Round
Medium
Online Coding Interview
Duration60 minutes
Interview date18 Nov 2022
Coding problem1

1. Find all occurrences

Moderate
35m average time
60% success
0/80
Asked in companies
MicrosoftOracleSalesforce

You are given a 'M' x 'N' matrix of characters, 'CHARACTER_MATRIX' and a string 'WORD'. Your task is to find and print all occurrences of the string in the given character matrix. You are allowed to search the string in all eight possible directions, i.e. North, South, East, West, North-East, North-West, South-East, South-West.

Note: There should not be any cycle in the output path. The entire string must lie inside the matrix boundary. You should not jump across boundaries, i.e. from row 'N' - 1 to 0 or column 'N' - 1 to 0 or vice versa.

Example:

Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ] 
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]

If the given string is "CODE", below are all its occurrences in the matrix:

'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
Problem approach

Approach 1 : Using brute force
Approach 2 : Using map of type char and int and store the frequency of characters

Try solving now
04
Round
Easy
HR Round
Duration30 minutes
Interview date1 Dec 2022
Coding problem1

1. Basic HR Questions

Tell me about yourself.
What are your strengths and weaknesses?
Why do you want to work for this company?
What do you know about our company and our industry?
How do you handle conflict or difficult situations?

Here's your problem of the day

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

Skill covered: Programming

Which SQL clause is used to specify the conditions in a query?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by OYO
4742 views
0 comments
0 upvotes
company logo
SDE - Intern
2 rounds | 3 problems
Interviewed by Amazon
1001 views
0 comments
0 upvotes
company logo
SDE - 1
2 rounds | 5 problems
Interviewed by Meesho
6514 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 9 problems
Interviewed by Salesforce
3525 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
3 rounds | 10 problems
Interviewed by Amdocs
2388 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Ernst & Young (EY)
2711 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 15 problems
Interviewed by Ernst & Young (EY)
2371 views
0 comments
0 upvotes