Upload Button Icon Add office photos

Filter interviews by

Congruent Solutions VBA Developer Interview Questions and Answers

Updated 27 Aug 2024

Congruent Solutions VBA Developer Interview Experiences

1 interview found

VBA Developer Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about Userform and modules
  • Ans. 

    Userform is a graphical interface for users to interact with data, while modules are containers for VBA code.

    • Userform allows for creating custom forms with input fields, buttons, etc.

    • Modules are used to store VBA code that can be called from other parts of the program.

    • Userform can be used to collect user input and display information in a visually appealing way.

    • Modules can contain functions, subroutines, and variables

  • Answered by AI

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Krishna Institute of Engineering and Technology, Ghaziabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Medium level questions asked

Round 2 - Coding Test 

Simple easy to medium 2 questions asked of string and array

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. JavaScript like fetch axios and others
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at S R Engineering College, Ranga Reddy and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

MCQ round with few apti, 2 coding too.

Round 2 - Technical 

(2 Questions)

  • Q1. Into, projects,
  • Q2. Print node with no edge in a unidirectional graph
  • Ans. 

    To print nodes with no edges in a unidirectional graph, iterate through all nodes and print those without any outgoing edges.

    • Iterate through all nodes in the graph

    • For each node, check if it has any outgoing edges

    • If a node has no outgoing edges, print it

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Intro, projects, dsa
  • Q2. Prime number code

Interview Preparation Tips

Topics to prepare for Impact Analytics Backend Developer interview:
  • Binary Tree
  • DSA
  • Flask
Interview preparation tips for other job seekers - I never heard back from them, its been 6 months
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. I don't know why they rejected me
  • Q2. What ever they asked me for coding part the output is correct and logic is also correct
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Medium level coding questions on hackerrank ,1:30hr, topic- Array , DP , Matrix , Binary Search

Round 2 - Technical 

(1 Question)

  • Q1. Was Asked to Implement Hashmap and Question on OOPS and Dbms , SQL and Indexing
Round 3 - Technical 

(2 Questions)

  • Q1. Brief Introduction
  • Q2. Rotten Oranges and basics of bfs and DFS
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript MCQs and one coding question
Round 2 - Technical 

(1 Question)

  • Q1. 3 coding questions, Questions on Resume and Node.js. Scenario based questions.
Round 3 - Behavioral 

(1 Question)

  • Q1. Questions on project. Behavioural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared before attending the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Centre for Development of Advanced Computing (CDAC) and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to front end technologies like HTML, CSS, JS
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions on HTML, CSS, JS Focus on array questions and read methods of array before
Round 3 - Technical 

(1 Question)

  • Q1. Managerial round questions based on scenario to check how you think/react on the particular situation

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was early in the morning around 8:00AM-8:40AM. Platform used was hackerrank and the questions asked were of moderate level.

  • Q1. 

    Split Array with Equal Sums Problem Statement

    Given an array 'ARR' of size 'N', determine if there exists a triplet (i, j, k) satisfying the conditions: 0 < i , i + 1 < j , j + 1 < k and k < N...

  • Ans. Brute Force

    To implement this approach, You have to understand the constraints first, i.e., 0 < i, i+1 < j , j+1< k < N-1.

    If you carefully look at the constraints, you may notice the problem while splitting the array into slices or subarrays does not include the elements at index i,  j, and k. So it can be simply observed that according to constraints during the slices you make, three of the elements wi...

  • Answered Anonymously
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was in the evening around 4;00PM-4:20PM. This round was very interesting as it focuses more about your personality rather than your knowledge which has been already checked in previous rounds.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaNo BacklogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, DBMS, Aptitude, Web DevelopmentTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude as much as possible.
Tip 2 : Practice more and more questions related to your skills.
Tip 3 : Proper revision is must.

Application resume tips for other job seekers

Tip 1 : It should not be too long or too short.
Tip 2 : Each skill and project should be reflected properly in your resume.

Final outcome of the interviewSelected

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

