Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Dynamic Vishva Technology Solutions Private Limited Team. If you also belong to the team, you can get access from here

Filter interviews by

Dynamic Vishva Technology Solutions Private Limited Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via Referral and was interviewed before Sep 2022. There were 4 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 - Aptitude Test 

Aptitude test and coding test

Round 3 - Technical 

(1 Question)

  • Q1. Python basics and about academic project
Round 4 - Technical 

(1 Question)

  • Q1. Python questions and hands on coding
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Assignment 

Assignment Round - Complete the assignment within 3 days.

Round 3 - Technical 

(2 Questions)

  • Q1. About the projects in detail?
  • Q2. Python and Django - Basic to advanced questions. Python : 1. Sorting 2. Sum of index equals to X arr = [1, 2, 2, 1, 6] x = 3 [(1,2) (2,1)] Django : 1. Celery 2. Signal 3. Mid...
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager Round. About projects. Quation related AWS Redis

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence is key to success.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

MENTAL FAMILIY RELATION

Round 2 - One-on-one 

(1 Question)

  • Q1. Share ur experience
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you find yourself suitable for this job
  • Q2. What are the name of the companies you are connected to?
Round 2 - One-on-one 

(1 Question)

  • Q1. How are you so sure you can lead a team
Round 3 - HR 

(1 Question)

  • Q1. What salary hike you would fit in
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Simple angular application testing CRUD operations

Round 2 - Technical 

(6 Questions)

  • Q1. Lifecycles in Angular
  • Ans. 

    Angular lifecycles are methods that are called at specific points during the life of a component or directive.

    • Angular components have lifecycle hooks that allow you to tap into key moments in the component's lifecycle, such as creation, updates, and destruction.

    • Some of the commonly used lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

    • These lifecycle hooks can be used to perform tasks like ini...

  • Answered by AI
  • Q2. Services in Angular
  • Ans. 

    Services in Angular are singleton objects that can be used to share data or functionality across different parts of an application.

    • Services are used to encapsulate reusable functionality, such as data access or logging.

    • Services are typically injected into components or other services using Angular's dependency injection system.

    • Services can be used to communicate with backend APIs, manage state, or perform other tasks.

    • E...

  • Answered by AI
  • Q3. Constructor vs ngOnInit
  • Ans. 

    Constructor is a method used to create and initialize an object, while ngOnInit is a lifecycle hook used in Angular to initialize components.

    • Constructor is a default method of a class that is automatically called when an object is created.

    • ngOnInit is a lifecycle hook in Angular that is called after the constructor and is used to initialize data in a component.

    • Constructors are used in all classes, while ngOnInit is spec

  • Answered by AI
  • Q4. Pipes, directives (custom as well)
  • Q5. Javascript console.log question
  • Q6. Hoisting, let,var,const
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Remote working readiness

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply if you have any other opportunity. Only if you do not have any other option to work, then only apply and join the company. Worst management and even worse clients to work with.

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basic Qualification
  • Q2. Reasons for job change
Round 2 - Technical 

(2 Questions)

  • Q1. Virtual Dom vs Real Dom
  • Ans. 

    Virtual Dom is a lightweight copy of the Real Dom, used for efficient updates in web development.

    • Virtual Dom is a lightweight copy of the Real Dom, used for efficient updates in web development.

    • Real Dom represents the actual structure of the web page, while Virtual Dom is a simplified version stored in memory.

    • Changes made to the Virtual Dom are compared with the Real Dom to determine the minimum number of updates neede...

  • Answered by AI
  • Q2. React Hooks flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Be more focused on technical in Deep as else you'll be rejected :)

