Upload Button Icon Add office photos

Filter interviews by

Taj Eduglobe Interview Questions and Answers

Updated 16 Sep 2022

Taj Eduglobe Interview Experiences

2 interviews found

Counsellor cum operation Interview Questions & Answers

user image Anonymous

posted on 29 Jun 2022

I applied via Shine and was interviewed in May 2022. There were 2 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 - HR 

(1 Question)

  • Q1. How to Pamper 2 yrs child

Interview Preparation Tips

Topics to prepare for Taj Eduglobe Counsellor cum operation interview:
  • English Speaking
Interview preparation tips for other job seekers - Don't get nervous & be confident, try to answer all questions

FNB Associate Interview Questions & Answers

user image LOKESH SHAH

posted on 16 Sep 2022

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Case Study 

What will you do if the customer at the restaurant get's angry if he doesn't get's his/her taste in the food

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Where do you se yourself after 5 year

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good just free to say and thik before you speak

FNB Associate Interview Questions asked at other Companies

Q1. Difference between single malt and blend
View answer (1)

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(14 Questions)

  • Q1. Queries on joins using inner join, left join, right join, outer join
  • Q2. What are the definitions of case and decode, what are the differences between them, and can you explain the logic for each?
  • Ans. 

    Case and decode are conditional expressions in PL/SQL used for data manipulation.

    • CASE is used for conditional logic in SQL statements, while DECODE is used for conditional logic in SELECT statements.

    • CASE is more flexible and can handle multiple conditions, while DECODE is limited to one condition.

    • CASE can be used in both SQL and PL/SQL, while DECODE is specific to SQL.

    • Example of CASE: SELECT CASE WHEN condition1 THEN r...

  • Answered by AI
  • Q3. What are the primary key and foreign key in database design, and can you provide examples of each?
  • Ans. 

    Primary key uniquely identifies each record in a table, while foreign key establishes a link between two tables.

    • Primary key ensures uniqueness and cannot have null values

    • Foreign key establishes a relationship between tables based on the primary key of another table

    • Example of primary key: EmployeeID in an Employee table

    • Example of foreign key: DepartmentID in an Employee table linking to DepartmentID in a Department tabl

  • Answered by AI
  • Q4. What are the differences between Rank and Dense Rank in SQL?
  • Ans. 

    Rank assigns unique ranks to each distinct row, while Dense Rank assigns consecutive ranks without gaps.

    • Rank may have gaps in the ranking sequence, while Dense Rank does not.

    • Rank assigns the same rank to rows with the same values, while Dense Rank assigns different ranks.

    • Rank function is non-consecutive, while Dense Rank function is consecutive.

  • Answered by AI
  • Q5. What is the difference between procedures and functions?
  • Ans. 

    Procedures are used to perform an action, while functions return a value.

    • Procedures do not return a value, while functions do.

    • Functions can be called from SQL queries, while procedures cannot.

    • Functions must return a value, while procedures do not necessarily have to.

  • Answered by AI
  • Q6. Is it possible to use a package body without a package specification?
  • Ans. 

    No, a package body cannot be used without a package specification.

    • A package body must always be associated with a package specification.

    • The package specification defines the public interface of the package, while the package body contains the implementation details.

    • Attempting to use a package body without a corresponding package specification will result in compilation errors.

  • Answered by AI
  • Q7. What is a SQL query that can be used to find duplicate values in a database?
  • Ans. 

    Use a SQL query with GROUP BY and HAVING clause to find duplicate values in a database.

    • Use GROUP BY clause to group the values that are duplicated.

    • Use HAVING clause to filter out the groups that have more than one occurrence.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1;

  • Answered by AI
  • Q8. Queries using group by and having clause
  • Ans. 

    Group by and having clause are used together to filter groups based on specified conditions.

    • Group by clause is used to group rows that have the same values into summary rows.

    • Having clause is used to filter groups based on specified conditions.

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 5000;

  • Answered by AI
  • Q9. What are the definitions of the Substr and Instr functions?
  • Ans. 

    Substr function extracts a substring from a string, while Instr function returns the position of a substring within a string.

    • Substr function syntax: SUBSTR(string, start_position, length)

    • Example: SUBSTR('Hello World', 7, 5) will return 'World'

    • Instr function syntax: INSTR(string, substring)

    • Example: INSTR('Hello World', 'World') will return 7

  • Answered by AI
  • Q10. What is the process for writing a SQL query that includes a subquery?
  • Ans. 

    Writing a SQL query with a subquery involves nesting one query inside another to retrieve specific data.

    • Start by writing the main query that will retrieve the primary data

    • Identify the criteria for the subquery to filter the results

    • Enclose the subquery within parentheses and use it in the WHERE or FROM clause of the main query

    • Ensure that the subquery returns a single value or a single column result

  • Answered by AI
  • Q11. What is the difference between char, varchar, and varchar2 data types?
  • Ans. 

    Char is fixed length, varchar is variable length with max 4000 bytes, varchar2 is variable length with max 32767 bytes.

    • Char is fixed length and always right-padded with spaces, while varchar and varchar2 are variable length.

    • Varchar can store up to 4000 bytes of data, while varchar2 can store up to 32767 bytes.

    • Char is less efficient in terms of storage compared to varchar and varchar2.

  • Answered by AI
  • Q12. Queries using Trunc and round
  • Q13. Is it possible to combine two tables with differing data and columns without utilizing joins?
  • Ans. 

    No, it is not possible to combine two tables with differing data and columns without utilizing joins.

    • Joins are necessary to combine tables based on a common column or key.

    • Different data and columns require a join to match and merge the data properly.

    • Examples of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • Answered by AI
  • Q14. Is it possible to update data in a view?
  • Ans. 

    Yes, it is possible to update data in a view using INSTEAD OF triggers.

    • Views are virtual tables that display data from one or more tables.

    • By using INSTEAD OF triggers, you can update data in a view by specifying the logic to handle the update operation.

    • The trigger intercepts the update operation on the view and executes the specified logic to update the underlying tables.

    • For example, you can create an INSTEAD OF trigge...

  • Answered by AI
