Upload Button Icon Add office photos

Filter interviews by

Vtiger Systems Software Developer Interview Questions and Answers

Updated 12 Nov 2024

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Get the maximum at any point during push and pop operation in stack
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

First round was a DSA round. Interviewers were helpful.

Round 2 - Technical 

(1 Question)

  • Q1. It was a technical round with the team lead.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology, (NIT), Sikkim and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

It is consisting of 5 questions,and each question carry 20 marks.difficulaty level of the question is easy to moderate.

Round 3 - Technical 

(1 Question)

  • Q1. They were asking mainy DSA, project,and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have a strong command on DSA as well as u should have a project
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

4 Easy to Medium Leetcode Type Questions on Signal Hire Platform

Round 2 - Technical 

(1 Question)

  • Q1. Not Selected as all Girls were only selected in OA

Interview Preparation Tips

Interview preparation tips for other job seekers - Gender Based Hiring Only-Selected All Girls after Online Assesment, Did not selected even a single male even solved all questions. Gender over Skill Set👎👎
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

2 coding questions - easy

Round 3 - Technical 

(1 Question)

  • Q1. Merge two sorted linked list Find max sum subarray
  • Ans. 

    Merge two sorted linked lists and find max sum subarray

    • To merge two sorted linked lists, compare the nodes and link them accordingly

    • For max sum subarray, use Kadane's algorithm to find the maximum sum subarray in a given array

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Bascic html and django questions
Round 3 - Coding Test 

Waste of time and energy sql queries

Round 4 - HR 

(1 Question)

  • Q1. Salary negotation and location details

Interview Preparation Tips

Interview preparation tips for other job seekers - dont look at it
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Job Fair and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 data struture question advancevds i cpp

Round 2 - Technical 

(2 Questions)

  • Q1. 5 dsa array string
  • Ans. 

    Implement a data structure for storing and manipulating an array of strings.

    • Use a dynamic array to store the strings.

    • Implement functions for adding, removing, and accessing strings in the array.

    • Consider memory management and resizing the array as needed.

  • Answered by AI
  • Q2. Data sturucture
Round 3 - HR 

(1 Question)

  • Q1. Resume based question

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Skills evaluated in this interview

I was interviewed in Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing was 12 PM. Interviewer was nice.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. Optimal Solution
    • Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
    • Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
    Space Complexity: O(1)Explanation:

    O(1).

     

    In the worst case, only constant extra space is required.

    Time Complexity: O(...
  • Answered Anonymously
  • Q2. 

    Move Zeros to Left Problem Statement

    Your task is to rearrange a given array ARR such that all zero elements appear at the beginning, followed by non-zero elements, while maintaining the relative order of...

  • Ans. Solution Using Extra space

    The idea is to use an extra vector to store all the non-zero elements while maintaining their relative order. So we will first add all the non-zero elements to a vector and then iterate that vector backwards and start updating the array values from end. In the end we will set all the array values whose values were not updated to 0. 

    Steps:

    1. Let storeNonZero be the vector that stores non-zero...
  • Answered Anonymously
  • Q3. Write an SQL query to find the second highest salary from a table.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in NoidaEligibility criteriaAbove 8 CGPAWatchGuard Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice problem solving questions.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Online test

  • Q1. MCQ Questions

    Based on c++,c and java basics

Round 2 - Video Call 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Technical interview

  • Q1. 

    Distinct Elements in K-Sized Windows

    The task is to determine the number of distinct elements in every sliding window of size 'K' across an array 'ARR' of size 'N'. A 'K' sized window is a contiguous sequ...

  • Ans. Brute Force

    The basic idea of this approach is to check every window of size K and count the number of distinct elements in each window.

    Our approach will be to maintain an array answer, which will store the count of the distinct elements in every window. We will traverse through each window and find the number of distinct elements in the current window. 

    1. For each element in the window, we will traverse through the w...
  • Answered Anonymously
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. Merge Sort Linked List
    1. The idea is to take a recursive approach by calling the sort function on the left half and right half of the list.
    2. In order to do so, get the middle node and split the list into two halves. We can use a two-pointer technique to get the middle node by running a slow and a fast pointer.
      1. The idea here is to move both the slow and fast pointer simultaneously until fast reaches the end of the list.
      2. Here, ...
  • Answered Anonymously
Round 3 - Coding Test 

Round duration - 20 minutes
Round difficulty - Hard

Hr interview

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteria80% and above in 10th,12th and ugWatchGuard Technologies interview preparation:Topics to prepare for the interview - Stack Implementation, DBMS, SQL QUERIES, Data structure and ADATime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Go through oosp concept properly
Tip 2 : Good knowledge on coding
Tip 3 : intermediate knowledge on database and data structures

Application resume tips for other job seekers

Tip 1 : A project based on database
Tip 2 : Mention all the fields properly and have a prior knowledge on your project

Final outcome of the interviewRejected

Skills evaluated in this interview

Vtiger Systems Interview FAQs

How many rounds are there in Vtiger Systems Software Developer interview?
Vtiger Systems interview process usually has 1 rounds. The most common rounds in the Vtiger Systems interview process are Aptitude Test.

Tell us how to improve this page.

Vtiger Systems Software Developer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Vtiger Systems Software Developer Salary
based on 14 salaries
₹5 L/yr - ₹19 L/yr
34% more than the average Software Developer Salary in India
View more details

Vtiger Systems Software Developer Reviews and Ratings

based on 5 reviews

4.7/5

Rating in categories

4.3

Skill development

4.9

Work-life balance

4.6

Salary

4.5

Job security

4.7

Company culture

3.9

Promotions

4.7

Work satisfaction

Explore 5 Reviews and Ratings
Business Analyst
22 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Software Developer
14 salaries
unlock blur

₹5 L/yr - ₹19 L/yr

QA Engineer
10 salaries
unlock blur

₹5.2 L/yr - ₹9.2 L/yr

Senior Business Analyst
6 salaries
unlock blur

₹9.1 L/yr - ₹13.6 L/yr

Software Engineer
6 salaries
unlock blur

₹7.7 L/yr - ₹13 L/yr

Explore more salaries
Compare Vtiger Systems with

Zoho

4.3
Compare

Freshworks

3.5
Compare

HCLTech

3.5
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview