Upload Button Icon Add office photos

Filter interviews by

Pentagon Space Interview Questions and Answers

Updated 11 Apr 2025
Popular Designations

11 Interview questions

A Senior Technical Trainer was asked
Q. How do you create multithreading?
Ans. 

Multithreading can be created in programming by creating multiple threads within a single process to execute tasks concurrently.

  • Use a programming language that supports multithreading, such as Java or C++.

  • Create a new thread by extending the Thread class or implementing the Runnable interface.

  • Start the thread using the start() method to execute the run() method concurrently.

  • Handle synchronization and communication...

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. What are the properties of aggregate functions in MySQL?
Ans. 

Aggregate functions in MySQL are used to perform calculations on a set of values and return a single value.

  • Aggregate functions include functions like SUM, AVG, COUNT, MIN, and MAX.

  • They are often used with the GROUP BY clause to group the result set by one or more columns.

  • Aggregate functions ignore NULL values unless specified otherwise.

  • Examples: SELECT SUM(salary) FROM employees; SELECT AVG(age) FROM students;

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. How does service annotation work in Spring?
Ans. 

Service annotation in Spring is used to indicate that a class is a Spring bean and should be managed by the Spring container.

  • Service annotation is used to mark a class as a Spring bean

  • It eliminates the need for XML configuration for bean definition

  • It allows for automatic detection and registration of beans in the Spring container

  • Example: @Service annotation on a class named UserService

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. Write a Java program to check if two strings are anagrams.
Ans. 

Java program to check if strings are anagrams

  • Create a method that takes in two strings as parameters

  • Convert both strings to char arrays and sort them

  • Check if the sorted arrays are equal to determine if the strings are anagrams

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. How do you create customized exceptions based on checked and unchecked exceptions?
Ans. 

Customized exceptions can be created by extending the Exception class for checked exceptions and RuntimeException class for unchecked exceptions.

  • Create a new class that extends Exception for checked exceptions or RuntimeException for unchecked exceptions

  • Override the constructors to provide custom messages and error codes

  • Throw the customized exception in your code when necessary

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. How would you adopt agile methodologies in CRM?
Ans. 

Agile methodologies in CRM involve iterative development, frequent feedback, and collaboration.

  • Break down CRM projects into smaller tasks or user stories

  • Hold regular sprint planning meetings to prioritize tasks and set goals

  • Encourage cross-functional teams to work together and communicate effectively

  • Use tools like Jira or Trello to track progress and manage tasks

  • Conduct regular retrospectives to reflect on what we...

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. How does a daemon thread differ from a single thread?
Ans. 

Daemon thread runs in the background and does not prevent the JVM from exiting, while single thread is a regular thread that can prevent the JVM from exiting.

  • Daemon thread is used for background tasks like garbage collection, while single thread is used for regular tasks.

  • Daemon thread does not prevent the JVM from exiting, while single thread can prevent the JVM from exiting.

  • Daemon threads are terminated by the JV...

View all Senior Technical Trainer interview questions
Are these interview questions helpful?
A Senior Technical Trainer was asked
Q. Why is synchronization necessary when creating a thread?
Ans. 

Synchronization is necessary while creating a thread to ensure proper coordination and avoid conflicts between multiple threads accessing shared resources.

  • Prevents data corruption: Synchronization helps in preventing data corruption when multiple threads access shared data simultaneously.

  • Maintains order of execution: Synchronization ensures that threads execute in a specific order, preventing race conditions.

  • Avoid...

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. Can you provide an example of an immutable object in Java, other than strings?
Ans. 

Yes, an example of immutable object other than strings in Java is the Integer class.

  • Integer class in Java is immutable, meaning its value cannot be changed once it is created.

  • When you perform operations on an Integer object, a new Integer object is created with the result.

  • Example: Integer num = 10; num += 5; // num is now a new Integer object with value 15

View all Senior Technical Trainer interview questions
A Senior Technical Trainer was asked
Q. Write a MySQL query to display details of employees whose names start with "ab".
Ans. 

Query to display details of employees whose names start with 'ab' in MySQL.

  • Use SELECT statement to retrieve data from the table.

  • Use WHERE clause with LIKE operator to filter names starting with 'ab'.

  • Example: SELECT * FROM employees WHERE name LIKE 'ab%';

View all Senior Technical Trainer interview questions

Pentagon Space Interview Experiences