Round 2 - Behavioral 

(6 Questions)

  • Q1. Can you describe yourself and provide details about your project, including the brief questions that were asked about it?
  • Q2. Why TCS?
  • Ans. 

    TCS is a global IT services company known for its innovative solutions and commitment to employee growth.

    • TCS has a strong reputation in the IT industry for delivering high-quality services.

    • TCS offers opportunities for professional growth and development through training programs and career advancement.

    • TCS has a diverse and inclusive work culture that values teamwork and collaboration.

  • Answered by AI
  • Q3. What is a dynamic cursor in database management?
  • Ans. 

    A dynamic cursor in database management allows for the execution of different SQL queries at runtime.

    • Dynamic cursors are used when the SQL query to be executed is not known until runtime.

    • They allow for flexibility in querying the database based on user input or other conditions.

    • Dynamic cursors can be used to handle varying result sets or conditions in a more efficient manner.

    • Example: Using a dynamic cursor to search fo...

  • Answered by AI
  • Q4. Did you perform performance tuning, and if so, what steps did you take?
  • Ans. 

    Yes, I have performed performance tuning by identifying bottlenecks and optimizing queries.

    • Identified slow queries using tools like SQL Trace, Explain Plan, and AWR reports.

    • Optimized queries by adding indexes, rewriting SQL statements, and reducing unnecessary data retrieval.

    • Tuned PL/SQL code by using bulk processing, minimizing context switches, and optimizing loops.

    • Utilized database features like partitioning and mat

  • Answered by AI
  • Q5. What is the definition of a package, and is it possible to use a package body without a package specification?
  • Ans. 

    A package in PL/SQL is a collection of related procedures, functions, variables, and other constructs.

    • A package consists of two parts: package specification and package body.

    • The package specification defines the public interface of the package, including declarations of variables, constants, cursors, procedures, and functions.

    • The package body contains the actual implementation of the procedures and functions declared i...

  • Answered by AI
  • Q6. I got more questions from my project related
Round 3 - HR 

(6 Questions)

  • Q1. What are your reasons for wanting to join TCS?
  • Ans. 

    I am excited about the opportunity to work with a global leader like TCS and contribute to innovative projects.

    • TCS is a renowned global company with a strong reputation in the IT industry

    • I am impressed by TCS's commitment to innovation and cutting-edge technology

    • I believe TCS offers great opportunities for professional growth and development

    • I am excited about the chance to work on diverse and challenging projects at TC

  • Answered by AI
  • Q2. What is your current salary package?
  • Ans. 

    I prefer to discuss my salary expectations based on the responsibilities and requirements of the position.

    • Focus on discussing salary expectations based on the job responsibilities and requirements.

    • Avoid disclosing specific current salary package.

    • Emphasize the importance of fair compensation based on market rates and skills.

    • Provide examples of successful projects or achievements that demonstrate your value.

    • Discuss oppor...

  • Answered by AI
  • Q3. What is your expected salary package?
  • Ans. 

    I am looking for a competitive salary package based on my experience and skills.

    • I am open to discussing salary based on the responsibilities and requirements of the role.

    • I have researched the average salary range for Plsql Developers in this location.

    • I am looking for a package that includes benefits such as healthcare, retirement plans, and professional development opportunities.

  • Answered by AI
  • Q4. Are you comfortable with shift work?
  • Ans. 

    Yes, I am comfortable with shift work and have experience working various shifts.

    • I have previous experience working different shifts in my current/previous roles.

    • I am flexible with my schedule and can easily adapt to changing shift patterns.

    • I understand the importance of shift work in ensuring 24/7 coverage for critical systems.

  • Answered by AI
  • Q5. Are you ok with any location
  • Ans. 

    Yes, I am open to any location for the Plsql Developer position.

    • I am willing to relocate for the right opportunity

    • I am open to working in different cities or countries

    • I am flexible with travel requirements for the job

  • Answered by AI
  • Q6. Holding any other offers in hand
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

A sequence was provided: 4181, 2684, 1597, 987, 610.
first 2 are given and write code for other value calculation using java 8

