Upload Button Icon Add office photos

Filter interviews by

Vertico BPO Software Developer Interview Questions and Answers

Updated 23 Aug 2024

Vertico BPO Software Developer Interview Experiences

2 interviews found

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

(2 Questions)

  • Q1. About Sql Joins
  • Q2. Action Filters in MVC
  • Ans. 

    Action filters in MVC are attributes that can be applied to controller actions to perform logic before or after the action is executed.

    • Action filters can be used to perform authentication, logging, caching, etc.

    • Examples of action filters include Authorize, OutputCache, HandleError, etc.

    • Action filters can be applied at the controller level or at the action level.

    • Action filters can be created by implementing the IActionF...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

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

(1 Question)

  • Q1. Related to dotnet questions and previous project details.
Round 2 - Coding Test 

MVC with entity frame work

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is Rabbit MQ?
  • Ans. 

    RabbitMQ is a message broker software that implements the Advanced Message Queuing Protocol (AMQP).

    • RabbitMQ allows different software systems to communicate by sending and receiving messages.

    • It can be used to decouple different parts of a system, making it more scalable and resilient.

    • RabbitMQ supports multiple messaging protocols, including AMQP, MQTT, and STOMP.

  • Answered by AI
  • Q2. What is LINQ in .net?
  • Ans. 

    LINQ (Language Integrated Query) is a feature in .NET that allows querying data from different data sources using a uniform syntax.

    • LINQ allows querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in C# or VB.NET and are type-safe.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Hash map implementation
  • Ans. 

    Hash map is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hash map uses a hash function to map keys to indices in an array.

    • Collision handling is important in hash map implementation.

    • Common operations include adding, removing, and retrieving key-value pairs.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. About software development models

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. Union and union all difference
  • Ans. 

    UNION combines the results of two or more SELECT statements, while UNION ALL includes duplicates.

    • UNION removes duplicate rows, while UNION ALL retains all rows including duplicates

    • UNION is slower than UNION ALL as it performs a distinct operation

    • UNION requires the same number of columns in the SELECT statements, while UNION ALL does not have this restriction

  • Answered by AI
  • Q2. What is generic and non-generic collections
  • Ans. 

    Generic collections allow storing any type of data, while non-generic collections are type-specific.

    • Generic collections can store any type of data, such as List or Dictionary.

    • Non-generic collections are type-specific, like ArrayList or HashTable.

    • Generic collections provide type safety and better performance compared to non-generic collections.

Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good experience give an interview

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Palindrome code
  • Q2. Delete all the distinct records
  • Ans. 

    To delete all distinct records, use a query to identify and remove duplicate entries.

    • Identify distinct records using a query

    • Delete duplicate entries from the database

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2023.

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 

10 day,Numbers,Alebra

Round 3 - Technical 

(5 Questions)

  • Q1. Oop,C++.html,css,javascrept
  • Q2. What is order list
  • Ans. 

    An ordered collection of items, typically displayed in a numbered list.

    • Order list is used to display items in a specific sequence.

    • Items in an order list are typically numbered or marked with bullets.

    • Example:

      1. Item 1
      2. Item 2

  • Answered by AI
  • Q3. What is javascript
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It can be used to add interactivity to websites, such as form validation or dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

    • Examples of JavaScript frameworks/libraries include React, Angular, and Vue.

  • Answered by AI
  • Q4. What is ===operator
  • Ans. 

    === operator is a strict equality operator in JavaScript that checks if two values are equal in both value and type.

    • === operator returns true if both operands are of the same type and have the same value

    • It does not perform type coercion, unlike the == operator

    • Example: 5 === '5' will return false because the operands are of different types

  • Answered by AI
  • Q5. What is the main features of oop
  • Ans. 

    Main features of OOP include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Example: Encapsulation - a class 'Car' wi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java concepts - Oops, collection
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was easy and u can do it very easily

Round 2 - Coding Test 

Basically question were asked from tree, bst, greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep patient and do grinding
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Cat level maths are to be solved

Round 2 - Coding Test 

Java coding basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - It's easy to crack

Vertico BPO Interview FAQs

How many rounds are there in Vertico BPO Software Developer interview?
Vertico BPO interview process usually has 1-2 rounds. The most common rounds in the Vertico BPO interview process are Technical and Coding Test.
What are the top questions asked in Vertico BPO Software Developer interview?

Some of the top questions asked at the Vertico BPO Software Developer interview -

  1. Action Filters in ...read more
  2. related to dotnet questions and previous project detai...read more
  3. About Sql Jo...read more

Tell us how to improve this page.

Vertico BPO Software Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Vertico BPO Software Developer Salary
based on 5 salaries
₹3.5 L/yr - ₹7 L/yr
36% less than the average Software Developer Salary in India
View more details
Executive Accountant
134 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

Senior Accounts Executive
12 salaries
unlock blur

₹3.5 L/yr - ₹4.5 L/yr

HR Executive
9 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Customer Care Executive
7 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Information Technology Support Engineer
6 salaries
unlock blur

₹4 L/yr - ₹4.7 L/yr

Explore more salaries
Compare Vertico BPO with

Genpact

3.9
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

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