Associate Consultant
1000+ Associate Consultant Interview Questions and Answers

Asked in Fintellix Solutions

Q. Write a SQL query to create a database with proper fields.
Create a SQL query to create a database with proper fields
Use CREATE DATABASE statement to create a new database
Specify the database name after CREATE DATABASE
Define the fields and their data types using CREATE TABLE statement

Asked in Allstate

Q. Derive the time complexity expression for the merge sort algorithm.
Merge sort is a divide-and-conquer algorithm that recursively divides the array into halves and merges them in sorted order.
Merge sort has a time complexity of O(n log n), where n is the number of elements in the array.
The algorithm divides the array into halves until each subarray has only one element.
Then, it merges the subarrays in sorted order, resulting in a sorted array.
The merging process takes O(n) time for each level of recursion.
Since the array is divided into halve...read more
Asked in Global Green Consultants

Q. What is the maximum capacity chiller plant you have experience installing, testing, and pre-commissioning? (Specify TR)
I have experience with installing, testing, and pre-commissioning chiller plants up to 2700TR capacity for each project.
Installed chiller plants with a maximum capacity of 2700TR for multiple projects
Conducted testing and pre-commissioning activities for the chiller plants
Ensured proper functioning and efficiency of the chiller plants before commissioning
Handled projects involving large-scale chiller plant installations

Asked in Capgemini

Q. What is cicd? Explain cicd pipeline in jenkins?
CI/CD stands for Continuous Integration/Continuous Deployment. It is a software development practice that aims to automate the building, testing, and deployment of code changes.
CI/CD pipeline in Jenkins is a series of steps that automate the software delivery process.
It starts with the code being checked into a version control system like Git.
Jenkins then pulls the code and builds it, running automated tests to ensure it is working correctly.
If the tests pass, Jenkins deploys...read more
Asked in Techsol Life Sciences

Q. What is your self-introduction, and what experience do you have with SQL queries?
I am a detail-oriented individual with experience in writing complex SQL queries for data analysis and reporting.
Proficient in writing SQL queries to extract, manipulate, and analyze data from databases
Experience in joining multiple tables, filtering data, and creating views and stored procedures
Familiar with functions, subqueries, and optimizing query performance
Used SQL for generating reports and conducting data analysis in previous projects

Asked in Capgemini

Q. In the FAS flow, what data elements are used in the Simulator for Chip, Ecommerce, and Magstripe?
The data elements used in FAS flow Simulator for Chip, Ecommerce and Magstripe are...
For Chip: Cardholder Verification Method (CVM), Terminal Verification Results (TVR), and Application Interchange Profile (AIP)
For Ecommerce: Card Verification Value (CVV), Address Verification Service (AVS), and Payment Card Industry Data Security Standard (PCI DSS)
For Magstripe: Track 1 and Track 2 data, Card Verification Value (CVV), and Magnetic Stripe Data (MSD)
Associate Consultant Jobs




Asked in Oracle

Q. Remove the duplicate elements in an array.
Remove duplicate elements in an array.
Create a new empty array.
Loop through the original array and check if the element already exists in the new array.
If it doesn't exist, add it to the new array.
Return the new array without duplicates.

Asked in GlobalLogic