The second question required writing a reverse of a palindrome using both Java 8 streams. I was able to successfully write both and clear the first round.

Round 2 - Technical 

(6 Questions)

  • Q1. Interviewer was himself not knowing anything as it was walkin drive he was sitting infront of me and checking questions on phone Introduction that he inturrepted in between when I was introducing myself
  • Q2. What are the features of Java 17, specifically related to sealed classes, including their syntax and necessity, along with the potential errors encountered when invoking a sealed class?
  • Ans. 

    Java 17 introduces sealed classes to restrict inheritance and improve code maintainability.

    • Sealed classes are declared using the 'sealed' keyword followed by the permitted subclasses.

    • Subclasses of a sealed class must be either final or sealed themselves.

    • Errors may occur when trying to extend a sealed class with a non-permitted subclass.

  • Answered by AI
  • Q3. Java 8 feathers stream api, functional interface, Intermittent operator ,Ternary operator, Prediction,Bi predicate. Answered all successfully
  • Q4. Draw low level design of implementation of notify me if item is back in stock in a ecommerce application
  • Ans. 

    Implementation of 'notify me if item is back in stock' feature in an ecommerce application

    • Create a database table to store user notifications for out-of-stock items

    • Implement a service to check item availability and send notifications to subscribed users

    • Provide a user interface for users to subscribe to notifications for specific items

  • Answered by AI
  • Q5. All design patterns which I know. Asked me to implement adapter pattern on paper
  • Q6. Then given a problem that concurrent way perform operation on excell to decrease the response time

Interview Preparation Tips

Interview preparation tips for other job seekers - I always suggest staying away from these companies commonly referred to as WITCH (Wipro, Infosys, TCS, Cognizant, HCL). You will rarely encounter good interviewers there unless there is an extreme necessity. Interview was judging me on the basis of syntex by seeing in his phone. How can everyone write each and everything on copy. For the low level design first time in my 6 years carrier someone asked to design without using kafka or any other library like spring boot to achieve that add in reminder list problem 😂. At first it was my bad after holding a offer of almost 27 lakh I somehow agreed for giving interview. Second thing I also know that after Even clearing they cannot afford 30LPA which I asked. I just went there because from last 6.5 year I have never attended any walking or face to face interview so was curious for it. Currently also working with somewhat premium product development company only. My experience was very bad. May be it can get vary person to person.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(6 Questions)

  • Q1. Multi cast in angular
  • Q2. Why event emitter what it does
  • Q3. Handling multiple api calls
  • Q4. Higher order functions
  • Q5. Child route and forRoot difference
  • Q6. Ng-container , ng-template
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
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Numerical reasoning : Tests mathematical skills,such as number sequences,percentages,and ratios.

Round 2 - Technical 

(6 Questions)

  • Q1. What is the difference between static and dynamic typing in python?
  • Q2. What is the difference between list and touple in python?
  • Q3. Data structures and algorithms
  • Q4. Object oriented programming
  • Q5. File handling and database
  • Q6. Advanced python topics
Round 3 - Group Discussion 

Gd Topics:
1.Current affairs
2.Business and Economy
3.Social and Cultural

Round 4 - HR 

(6 Questions)

  • Q1. CN you tell me about your self?
  • Q2. Why do you want to work as a python developer?
  • Q3. Career goals and motivation
  • Q4. Team work and communication
  • Q5. Problem solving and adaptability
  • Q6. Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.update the resume
2.practice interview skills
3.Follow the interview tips
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
Round 1 - One-on-one 

(4 Questions)

  • Q1. Good communication with our team and my colleagues
  • Q2. Need improve my skills and strictly fallow up our EHS values
  • Q3. Target is more important in your life, keep doing work unless get your unreachable targets.
  • Q4. Good behaviour build your team and save ethics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep doing work unless get your unreachable targets.
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)

Taj Eduglobe Interview FAQs

How many rounds are there in Taj Eduglobe interview?
Taj Eduglobe interview process usually has 2 rounds. The most common rounds in the Taj Eduglobe interview process are HR, Resume Shortlist and Case Study.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
IQVIA Interview Questions
3.9
 • 464 Interviews
Delhivery Interview Questions
3.9
 • 455 Interviews
Ericsson Interview Questions
4.1
 • 409 Interviews
View all

Taj Eduglobe Reviews and Ratings

based on 24 reviews

1.4/5

Rating in categories

1.5

Skill development

1.4

Work-life balance

1.3

Salary

1.2

Job security

1.4

Company culture

1.2

Promotions

1.3

Work satisfaction

Explore 24 Reviews and Ratings
General Manager Sales
4 salaries
unlock blur

₹6.1 L/yr - ₹6.1 L/yr

Business Development Manager
3 salaries
unlock blur

₹4.8 L/yr - ₹5.8 L/yr

Sales Manager
3 salaries
unlock blur

₹4.5 L/yr - ₹7.2 L/yr

Assistant Vice President
3 salaries
unlock blur

₹24 L/yr - ₹24 L/yr

Head Operations
3 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Explore more salaries
Compare Taj Eduglobe with

TCS

3.7
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

BYJU'S

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