They share doc file link which consist of 5 programming questions

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. Brute force
    • Create a String ans to store the reversed string.
    • Initialize a variable i to 0 and iterate the whole string through a while loop.
    • Skip initial spaces by just incrementing i.
    • Create a String that will store the current word.
    • Add the currentword and space at the beginning of ans.
    • After traversing the whole string, check if the length of ans is greater than 0 then return ans after removing the last space otherwise r...
  • Answered Anonymously
  • Q2. 

    Fibonacci Membership Check

    Given an integer N, determine if it is a member of the Fibonacci series. Return true if the number is a member of the Fibonacci series, otherwise return false.

    Fibonacci Series...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q3. 

    Maximum Difference Problem Statement

    Given an array ARR of N elements, your task is to find the maximum difference between any two elements in ARR.

    If the maximum difference is even, print EVEN; if it is...

  • Ans. Find Max And Min

    We will iterate over ARR and find the MAX and MIN of the ARR. And if the MAX - MIN is odd the return “ODD” else return "EVEN". 

    The algorithm will be-

    1. MAX = -1, MIN= 10 ^ 9 + 1
    2. For VAL in ARR.
      1. If MAX < VAL
        1. MAX = VAL
      2. If MIN > VAL
        1. MIN = VAL
    3. IF (MAX-MIN) % 2
      1. Return ODD
    4. ELSE
      1. Return EVEN
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since constant space is used.

    Time Complexity: O(n)Explanation:

    O(N), where N ...

  • Answered Anonymously
  • Q4. 

    Remainder When Divided By 11 Problem Statement

    Determine the remainder when a given number, 'N' in the form of a string, is divided by 11.

    Input:

    The first line contains an integer 'T' denoting the numb...
  • Ans. Using Modulo Property
    1. Since the number is very large we can not simply calculate N % 11.
    2. Now, any number say 256 % 11 can be calculated as (25*10 + 6)%11. Which in turn can be calculated as (( 25*10)%11+ 6)%11 or ( (25%11)*10 + 6)%11. Similarly 25%11 can be calculated as (2*10+5)%11. Therefore , 256 %11 can be finally calculated as ( ( (2*10 + 5)%11 )*10 + 6)%11.
    3. So, the idea is to store the number N in string Str.
    4. Take a ...
  • Answered Anonymously
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In this round interviewer asked me to solve 3 programming questions.

  • Q1. 

    Selection Sort Algorithm

    Selection sort is a sorting technique that works by repeatedly finding the minimum element (considering ascending order) from the unsorted part and placing it at the beginning of ...

  • Ans. Selection Sort Approach

    Selection sort is a standard sorting algorithm that uses nested loops to find all the minimum elements in the array in each iteration and swap them with the starting element of the unsorted region of the array.

     

    Steps :

    • Use a minValue variable to find the index of the minimum element of the array.
    • Use a loop to iterate over all the elements of the array.
    • Use a nested loop to find the minimum ele...
  • Answered Anonymously
  • Q2. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q3. 

    Star Pattern Problem Statement

    Display the star pattern for a given positive integer N.

    Example:

    Input:
    N = 4
    Output:
       *
    ***
    *****
    *******
    Explanation:

    The dots in the image represent spaces. Al...

  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
Round 3 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was the HR round. They asked me simple HR questions and 1 coding question.

  • Q1. 

    Character Counting Challenge

    Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...

  • Ans. Space Complexity: O(1)Explanation: Time Complexity: O(1)Explanation:
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaabove 6 CGPARaja Software Labs interview preparation:Topics to prepare for the interview - Language - Java, Basic Coding questions like (star patterns, factorial of no, prime number or not, etc), Data Structure, Object Oriented Programming conceptsTime required to prepare for the interview - 1 MonthsInterview preparation tips for other job seekers

Tip 1 : Learn how to optimize the program. This will really help you during RSL interview. 
Tip 2 : Study all previously asked question by this company and try to find out best solution for it.
Tip 3 : Keep resume simple and authenticated.
Tip 4 : Practice how to handrun the program.

Application resume tips for other job seekers

Tip 1 : Resume should be authenticated. You should be able to answer all things on resume.
Tip 2 : Keep it simple.
Tip 3 : Having internship experience will help.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pointer i c++ and css
Round 2 - Coding Test 

Dsa round with medium tto hard level questions

Congruent Solutions Interview FAQs

How many rounds are there in Congruent Solutions VBA Developer interview?
Congruent Solutions interview process usually has 1 rounds. The most common rounds in the Congruent Solutions interview process are Technical.
How to prepare for Congruent Solutions VBA Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Congruent Solutions. The most common topics and skills that interviewers at Congruent Solutions expect are MS Access, Macros, Excel, MS Office and Pivot.

Tell us how to improve this page.

Congruent Solutions VBA Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 798 Interviews
View all

Fast track your campus placements

View all
Process Associate
134 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Software Engineer
45 salaries
unlock blur

₹4 L/yr - ₹14.6 L/yr

Senior Process Associate
37 salaries
unlock blur

₹3.8 L/yr - ₹6.3 L/yr

Analyst
32 salaries
unlock blur

₹3 L/yr - ₹8.3 L/yr

Senior Software Engineer
28 salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Explore more salaries
Compare Congruent Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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