Filter interviews by
I applied via Naukri.com and was interviewed in Nov 2022. There were 3 interview rounds.
A trigger is an event or condition that initiates a specific action or process.
Triggers are commonly used in programming and databases.
They can be used to automate tasks or initiate processes based on certain conditions.
Examples include a trigger that sends an email when a new user registers on a website, or a trigger that updates a database record when a certain field is changed.
Triggers can also be used in marketing ...
Right outer join returns all records from the right table and matching records from the left table.
It includes all the records from the right table and only matching records from the left table.
If there is no match in the left table, the result will contain NULL values.
It is denoted by RIGHT OUTER JOIN or RIGHT JOIN keyword in SQL.
Example: SELECT * FROM right_table RIGHT JOIN left_table ON right_table.id = left_table.i
Types in Oracle are data types that define the type of data that can be stored in a column or variable.
Oracle has several built-in data types such as NUMBER, VARCHAR2, DATE, and CLOB.
NUMBER is used to store numeric values, VARCHAR2 is used to store character strings, DATE is used to store dates and times, and CLOB is used to store large character strings.
Oracle also supports user-defined data types, which can be create...
An array type is a data type that stores a collection of elements of the same data type in a contiguous memory location.
Arrays can be one-dimensional or multi-dimensional
Elements in an array can be accessed using an index
Arrays can be initialized with a fixed size or dynamically resized
Examples of array types include int[], double[], and string[]
I applied via Approached by Company and was interviewed before Apr 2022. There were 3 interview rounds.
I applied via LinkedIn and was interviewed before Apr 2023. There was 1 interview round.
What people are saying about Virtusa Consulting Services
I was interviewed in Jul 2021.
Round duration - 50 Minutes
Round difficulty - Medium
In this round, the interviewer first asked me a preety basic coding question related to Backtracking. Then he switched to questions revolving around Java , Spring Boot and Kafka.
1. The input string may contain the same charac...
Approach :
We can find all the permutations by Backtracking.
1) Fix a character then swap all the rest of the remaining character with a fixed character.
2) Then find all permutations for all remaining characters by the recursive call.
3) The base case for the recursion will be when there is only one character left unprocessed.
TC : O(N*N!), where N = length of the String.
SC : O(N)
Explain the use of final keyword in variable, method and class.
In Java, the final keyword is used as defining something as constant /final and represents the non-access modifier.
1) final variable :
i) When a variable is declared as final in Java, the value can’t be modified once it has been assigned.
ii) If any value has not been assigned to that variable, then it can be assigned only by the constructor of the class.
2) final method :
i) A method declared as final cannot be overridden...
How would you differentiate between a String, StringBuffer, and a StringBuilder?
1) Storage area : In string, the String pool serves as the storage area. For StringBuilder and StringBuffer, heap
memory is the storage area.
2) Mutability : A String is immutable, whereas both the StringBuilder and StringBuffer are mutable.
3) Efficiency : It is quite slow to work with a String. However, StringBuilder is the fastest in performing operations. The
speed of a StringBuffer is more than a String and less than ...
What is dependency Injection?
The process of injecting dependent bean objects into target bean objects is called dependency injection.
1) Setter Injection : The IOC container will inject the dependent bean object into the target bean object by calling the
setter method.
2) Constructor Injection : The IOC container will inject the dependent bean object into the target bean object by
calling the target bean constructor.
3) Field Injection : The IOC contai...
What is the root application context in Spring MVC? How is it loaded?
In Spring MVC, the context loaded using ContextLoaderListener is called the "root" application context which belongs
to the whole application while the one initialized using DispatcherServlet is actually specific to that servlet.
Technically, Spring MVC allows multiple DispatcherServlet in a Spring MVC web application and so multiple such
contexts each specific for respective servlet but having the same root context may e
What are the four core API architectures that Kafka uses?
Following are the four core APIs that Kafka uses :
1) Producer API : In Apache Kafka, the Producer API allows an application to publish a stream of records to one or more Kafka topics.
2) Consumer API : In Apache Kafka, the consumer API allows an application to subscribe to one or more Kafka topics. It also enables the application to process streams of records generated about such topics.
3) Streams API : In Apache ...
What are the use cases of Kafka monitoring?
Following are the use cases of Apache Kafka monitoring :
1) Apache Kafka monitoring can keep track of system resources consumption such as memory, CPU, and disk utilization over time.
2) Apache Kafka monitoring is used to monitor threads and JVM usage. It relies on the Java garbage collector to free up memory, ensuring that it frequently runs, thereby guaranteeing that the Kafka cluster is more active.
3) It can be ...
Round duration - 60 Minutes
Round difficulty - Medium
This round primarily focused on questions related to Spring Boot and Hibernate. As I already had some projects in Java , I was familiar to both Spring and Hibernate - what are they used for , their basic understanding and all . So, this round also went preety well as I was able to answer most of the questions with little to no hints as far as possible.
How does Spring Boot works?
Spring Boot automatically configures your application based on the dependencies you have added to the project by using annotation. The entry point of the spring boot application is the class that contains @SpringBootApplication annotation and the main method.
Spring Boot automatically scans all the components included in the project by using @ComponentScan annotation.
What are the major differences between RequestMapping and GetMapping?
RequestMapping can be used with GET, POST, PUT, and many other request methods using the method attribute on the annotation. Whereas GetMapping is only an extension of RequestMapping, which helps you to improve clarity on requests.
Explain @RestController annotation in Sprint boot?
It is a combination of @Controller and @ResponseBody, used for creating a restful controller. It converts the response to JSON or XML. It ensures that data returned by each method will be written straight into the response body instead of returning a template.
What Are the Basic Annotations that Spring Boot Offers?
The primary annotations that Spring Boot offers reside in its "org.springframework.boot.autoconfigure" and its sub-packages. Here are a couple of basic ones:
@EnableAutoConfiguration – to make Spring Boot look for auto-configuration beans on its classpath and automatically apply them.
@SpringBootApplication – used to denote the main class of a Boot Application. This annotation combines @Configuration, @EnableAutoConfigur...
How do you create an immutable class in hibernate?
Immutable class in hibernate creation could be in the following way. If we are using the XML form of configuration,
then a class can be made immutable by markingmutable=false. The default value is true there which indicating that
the class was not created by default.
In the case of using annotations, immutable classes in hibernate can also be created by using @Immutable
annotation.
What is hibernate caching?
Hibernate caching is the strategy for improving the application performance by pooling objects in the cache so that
the queries are executed faster. Hibernate caching is particularly useful when fetching the same data that is executed
multiple times. Rather than hitting the database, we can just access the data from the cache. This results in reduced
throughput time of the application.
Types of Hibernate Caching
First Level...
Explain Query Cache
Hibernate framework provides an optional feature called cache region for the queries’ resultset. Additional configurations have to be done in code in order to enable this. The query cache is useful for those queries which are most frequently called with the same parameters. This increases the speed of the data retrieval and greatly improves performance for commonly repetitive queries.
This does not cache the state of ac...
Round duration - 30 Minutes
Round difficulty - Easy
This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my
role.
Why should we hire you ?
Tip 1 : The cross questioning can go intense some time, think before you speak.
Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.
Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round,
like what are the projects currently the company is investing, which team you are mentoring. How all is the ...
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
Virtusa Consulting Services interview questions for designations
I was interviewed in Jun 2021.
Round duration - 30 minutes
Round difficulty - Medium
Questions revolving around the Azure devops and azure.
How did you deploy in the IIS using azure devops, azure devops extension
How you setup the architecture in azure when client is moving to cloud from on-prem?
Tip 1 : Make sure azure environment is safe
Tip 2 : Use Cost efficient methods to reduce code
Round duration - 30 minutes
Round difficulty - Medium
Mainly on Azure, Terraform
How you deploy multiple environment script using terraform
Tip 1 : Use workspace
Tip 2 : use modules
Round duration - 15 minutes
Round difficulty - Easy
Mainly on CTC discussion
Basic questions about family background, are you comfortable in relocation, CTC
Tip 1 : Provide only genuine information
Tip 1 : Make sure basic and technical concepts are clear
Tip 2 : Have some real time project experience
Tip 3 : If you have less experience on certain topics like kubernetes, then clearly tell the interviewer that you have only basic knowledge, but willing to learn. This thing actually helped me in clearing the interview
Tip 1 : Make sure don't put false information in the resumes that is first key point.
Always be point to point.
Tip 2 : Add things like most challenging project and challenging situations you have faced because that thing generates the interest in the interviewer mind and you can drive the interview as per you want.
Get interview-ready with Top Virtusa Consulting Services Interview Questions
I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 3 interview rounds.
tJava, tJavaRow, and tJavaFlex are all components in Talend that allow for custom Java code to be executed within a job.
tJava is used to execute Java code within a job, and can be used to manipulate data or perform custom logic.
tJavaRow is similar to tJava, but is used specifically for manipulating data row by row.
tJavaFlex is a more advanced version of tJava that allows for more complex Java code to be executed within...
TMAP has three types of matching: exact, fuzzy, and partial. TUNITE is used for merging data from multiple sources.
TMAP has exact, fuzzy, and partial matching options for data mapping
Exact matching requires exact match of values in source and target
Fuzzy matching allows for some variation in values, such as spelling errors
Partial matching matches based on a percentage of similarity between values
TUNITE is used for merg...
I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.
tJava, tJavaFlex, and tJavaRow are components in Talend for Java programming.
tJava is used for writing custom Java code in Talend jobs.
tJavaFlex is used for writing complex Java code in Talend jobs.
tJavaRow is used for writing Java code to manipulate data in Talend jobs.
All three components require Java programming knowledge.
Examples: tJava can be used to perform calculations, tJavaFlex can be used to create custom fun
I applied via Naukri.com and was interviewed in Dec 2020. There were 5 interview rounds.
Synon file types, field contexts, screen types, array purpose and deletion in Synon
Synon file types include physical, logical, and display files
Field contexts in functions include input, output, and both
Types of fields in Synon include alphanumeric, numeric, and date
Types of screens in Synon include inquiry, maintenance, and report
Arrays in Synon are used to store multiple values of the same data type
To delete a single...
I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 3 interview rounds.
based on 92 reviews
Rating in categories
Senior Consultant
4k
salaries
| ₹8 L/yr - ₹30 L/yr |
Consultant
3.3k
salaries
| ₹6.1 L/yr - ₹21 L/yr |
Lead Consultant
3.3k
salaries
| ₹10.5 L/yr - ₹36 L/yr |
Software Engineer
3.2k
salaries
| ₹3.5 L/yr - ₹13 L/yr |
Associate Consultant
2.8k
salaries
| ₹4.6 L/yr - ₹15.4 L/yr |
Cognizant
TCS
Infosys
Accenture