5 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(10 Questions)

  • Q1. How to create multithreading
  • Ans. 

    Multithreading can be created in programming by creating multiple threads within a single process to execute tasks concurrently.

    • Use a programming language that supports multithreading, such as Java or C++.

    • Create a new thread by extending the Thread class or implementing the Runnable interface.

    • Start the thread using the start() method to execute the run() method concurrently.

    • Handle synchronization and communication betw...

  • Answered by AI
  • Q2. How to create customized exceptions on basis of checked and unchecked
  • Ans. 

    Customized exceptions can be created by extending the Exception class for checked exceptions and RuntimeException class for unchecked exceptions.

    • Create a new class that extends Exception for checked exceptions or RuntimeException for unchecked exceptions

    • Override the constructors to provide custom messages and error codes

    • Throw the customized exception in your code when necessary

  • Answered by AI
  • Q3. Write java program to check a strings are annagram in nature
  • Ans. 

    Java program to check if strings are anagrams

    • Create a method that takes in two strings as parameters

    • Convert both strings to char arrays and sort them

    • Check if the sorted arrays are equal to determine if the strings are anagrams

  • Answered by AI
  • Q4. Properties of aggregate functions in mysql
  • Ans. 

    Aggregate functions in MySQL are used to perform calculations on a set of values and return a single value.

    • Aggregate functions include functions like SUM, AVG, COUNT, MIN, and MAX.

    • They are often used with the GROUP BY clause to group the result set by one or more columns.

    • Aggregate functions ignore NULL values unless specified otherwise.

    • Examples: SELECT SUM(salary) FROM employees; SELECT AVG(age) FROM students;

  • Answered by AI
  • Q5. Write a mysql query to display details of employees whose names starts with "ab"
  • Ans. 

    Query to display details of employees whose names start with 'ab' in MySQL.

    • Use SELECT statement to retrieve data from the table.

    • Use WHERE clause with LIKE operator to filter names starting with 'ab'.

    • Example: SELECT * FROM employees WHERE name LIKE 'ab%';

  • Answered by AI
  • Q6. Can u say a best example for immutable other than strings in java
  • Ans. 

    Yes, an example of immutable object other than strings in Java is the Integer class.

    • Integer class in Java is immutable, meaning its value cannot be changed once it is created.

    • When you perform operations on an Integer object, a new Integer object is created with the result.

    • Example: Integer num = 10; num += 5; // num is now a new Integer object with value 15

  • Answered by AI
  • Q7. How service annotation works in springs
  • Ans. 

    Service annotation in Spring is used to indicate that a class is a Spring bean and should be managed by the Spring container.

    • Service annotation is used to mark a class as a Spring bean

    • It eliminates the need for XML configuration for bean definition

    • It allows for automatic detection and registration of beans in the Spring container

    • Example: @Service annotation on a class named UserService

  • Answered by AI
  • Q8. May i know concept of transitive dependency in mysql.
  • Ans. 

    Transitive dependency in MySQL refers to a condition where a non-key attribute depends on another non-key attribute.

    • A transitive dependency occurs when A -> B and B -> C, leading to A -> C.

    • Example: In a table with columns StudentID, CourseID, and Instructor, if Instructor depends on CourseID, it's a transitive dependency.

    • Transitive dependencies can lead to data redundancy and anomalies in database design.

    • To el...

  • Answered by AI
  • Q9. Why synchronization is so necessary while creating a thread
  • Ans. 

    Synchronization is necessary while creating a thread to ensure proper coordination and avoid conflicts between multiple threads accessing shared resources.

    • Prevents data corruption: Synchronization helps in preventing data corruption when multiple threads access shared data simultaneously.

    • Maintains order of execution: Synchronization ensures that threads execute in a specific order, preventing race conditions.

    • Avoids dea...

  • Answered by AI
  • Q10. How is daemon thread different from single thread
  • Ans. 

    Daemon thread runs in the background and does not prevent the JVM from exiting, while single thread is a regular thread that can prevent the JVM from exiting.

    • Daemon thread is used for background tasks like garbage collection, while single thread is used for regular tasks.

    • Daemon thread does not prevent the JVM from exiting, while single thread can prevent the JVM from exiting.

    • Daemon threads are terminated by the JVM whe...

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. General questions on my previous projects and my way of taking up tasks
  • Q2. What makes u feel u been capable of problem solving
  • Q3. How would you adopt agile methodologies in crm
  • Ans. 

    Agile methodologies in CRM involve iterative development, frequent feedback, and collaboration.

    • Break down CRM projects into smaller tasks or user stories

    • Hold regular sprint planning meetings to prioritize tasks and set goals

    • Encourage cross-functional teams to work together and communicate effectively

    • Use tools like Jira or Trello to track progress and manage tasks

    • Conduct regular retrospectives to reflect on what went we...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for basics and advance in Java or any other programming language

