Upload Button Icon Add office photos

Filter interviews by

DRA Global Interview Questions and Answers

Updated 22 Mar 2024

DRA Global Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Feb 2024.

Round 1 - Group Discussion 

About the underground station

Round 2 - Assignment 

Station manager responsibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Please select good experience person

Senior Operations Manager Interview Questions asked at other Companies

Q1. How do you align operational strategies with the company's overall goals?
View answer (1)

Interview questions from similar companies

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

(6 Questions)

  • Q1. What are some of the Design Patterns you have worked with?
  • Q2. What is your approach for a issue you came to know happened in Production.
  • Q3. If given a chance to lead a team will you take it up as a challenge of not how would you tackle it?
  • Q4. Are you able to work under pressure. How do you manage?
  • Q5. What do you understand by SOLID principle? Why do you think it is important.
  • Q6. Please solve the coding question provided ( a moderately difficult coding question provided). Help understand your approach and why you chose same. Explain edge caes if possible.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush Up Job related skills.
Be able to demonstrate through practical approach.
Keep your theoretical approach flexible and more inclined with positive response than bluffing.
Keep confidence at core of and have a good communication practice.
Adhere to Interview rules for example be available with 1 working editor for coding or technical rounds. Be professional in your appearance and always refrain from asking feedback in the interview itself.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Asking introduction and tools
  • Q2. Asking command and down Time

Interview Preparation Tips

Interview preparation tips for other job seekers - Finding a job can be challenging, but with the right approach, you can improve your chances. Here are some key tips for job seekers:

1. Optimize Your Resume & Cover Letter

Tailor your resume to each job by highlighting relevant skills and experience.

Use keywords from the job description to pass Applicant Tracking Systems (ATS).

Keep it concise (1-2 pages) and error-free.

Your cover letter should tell a compelling story about why you're a great fit.


2. Build & Leverage Your Network

Let friends, family, and former colleagues know you're job hunting.

Use LinkedIn to connect with professionals in your industry.

Attend networking events, career fairs, and industry meetups.


3. Use Multiple Job Search Strategies

Apply on company websites, job boards (LinkedIn, Indeed, Glassdoor), and recruitment agencies.

Reach out to hiring managers directly via LinkedIn or email.

Consider internships, freelance work, or contract jobs to gain experience.


4. Prepare for Interviews

Research the company and role thoroughly.

Practice common interview questions and prepare examples of your achievements.

Dress professionally and arrive early.

Follow up with a thank-you email after the interview.


5. Upskill & Stay Competitive

Take online courses or certifications relevant to your field.

Stay updated on industry trends.

Work on side projects or volunteer work to showcase your skills.


6. Stay Organized & Persistent

Track applications and follow up if you don’t hear back in a reasonable time.

Rejection is part of the process—keep applying and improving.

Set daily/weekly goals for job applications and networking.


Would you like help with a specific job search situation?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Introduce yourself
  • Q2. How will you handle disputes in the team?
  • Q3. Explain your projects
  • Q4. Why you want to work as Manager although your degree is in Electrical Engineering
  • Q5. Which operation do you think are costly in the Delhivery Last mile, First mile, Middle , Transportation etc ?
  • Q6. What you have managed in College?
Round 2 - One-on-one 

(6 Questions)

  • Q1. Introduce yourself
  • Q2. Explain your projects
  • Q3. Why you want to join Delhivery as a Manager although you are from Electrical Engineering department?
  • Q4. How will you unload vehicles? What factors will you consider while unloading?
  • Q5. Suppose you are managing a team of 20 people and 10 are absent what actions will you take ?
  • Q6. Any Questions you want to ask

Interview Preparation Tips

Topics to prepare for Delhivery Operations Manager interview:
  • Management
  • Supply chain management
  • Situation based questions
  • Logistics Management
  • Warehouse Management