Q. what is Interface and Java 8 feature in Inter face?
An interface is a collection of abstract methods. Java 8 introduced default and static methods in interfaces.
Interface is a blueprint for classes to implement its methods
Java 8 introduced default methods which provide a default implementation for methods in an interface
Static methods can also be defined in interfaces
Example: interface MyInterface { void method1(); default void method2() { //default implementation } static void method3() { //static implementation }}
Share interview questions and help millions of jobseekers 🌟

Asked in Birlasoft

Q. Why is String immutable?
String is immutable because it cannot be changed once created.
Immutable objects are safer to use in multi-threaded environments.
String pool in Java is possible because of immutability.
StringBuffer and StringBuilder are mutable alternatives to String.

Asked in Hoonartek

Q. Difference between DELETE and TRUNCATE statement & DROP and TRUNCATE?
DELETE removes specific rows while TRUNCATE removes all rows. DROP deletes the entire table while TRUNCATE only removes data.
DELETE is a DML command while TRUNCATE is a DDL command.
DELETE can be rolled back while TRUNCATE cannot be rolled back.
DELETE is slower than TRUNCATE.
DROP deletes the entire table and its structure while TRUNCATE only removes data.
TRUNCATE resets the identity of the table while DELETE does not.
Examples: DELETE FROM table_name WHERE condition; TRUNCATE T...read more

Asked in Allstate

Q. Estimate the number of trees in Chennai.
Estimating the number of trees in Chennai is a complex task due to the city's size and diverse landscapes.
Chennai is a large city with a mix of urban, suburban, and rural areas, each with varying tree densities.
To estimate the number of trees, we can consider factors such as land area, tree cover percentage, and population density.
Satellite imagery and remote sensing techniques can be used to analyze tree cover in different regions of Chennai.
Local government records and surv...read more

Asked in Capgemini

Q. Have you worked on load balancers?
Yes, I have worked on load balancer.
I have experience in configuring and managing load balancers such as F5 and HAProxy.
I have worked on load balancing algorithms such as round-robin, least connections, and IP hash.
I have also implemented SSL offloading and health checks on load balancers.
One example of my work is setting up a load balancer for a web application to distribute traffic across multiple servers for high availability and scalability.

Asked in Infosys

Q. How do you work with Oracle and WMS software, and can you describe the working process in detail?
Oracle is a database management system while WMS is a warehouse management system. They can be integrated to manage inventory and logistics.
Oracle is used to store and manage data related to inventory, orders, and shipments.
WMS is used to manage the movement and storage of inventory within a warehouse.
Integrating Oracle and WMS allows for real-time inventory tracking and efficient order fulfillment.
Oracle can provide data to WMS on inventory levels and order details, while WM...read more

Asked in Moksa Technologies

Q. What troubleshooting steps would you take if a user is unable to log in?
I would check if the user's credentials are correct and if the login server is functioning properly.
Verify if the user is entering the correct username and password
Check if the user's account is active and not locked
Ensure that the login server is up and running
Check if there are any network connectivity issues
Reset the user's password if necessary

Asked in KPMG Global Services

Q. Security Configuration Audit for networking devices
Security Configuration Audit ensures networking devices are configured securely.
Review device configurations against industry best practices
Check for default or weak passwords
Ensure proper access controls are in place
Verify that all necessary security features are enabled
Perform regular audits to maintain security posture

Asked in Deloitte

Q. What remediation activities should be performed if a user is onboarded into a system prior to receiving approval?
Remediation involves steps to rectify unauthorized user access before approval.
Immediate suspension of the user's access to the system until approval is obtained.
Conduct a thorough audit of the user's activities during the unauthorized access period.
Notify relevant stakeholders (e.g., IT security, compliance) about the incident.
Implement additional training for onboarding processes to prevent future occurrences.
Review and update the approval workflow to ensure timely processi...read more

Asked in FinMechanics

Q. You are given two cords that burn in exactly one hour, but not at a uniform rate. How should you light the cords to determine exactly 15 minutes?
Light one end of the first cord and both ends of the second cord. When the first cord burns out (30 minutes), light the other end of the second cord.
Light one end of the first cord and both ends of the second cord simultaneously.
When the first cord burns out (30 minutes), light the other end of the second cord.
The second cord will now burn out in 15 minutes, as it has 30 minutes of burn time left.

Asked in BCG

Q. Cement manufacturer A wants to acquire cement manufacturer B. Does it make sense?
It depends on various factors such as market share, synergy, cost, and competition.
Consider market share of both companies
Analyze potential synergy and cost savings
Evaluate competition and regulatory hurdles
Assess financial health of both companies
Look at long-term strategic goals

Asked in Indus Insights

Q. What will be the annual revenue for the Taj Mahal?
I'm sorry, I don't have access to the necessary data to provide an accurate answer.
No data available for revenue of TajMahal
Unable to provide an estimate without more information

Asked in Infosys

Q. What you know about quality assurance. Can you explain Agile methodology with day to day example. 3-4 scenario based questions
Quality assurance ensures that products meet customer expectations and standards. Agile methodology is a flexible approach to project management.
Quality assurance involves testing and evaluating products to ensure they meet customer expectations and industry standards.
Agile methodology is a flexible approach to project management that emphasizes collaboration, adaptability, and continuous improvement.
Example of Agile methodology: A software development team uses daily stand-u...read more

Asked in Infosys

Q. which cloud used in your application and explain the services, EC2, S3 VPC Route53, ALB, EBS
Our application uses Amazon Web Services (AWS) cloud platform.
EC2 (Elastic Compute Cloud) is used for scalable computing capacity.
S3 (Simple Storage Service) is used for object storage and retrieval.
VPC (Virtual Private Cloud) is used for creating a private network within AWS.
Route53 is used for DNS management and routing traffic to AWS resources.
ALB (Application Load Balancer) is used for distributing incoming traffic across multiple targets.
EBS (Elastic Block Store) is used...read more

Asked in Fintellix Solutions

Q. What is union? What is intersection?
Union and intersection are set operations in mathematics.
Union of two sets includes all unique elements from both sets
Intersection of two sets includes only elements that are common to both sets
Example: Set A = {1, 2, 3} and Set B = {3, 4, 5}, Union of A and B = {1, 2, 3, 4, 5}, Intersection of A and B = {3}

Asked in Orbees Medical

Q. Guesstimate: How many people in Delhi use the Royal Enfield bike rental service?
Guesstimate the number of people in Delhi using the Royal Enfield bike rental service.
Estimate the total population of Delhi
Determine the percentage of people who use bikes as their primary mode of transportation
Estimate the percentage of bike users who prefer Royal Enfield
Consider the popularity and availability of bike rental services in Delhi
Factor in the affordability and convenience of the Royal Enfield rental service
Consider any available market research or data on bike...read more

Asked in Oracle Financial Services Software

Q. How do you use the JOIN operation on tables? Give an example.
JOIN operation is used to combine rows from two or more tables based on a related column between them.
JOIN can be used with different types like INNER, LEFT, RIGHT, FULL OUTER, etc.
Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;
JOIN can be used to fetch data from multiple tables in a single query.

Asked in Infosys

Q. How would you analyze Porter's Five Forces with respect to your favorite field?
Porter's 5 forces analysis in the technology industry
Threat of new entrants: Consider the ease of entry for new tech companies, barriers to entry like high capital requirements
Bargaining power of suppliers: Evaluate the power of suppliers of key components like semiconductors or software
Bargaining power of buyers: Analyze the power of buyers in the tech industry, such as large corporations negotiating prices with software providers
Threat of substitutes: Look at potential subs...read more

Asked in Cognilytics

Q. How would you develop an analytical solution to rank different locations in Kolkata based on their favorability for opening a new sports shop?
Analytical solution to rank locations in Kolkata for opening a new sports shop
Analyze the demographics of each location to determine the target market for the sports shop
Evaluate the proximity of each location to sports facilities and stadiums
Consider the competition in each location and assess the market saturation
Assess the accessibility and visibility of each location for potential customers
Analyze the economic factors and purchasing power of residents in each location
Cons...read more

Asked in Moksa Technologies

Q. What are the layers in genesys ,how to login in CME
Genesys has multiple layers and CME login requires specific credentials.
Genesys has three main layers: Presentation Layer, Business Layer, and Data Layer.
CME login requires a username and password provided by the system administrator.
The CME login page can be accessed through a web browser.
The CME login credentials are used to access the Configuration Manager and make changes to the Genesys system.

Asked in Capgemini

Q. Write basic programs using the language you mentioned in your resume.
Basic programming examples demonstrate fundamental concepts in coding, such as loops, conditionals, and data structures.
1. Hello World Program: A simple program that prints 'Hello, World!' to the console.
2. Factorial Calculation: Using recursion to calculate the factorial of a number.
3. Array Sorting: Implementing bubble sort to sort an array of integers.
4. Fibonacci Series: Generating the Fibonacci sequence using iteration.
5. Basic Calculator: A program that performs additio...read more
Asked in Insta Global Source

Q. What are the common causes of query slowness and deadlock issues?
Common causes of query slowness and deadlock issues include inefficient queries, lack of indexes, locking conflicts, and resource contention.
Inefficient queries with missing or incorrect joins or filters
Lack of appropriate indexes on tables leading to full table scans
Locking conflicts when multiple transactions try to access the same resource simultaneously
Resource contention due to high server load or limited hardware resources

Asked in Capgemini

Q. Which framework is used for automation testing? What is pytest framework? What is 200 response status?
pytest is a Python testing framework used for automation testing. 200 response status indicates a successful HTTP request.
pytest is a popular Python testing framework used for automation testing
It allows for easy test creation and execution
pytest can be integrated with other testing tools such as Selenium
200 response status is a HTTP status code indicating a successful request
It is commonly used in API testing to ensure that the request was successful
Interview Questions of Similar Designations
Interview Experiences of Popular Companies





Top Interview Questions for Associate Consultant Related Skills



Reviews
Interviews
Salaries
Users