Skills evaluated in this interview

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

Mathematics tarina boat algorithm and technology stream

Apprentice Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. Self introduction
  • Q2. Jam conducting to students

Interview Questions & Answers

user image Anonymous

posted on 18 May 2022

I applied via Campus Placement and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Java programming coding test question was prepare

Round 2 - Aptitude Test 

The second was aptitude test

Interview Preparation Tips

Topics to prepare for Pentagon Space interview:
  • Java
  • Aptitude
Interview preparation tips for other job seekers - I am currently pursuing training on Full stack java at Pentagon space bangolore

I applied via Naukri.com and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Introducing about yourself
  • Q2. GD round topic was indian education is better or foreign
  • Q3. Technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - It was really good and got selected for this company as a corporate trainer.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Pentagon Space?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. HR questions were asked
  • Q2. Market research related questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jul 2024.

Round 1 - HR 

(1 Question)

  • Q1. What are the roles and responsibilities of a Human Resources (HR) professional?
  • Ans. 

    HR professionals are responsible for recruiting, training, managing employee relations, and ensuring compliance with labor laws.

    • Recruiting and hiring new employees

    • Training and development programs for staff

    • Managing employee relations and resolving conflicts

    • Ensuring compliance with labor laws and regulations

    • Developing and implementing HR policies and procedures

  • Answered by AI
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Why do you work with us?
  • Ans. 

    I work with you because of your innovative projects and collaborative work environment.

    • I am impressed by the innovative projects your company is working on.

    • I value the collaborative work environment that your company promotes.

    • I believe in the company's mission and values.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. What do you know about web scraping?
  • Q2. What python libraries you have worked with?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2022. There were 3 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 - Aptitude Test 

Mostly quantitative and qualitative reasoning questions

Round 3 - Coding Test 

Graph,trees,arrays and strings

Interview Preparation Tips

Topics to prepare for DevTown Intern interview:
  • arrays
  • graph
  • trees
  • bfs
  • dfs
Interview preparation tips for other job seekers - prepare behavioural questions well and data structure and algorithms are an advantage if you know

Pentagon Space Interview FAQs

How many rounds are there in Pentagon Space interview?
Pentagon Space interview process usually has 1-2 rounds. The most common rounds in the Pentagon Space interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Pentagon Space interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Pentagon Space. The most common topics and skills that interviewers at Pentagon Space expect are Salesforce, Python, Business Development, Javascript and Digital Marketing.
What are the top questions asked in Pentagon Space interview?

Some of the top questions asked at the Pentagon Space interview -

  1. Can u say a best example for immutable other than strings in j...read more
  2. Write a mysql query to display details of employees whose names starts with "...read more
  3. How to create customized exceptions on basis of checked and unchec...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 4 interview experiences

Difficulty level

Easy 67%
Moderate 33%

Duration

Less than 2 weeks 67%
More than 8 weeks 33%
View more

Interview Questions from Similar Companies

CollegePur Interview Questions
4.6
 • 55 Interviews
Academor Interview Questions
2.9
 • 48 Interviews
SevenMentor Interview Questions
4.3
 • 40 Interviews
HeyCoach Interview Questions
4.1
 • 25 Interviews
DevTown Interview Questions
3.7
 • 24 Interviews
View all

Pentagon Space Reviews and Ratings

based on 43 reviews

3.4/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

2.9

Salary

3.0

Job security

3.4

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 43 Reviews and Ratings
Counsellor

Bangalore / Bengaluru

0-4 Yrs

Not Disclosed

Explore more jobs
Business Development Associate
8 salaries
unlock blur

₹3.5 L/yr - ₹5.4 L/yr

Corporate Trainer
7 salaries
unlock blur

₹2.6 L/yr - ₹5.2 L/yr

Talent Acquisition Specialist
5 salaries
unlock blur

₹3.5 L/yr - ₹5.3 L/yr

HR Recruiter
5 salaries
unlock blur

₹2.5 L/yr - ₹3.1 L/yr

Business Development Executive
5 salaries
unlock blur

₹2.2 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Pentagon Space with

Asia-Pacific Institute of Management

4.1
Compare

Jetking Infotrain

3.7
Compare

National Institute of Technology

4.2
Compare

Billabong High International School

3.7
Compare
write
Share an Interview