Interview preparation tips for other job seekers - There were 2 interviews of about 20 minutes only so, one should have good communication and English speaking skills. Apart from it do research related to company before giving interview by the help of website and youtube videos.
Explain situation based questions strategically with logics.
Prepare for Supply chain management and logistics basics they might ask.
Be confident and pray to God.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(22 Questions)

  • Q1. API Gateway implementation
  • Ans. 

    API Gateway implementation is a centralized service that routes, manages, and secures API calls.

    • API Gateway acts as a single entry point for all API calls

    • It can handle authentication, rate limiting, caching, and request/response transformations

    • Examples include AWS API Gateway, Apigee, Kong

  • Answered by AI
  • Q2. Circuit breaker implementation
  • Ans. 

    Circuit breaker is a design pattern used to prevent system overload by temporarily stopping requests to a failing service.

    • Circuit breaker monitors requests to a service and opens when the service fails repeatedly.

    • It helps prevent cascading failures and allows the system to gracefully degrade.

    • Once the circuit breaker is open, it can periodically check if the service has recovered before allowing requests again.

  • Answered by AI
  • Q3. What is deadlock? How to avoid it?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Avoid circular wait by ensuring processes request resources in the same order.

    • Prevent hold and wait by requiring processes to request all needed resources at once.

    • Implement a timeout mechanism to break potential deadlocks.

    • Use resource allocation graphs to detect and prevent deadlocks.

    • ...

  • Answered by AI
  • Q4. Explain equals() method
  • Ans. 

    The equals() method is used to compare the contents of two objects for equality.

    • The equals() method is a method of the Object class in Java.

    • It is used to compare the contents of two objects for equality.

    • The default implementation of equals() in the Object class compares memory addresses, so it is often overridden in custom classes to compare content.

    • Example: String class overrides equals() method to compare the content

  • Answered by AI
  • Q5. How mongodb was integrated in your application?
  • Ans. 

    MongoDB was integrated in the application by using the official Java driver and configuring connection settings.

    • Used the official MongoDB Java driver to interact with the database

    • Configured connection settings such as host, port, database name, and authentication credentials

    • Implemented CRUD operations using MongoDB Java driver methods

    • Utilized MongoDB aggregation framework for complex queries

  • Answered by AI
  • Q6. What is hibernate?
  • Ans. 

    Hibernate is an open-source Java framework that simplifies the development of database interactions in Java applications.

    • Hibernate is an Object-Relational Mapping (ORM) tool that maps Java objects to database tables.

    • It provides a way to perform database operations using Java objects instead of writing SQL queries.

    • Hibernate handles the mapping of Java classes to database tables and vice versa, as well as the generation ...

  • Answered by AI
  • Q7. Runnable vs Callable interface
  • Ans. 

    Runnable is a functional interface with a single run() method, while Callable is a functional interface with a single call() method.

    • Runnable is used for tasks that do not return a result, while Callable is used for tasks that return a result.

    • Callable can throw checked exceptions, while Runnable cannot.

    • Callable returns a Future object, which can be used to retrieve the result of the computation.

    • Example: Runnable - execu...

  • Answered by AI
  • Q8. Which type of data is returned by Callable interface?
  • Ans. 

    The Callable interface in Java returns a Future object.

    • Callable interface returns a Future object which represents the result of a computation that may not be available yet.

    • The Future object can be used to retrieve the result of the computation, check if it is done, or cancel the computation.

    • Example: Callable<Integer> task = () -> { return 42; }

  • Answered by AI
  • Q9. HashMap internal working
  • Q10. Concurrent HashMap internal working
  • Q11. How to monitor health of your application?
  • Ans. 

    Monitor application health using metrics, logs, alerts, and performance monitoring tools.

    • Use monitoring tools like Prometheus, Grafana, or New Relic to track key metrics such as CPU usage, memory usage, response times, and error rates.

    • Implement logging to record important events and errors in your application. Use tools like ELK stack (Elasticsearch, Logstash, Kibana) for log analysis.

    • Set up alerts to notify you of any...

  • Answered by AI
  • Q12. How to call an API in a Microservice architecture?
  • Ans. 

    To call an API in a Microservice architecture, use HTTP requests or messaging protocols like gRPC.

    • Use HTTP requests to communicate between microservices

    • Implement RESTful APIs for easy integration

    • Leverage messaging protocols like gRPC for efficient communication

    • Consider using service discovery mechanisms for dynamic API calls

  • Answered by AI
  • Q13. Explain Profiles
  • Ans. 

    Profiles in Java are configurations that define the capabilities of a Java platform.

    • Profiles allow developers to target specific types of devices or applications.

    • They help in reducing the size of the Java runtime environment by including only the necessary APIs.

    • Examples include Java SE Embedded Profile for embedded devices and Java SE Compact Profile for resource-constrained environments.

  • Answered by AI
  • Q14. What is OpenFeign, and how is it used in microservices architecture?
  • Ans. 

    OpenFeign is a declarative web service client used to simplify the process of making HTTP requests in microservices architecture.

    • OpenFeign allows developers to define RESTful web services as interfaces and automatically generate the necessary implementation code.

    • It integrates seamlessly with Spring Cloud and other microservices frameworks to facilitate communication between services.

    • OpenFeign supports features like loa...

  • Answered by AI
  • Q15. What is the implementation process for service registry and discovery?
  • Ans. 

    Service registry and discovery involves registering services and allowing clients to discover and connect to them.

    • Implement a service registry where services can register themselves with metadata

    • Use a service discovery mechanism for clients to find and connect to services

    • Implement health checks to ensure services are available and healthy

    • Use a load balancer to distribute traffic among multiple instances of a service

  • Answered by AI
  • Q16. What are Spring boot actuators?
  • Ans. 

    Spring Boot Actuators are built-in tools that provide insight into the running application.

    • Actuators expose various endpoints to monitor and manage the application.

    • They can be used to check health, metrics, environment details, and more.

    • Examples include /actuator/health, /actuator/metrics, and /actuator/env.

  • Answered by AI
  • Q17. Synchronous vs Asynchronous communication
  • Ans. 

    Synchronous communication is blocking, while asynchronous communication is non-blocking.

    • Synchronous communication waits for a response before continuing, while asynchronous communication does not wait.

    • Examples of synchronous communication include traditional function calls, while examples of asynchronous communication include callbacks and promises.

    • Synchronous communication can lead to performance issues if there are d...

  • Answered by AI
  • Q18. Explain Synchronized keyword
  • Ans. 

    Synchronized keyword is used in Java to control access to shared resources by multiple threads.

    • Synchronized keyword can be applied to methods or code blocks to ensure only one thread can access the synchronized code at a time.

    • It prevents race conditions and ensures thread safety by creating a lock on the object or class.

    • Example: synchronized void myMethod() { // synchronized code block }

  • Answered by AI
  • Q19. What are the consequences of excessively using synchronized blocks and methods in Java?
  • Ans. 

    Excessive use of synchronized blocks and methods in Java can lead to performance issues and potential deadlocks.

    • Decreased performance due to increased contention for locks

    • Potential deadlocks if multiple threads are waiting for each other to release locks

    • Increased complexity and difficulty in debugging and maintaining code

    • Use synchronized sparingly and consider alternatives like ConcurrentHashMap or Lock interface

  • Answered by AI
  • Q20. How can you determine the number of threads needed for your application?
  • Ans. 

    The number of threads needed for an application can be determined based on factors like the type of tasks, hardware resources, and performance requirements.

    • Consider the type of tasks your application needs to perform - CPU-bound tasks may benefit from more threads, while I/O-bound tasks may not.

    • Take into account the hardware resources available - more threads may be beneficial on a multi-core processor compared to a si...

  • Answered by AI
  • Q21. Explain Executor framework
  • Ans. 

    Executor framework is a framework in Java that provides a way to manage and execute tasks asynchronously.

    • Allows for managing thread execution in a more efficient way

    • Provides a way to decouple task submission from task execution

    • Supports various types of executors like ThreadPoolExecutor and ScheduledExecutorService

    • Helps in handling tasks concurrently and asynchronously

  • Answered by AI
  • Q22. Explain BlockingQueue
  • Ans. 

    BlockingQueue is an interface in Java that represents a queue which supports operations that wait for the queue to become non-empty when retrieving an element and wait for space to become available in the queue when adding an element.

    • BlockingQueue is part of the java.util.concurrent package.

    • It is used for implementing producer-consumer scenarios where multiple threads are involved.

    • Methods like put() and take() are used...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why did you leave your previous company?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or downsizing

    • Relocation to a new area

  • Answered by AI
  • Q2. Other basic questions asked regarding the relevant skills and technologies I have worked with.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

English, Quant & Reasoning- 3 section, each section 15 que, Total 45 minutes & 45 questions, cut off for each section

Round 2 - Technical 

(2 Questions)

  • Q1. Java What is JVM,JRE,JDK? what is the difference between class and instance variable in java? what is string Pool? write a code in java(prefer a good standard question) Web development if you have inter...
  • Ans. 

    To build a web application, I would use a combination of front-end technologies like HTML, CSS, and JavaScript, along with back-end technologies like Node.js and MongoDB.

    • Use HTML for structuring the content of the web pages

    • Use CSS for styling the web pages and making them visually appealing

    • Use JavaScript for adding interactivity to the web pages and handling user input

    • Use Node.js for server-side scripting and handling ...

  • Answered by AI
  • Q2. If you have azure certification what is azure, what is Azure Blob Storage, What is ARM, what is horizontal Scaling?
  • Ans. 

    Azure is a cloud computing platform by Microsoft. Azure Blob Storage is a service for storing large amounts of unstructured data. ARM stands for Azure Resource Manager, used for managing resources in Azure. Horizontal scaling is increasing the number of instances of a service to distribute load.

    • Azure is a cloud computing platform by Microsoft

    • Azure Blob Storage is a service for storing large amounts of unstructured data

    • ...

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Why cse? explain a project (they might ask about a project in your resume)
  • Q2. How you solved the problems that you have faced while working on projects?
  • Ans. 

    I approach problems by breaking them down into smaller parts, analyzing root causes, seeking input from team members, and implementing solutions systematically.

    • Identify the root cause of the problem

    • Break down the problem into smaller parts

    • Seek input from team members for different perspectives

    • Implement solutions systematically

    • Learn from the experience to prevent similar issues in the future

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Introduction Family Background Do you have any placement/internship offers in your hand? if so, why Ericsson At last, they will tell you about stipend, role
  • Ans. 

    Yes, I have internship offers from Ericsson due to their reputation for innovation and cutting-edge technology.

    • I have received internship offers from Ericsson because of their reputation for innovation and cutting-edge technology.

    • I am excited about the opportunity to work with a global leader in telecommunications.

    • I believe that interning at Ericsson will provide me with valuable experience and skills that will benefit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well about the areas you have mentioned in your resume, and cse fundamentals mainly java/python, oops, ai/ml

As it is a networking company, concentrate on computer networks(they might ask / might not)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic quant and reasoning questions
Selenium MCQ
Java programs with MCQ

Round 2 - Technical 

(23 Questions)

  • Q1. Tell me about yourself
  • Q2. Where you initialise driver
  • Ans. 

    The driver is typically initialized in the setup method of a test automation framework.

    • Driver initialization is usually done in a setup method before test execution.

    • Commonly used methods for driver initialization include WebDriverManager, System.setProperty, and driver instantiation.

    • Example: WebDriverManager.chromedriver().setup();

  • Answered by AI
  • Q3. Driver is static or non static
  • Ans. 

    Driver can be both static and non-static depending on the context of its usage.

    • Driver class can be static if it is used to initiate the WebDriver instance in a test automation framework.

    • Driver class can be non-static if it is used as an instance variable within a test class.

    • Static driver can be accessed directly without creating an object of the class.

    • Non-static driver requires an object of the class to be created befo

  • Answered by AI
  • Q4. Difference between static and non static
  • Ans. 

    Static variables belong to the class itself, while non-static variables belong to instances of the class.

    • Static variables are shared among all instances of a class

    • Non-static variables are unique to each instance of a class

    • Static variables are initialized only once, at the start of the program

    • Non-static variables are initialized separately for each instance of the class

  • Answered by AI
  • Q5. Disadvantages of static and non static
  • Ans. 

    Static and non-static have their own disadvantages in QA automation testing.

    • Static methods cannot be overridden or inherited, making it difficult to create flexible test cases.

    • Non-static methods require an instance of the class to be created, which can lead to increased memory usage.

    • Static methods can lead to tight coupling between classes, making it harder to maintain and update the code.

    • Non-static methods may have de...

  • Answered by AI
  • Q6. Parallel execution in TestNG
  • Ans. 

    TestNG allows parallel execution of test cases to save time and improve efficiency.

    • TestNG provides the 'parallel' attribute in the testng.xml file to specify the level of parallelism for test execution.

    • Parallel execution can be achieved at the test level, class level, method level, or suite level.

    • TestNG also supports parallel execution of tests across multiple classes or suites using the 'parallel' attribute in the sui...

  • Answered by AI
  • Q7. Write the code for Parallel testing in TestNG
  • Ans. 

    Parallel testing in TestNG allows running tests concurrently for faster execution.

    • Use 'parallel' attribute in testng.xml file to specify parallel execution mode.

    • Set 'parallel' attribute to 'methods', 'classes', or 'tests' based on the level of parallelism needed.

    • Example: <suite name='MySuite' parallel='tests'>

    • Use 'thread-count' attribute to specify the number of threads to use for parallel execution.

  • Answered by AI
  • Q8. Difference between parallel methods and parallel tests
  • Ans. 

    Parallel methods run multiple methods concurrently within a single test, while parallel tests run multiple tests concurrently.

    • Parallel methods execute multiple methods within a single test class concurrently.

    • Parallel tests execute multiple test classes concurrently.

    • Parallel methods are useful for speeding up the execution of a single test, while parallel tests are useful for running multiple tests faster.

    • Example: Runni...

  • Answered by AI
  • Q9. Upload file using rest assured
  • Ans. 

    Use Rest Assured to upload a file

    • Use the given file path to create a File object

    • Use MultiPartSpecBuilder to build the request with the file

    • Send the request using Rest Assured's given(), when(), and post() methods

  • Answered by AI
  • Q10. Postman basic questions
  • Q11. Parameter for post method in postman
  • Ans. 

    The parameter for a POST method in Postman is typically sent in the request body.

    • Parameters are sent in the request body in key-value pairs

    • Parameters can be sent as form-data, x-www-form-urlencoded, or raw JSON

    • Example: {"key": "value"}

  • Answered by AI
  • Q12. BDD Framework cucumber
  • Q13. Cucumber execution process
  • Q14. How cucumber know step defination file placed
  • Ans. 

    Cucumber knows the step definition file based on the annotations provided in the feature files.

    • Cucumber uses annotations like @Given, @When, @Then to map steps in feature files to corresponding step definition methods.

    • Step definition files are typically placed in a separate package or directory within the project structure.

    • Cucumber scans the project directory for step definition files based on the package structure and

  • Answered by AI
  • Q15. Parameters used in cucumber
  • Ans. 

    Parameters used in cucumber are used to pass values to the step definitions in feature files.

    • Parameters are defined in feature files using < > syntax

    • Parameters can be passed to step definitions using Regular Expressions

    • Parameters can be used to make scenarios more reusable and dynamic

  • Answered by AI
  • Q16. Datatable in cucumber
  • Ans. 

    Datatable in Cucumber is used to pass multiple sets of data to a step definition in a scenario.

    • Datatables are defined using pipes (|) to separate values

    • Each row in the datatable represents a set of data passed to the step definition

    • Datatables can be used for parameterization and data-driven testing

  • Answered by AI
  • Q17. Have u created the testplan document when porject was started
  • Ans. 

    Yes, I have created the test plan document at the start of the project.

    • Yes, I always create a test plan document at the beginning of a project to outline the testing approach and strategy.

    • The test plan document includes details on scope, objectives, resources, schedule, and test cases.

    • It helps in ensuring that all stakeholders are aligned on the testing process and expectations.

    • For example, in my previous project, I cr...

  • Answered by AI
  • Q18. Testing cycle when project was on initial level
  • Ans. 

    During the initial testing cycle of a project, focus is on establishing test cases, setting up test environments, and identifying potential issues.

    • Creating test cases based on requirements

    • Setting up test environments

    • Identifying potential issues and risks

    • Executing test cases and reporting defects

    • Collaborating with developers to resolve issues

  • Answered by AI
  • Q19. Risk management and risk based testing
  • Q20. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 13 ?? Not in 12345678
  • Ans. 

    Fibonacci sequence is a mathematical pattern where each number is the sum of the two preceding ones.

    • Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones.

    • The sequence starts with 1, 2, then each subsequent number is the sum of the two previous numbers (1+2=3, 2+3=5, 3+5=8, and so on).

    • This sequence is used in estimating because it reflects natural growth patterns found in natur

  • Answered by AI
  • Q21. What is testing matrix and automation ROI
  • Ans. 

    Testing matrix is a tool used to track test coverage and automation ROI is the return on investment from implementing automation testing.

    • Testing matrix is a visual representation of test cases, test scenarios, and their coverage across different platforms, browsers, devices, etc.

    • Automation ROI is the measure of the benefits gained from automation testing compared to the costs incurred in implementing and maintaining th...

  • Answered by AI
  • Q22. Cicd tool
  • Q23. Handle team ?
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Bachelor of Commerce degree with a GPA of 6.79 and an accompanying resume.

Round 2 - Technical 

(5 Questions)

  • Q1. Location send Hyderabad komplly
  • Q2. Hardwark honest project
  • Q3. First introducedy
  • Q4. Salarypackge and times
  • Q5. Respect to office staff

Interview Preparation Tips

Interview preparation tips for other job seekers - Find a job that I would like.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is ipconf.pl?
  • Q2. What is the difference between scan vip & node vip?
Round 2 - One-on-one 

(3 Questions)

  • Q1. What is quarantile in Exadata?
  • Q2. How to identify the master switch in Exadata?
  • Q3. What is spine switch & leaf switch in exadata?
Round 3 - Case Study 

One of the node of a 3 node cluster is down. Explain the step by step process to troubleshoot the issue.

Round 4 - Coding Test 

Shell script & terraform code output was asked.

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Zoho’s Hiring Process is Completely Biased
Zoho gives priority to Tamil-speaking candidates, and only if there are extra vacancies do they consider people from other states. I cleared all five coding problems, optimized them as requested, and explained my approach clearly. The technical live coding interviewer, Seethu Maria Johnson, even told me that HR would contact me. But instead, I got a rejection email without any explanation.

It feels like Zoho already decides who they want to hire based on regional preference rather than talent. If you're from outside Tamil Nadu, don’t waste your time here—chances are, you won’t even be considered seriously. They show clear partiality in hiring, which is unfair to skilled candidates from other states.

To make things worse, I asked for feedback, but HR (Carmila & Veena C S & Supriya M) simply said "we cannot share the feedback." So, not only is the hiring process biased, but there’s also zero transparency.

Even after Seethu Maria Johnson told me HR would contact me, they just ignored my performance and rejected me without reason.

Final Thought
Zoho might be a good company for Tamil people, but for others, it’s just disappointing and unfair. If you’re from another state, don’t waste your time here—your performance won’t matter, only your region and language will.

DRA Global Interview FAQs

How many rounds are there in DRA Global interview?
DRA Global interview process usually has 2 rounds. The most common rounds in the DRA Global interview process are Group Discussion and Assignment.

Tell us how to improve this page.

DRA Global Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Nagarro Interview Questions
4.0
 • 777 Interviews
Zoho Interview Questions
4.3
 • 514 Interviews
IQVIA Interview Questions
3.9
 • 461 Interviews
Delhivery Interview Questions
3.9
 • 453 Interviews
Siemens Interview Questions
4.1
 • 429 Interviews
Ericsson Interview Questions
4.1
 • 407 Interviews
View all

DRA Global Reviews and Ratings

based on 19 reviews

4.0/5

Rating in categories

4.1

Skill development

3.5

Work-life balance

4.0

Salary

3.8

Job security

4.1

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 19 Reviews and Ratings
Mechanical Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹4.7 L/yr

Site Engineer
4 salaries
unlock blur

₹0.2 L/yr - ₹3.6 L/yr

Surveyor
4 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Civil Site Engineer
4 salaries
unlock blur

₹0.2 L/yr - ₹1.8 L/yr

Senior Engineer
3 salaries
unlock blur

₹5.1 L/yr - ₹7.6 L/yr

Explore more salaries
Compare DRA Global with

TCS

3.7
Compare

Capgemini

3.7
Compare

BYJU'S

3.1
Compare

Ericsson

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