Skills evaluated in this interview

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The test consists of 2 sections: MCQ’s and 3 coding questions. It was a 90 minutes test, which could be started anytime between the time window of 2 hrs (In my case window was open from 4 PM to 6 PM). The test was proctored and any suspicious activity would have cancelled our test.

  • Q1. 

    Game of Dominoes Problem Statement

    Rafiq loves to play with piles of dominoes, especially when they are of equal heights. His father gifted him 'N' piles of dominoes, each with a positive number of stacke...

  • Ans. 

    Calculate minimum cost to make consecutive windows of domino piles equal in height.

    • Iterate through each window of size K and calculate the minimum cost to make piles equal in height.

    • Keep track of the running sum of domino heights in each window.

    • For each window, find the median height and calculate the cost to make all piles equal to the median height.

  • Answered by AI
  • Q2. 

    String Ka Khel Problem Statement

    Ninja is creating a new game ‘String Ka Khel’ for his gaming shop. In this game, players are given ‘N’ strings. The objective is to find the maximum length of strings that...

  • Ans. 

    Compute the maximum length of a string that can be formed by joining given strings based on a specific condition.

    • Iterate through each string and store the count of strings ending with 'R' and 'B'.

    • Check if there are any strings ending with 'R' and 'B' that can be combined to form a longer string.

    • Return the maximum length of the string that can be formed or 0 if no combination is possible.

  • Answered by AI
  • Q3. 

    Minimum Operations to Equalize Array

    Given an integer array ARR of length N where ARR[i] = (2*i + 1), determine the minimum number of operations required to make all the elements of ARR equal. In a single...

  • Ans. 

    The minimum number of operations required to make all elements of the given array equal.

    • Calculate the target value as the sum of all elements divided by the length of the array.

    • Find the absolute difference between each element and the target value to determine the number of operations needed.

    • Return the sum of all absolute differences as the minimum number of operations required.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a 60 minutes video call round held on Google Meet.The Interviewer was very helpful.

  • Q1. 

    Power of a Number Problem

    You are given two integers, X and N. Your task is to compute the value of X raised to the power of N (i.e., X^N).

    Input:

    The first line contains an integer T, the number of tes...
  • Ans. 

    Compute the value of X raised to the power of N for given integers X and N.

    • Read the number of test cases T

    • For each test case, read the values of X and N

    • Calculate X^N for each test case

    • Print the result of X^N for each test case

  • Answered by AI
  • Q2. 

    Implement Stack with Linked List

    Your task is to implement a Stack data structure using a Singly Linked List.

    Explanation:

    Create a class named Stack which supports the following operations, each in O(1...

  • Ans. 

    Implement a Stack data structure using a Singly Linked List with operations in O(1) time.

    • Create a class named Stack with methods getSize, isEmpty, push, pop, and getTop.

    • Use a Singly Linked List to store the elements of the stack.

    • Ensure each operation runs in O(1) time complexity.

    • Handle edge cases like empty stack appropriately.

    • Implement the logic for each operation as specified in the question.

    • Test the implementation w...

  • Answered by AI
  • Q3. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement exists in a hash set.

    • Sort the pairs based on the first element and then the second element.

    • Use a hash set to store elements as you iterate through the array to avoid duplicates.

    • Return the list of pairs that satisfy the sum condition.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Search in Infinite Sorted 0-1 Array Problem Statement

    You are provided with an infinite sorted array that consists exclusively of 0s followed by 1s. Your task is to determine the index of the first occurr...

  • Ans. 

    Find the index of the first occurrence of 1 in an infinite sorted 0-1 array.

    • Use binary search to efficiently find the index of the first occurrence of 1.

    • Keep doubling the search range until you find a range that contains 1.

    • Update the search range based on the value at the mid index.

    • Return the index of the first occurrence of 1 once found.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from JAYPEE INSTITUTE OF INFORMATION TECHNOLOGY. I applied for the job as SDE - Intern in NoidaEligibility criteria6 CGPAProcol interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Operating system, Databases, Javascript, NodeJs, ReactTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Do at least two good projects relevant to the company and role applying for.
Tip 2 : Always read the job description carefully and do some research about the company
Tip 3 : Have a good knowledge of Computer Science fundamentals.

Application resume tips for other job seekers

Tip 1 : Include some relevant skills required in the job description.
Tip 2 : Make a single-page resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Oct 2022. 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 - One-on-one 

(1 Question)

  • Q1. More to do with past experience and process know how
Round 3 - One-on-one 

(1 Question)

  • Q1. Overall scope for me in the organisation (which in reality wasn't there)

Interview Preparation Tips

Interview preparation tips for other job seekers - Please please do not join
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Why do you want to join procol?
  • Q2. What if you are not selected here?
  • Q3. Do you want to become an entrepreneur?

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company,don't waste your time by giving interview here. Firstly the HR will end up rescheduling the interview multiple times. My first round was taken by the HR head ,who was asking me functional questions related to sales which I was appalled by. The second Round was taken by the Director sales which was good and I ended up clearing. The final round will be taken by the CEO who is a noob,In the name of cultural fitment he will ask you nonsensical questions and end up rejecting you for no reason. If the CEO is like this you can very well make out the kind of culture the company fosters.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Case Study 

Related to business growth and a template to increase sales

Round 2 - Case Study 

Reason for this role, what do you think is the way to move forward in this role.

Round 3 - HR 

(2 Questions)

  • Q1. Generic profile matching
  • Q2. Do you have any other offers
  • Ans. 

    Yes, I have received offers from other companies.

    • I have received offers from Company A and Company B.

    • I am currently in the final stages of interviews with Company C.

    • I am considering all offers before making a decision.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - it’s chill, practice some case studies. focus on current market scenarios related to SaaS products.

Dynamic Vishva Technology Solutions Private Limited Interview FAQs

How to prepare for Dynamic Vishva Technology Solutions Private Limited 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 Dynamic Vishva Technology Solutions Private Limited. The most common topics and skills that interviewers at Dynamic Vishva Technology Solutions Private Limited expect are B2B Sales, Business Development, Business Growth, CRM and CRM Software.

Tell us how to improve this page.

Interview Questions from Similar Companies

Acviss Interview Questions
4.3
 • 7 Interviews
Elucidata Interview Questions
3.7
 • 6 Interviews
Tech Formation Interview Questions
4.7
 • 5 Interviews
QuickRide Interview Questions
2.9
 • 5 Interviews
Procol Interview Questions
4.0
 • 4 Interviews
TechUp Labs Interview Questions
4.3
 • 4 Interviews
View all

Dynamic Vishva Technology Solutions Private Limited Reviews and Ratings

based on 9 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.5

Salary

4.0

Job security

3.9

Company culture

3.9

Promotions

3.7

Work satisfaction

Explore 9 Reviews and Ratings
UI/UX Designer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Python Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Writer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

PHP Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Dynamic Vishva Technology Solutions Private Limited with

QuickRide

2.9
Compare

sysotel.ai

2.3
Compare

Sekel Technologies

4.4
Compare

Reveation Labs

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