Upload Button Icon Add office photos

TIBCO Software

Compare button icon Compare button icon Compare

Filter interviews by

TIBCO Software Interview Questions and Answers

Updated 24 Mar 2025
Popular Designations

29 Interview questions

An Associate Member Technical Staff was asked 9mo ago
Q. What is database sharding?
Ans. 

Database sharding is a method of splitting and distributing data across multiple servers to improve performance and scalability.

  • Database sharding involves dividing a database into smaller, more manageable parts called shards.

  • Each shard contains a subset of the data, allowing for parallel processing and improved performance.

  • Sharding helps distribute the workload across multiple servers, enabling horizontal scaling.

  • ...

View all Associate Member Technical Staff interview questions
An Associate Member Technical Staff was asked 9mo ago
Q. Explain OOPS concepts.
Ans. 

OOPS concepts are the foundation of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implemen...

View all Associate Member Technical Staff interview questions
A Consultant was asked 10mo ago
Q. What is HPA in Kubernetes?
Ans. 

Horizontal Pod Autoscaler (HPA) is a Kubernetes feature that automatically scales the number of pods in a deployment based on CPU or custom metrics.

  • HPA helps ensure optimal resource utilization by automatically adjusting the number of pods in a deployment based on resource usage.

  • It can be configured to scale based on CPU utilization or custom metrics like requests per second.

  • For example, if a deployment is experie...

View all Consultant interview questions
A Consultant was asked 10mo ago
Q. Describe Kubernetes.
Ans. 

Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

  • Kubernetes helps in automating the deployment, scaling, and management of containerized applications.

  • It provides features like self-healing, load balancing, and storage orchestration.

  • Kubernetes uses declarative configuration to define the desired state of the application.

  • It...

View all Consultant interview questions
A Support Engineer was asked 11mo ago
Q. Write a program to determine whether a given number is prime or not.
Ans. 

A prime number is a number greater than 1 that has no positive divisors other than 1 and itself.

  • Check if the number is greater than 1

  • Loop through numbers from 2 to the square root of the number

  • If the number is divisible by any of the numbers in the loop, it is not prime

View all Support Engineer interview questions
A Member Technical was asked
Q. Explain Selenium WebDriver and its architecture.
Ans. 

Selenium WebDriver is a tool used for automating web application testing. It provides a programming interface to interact with web elements.

  • Selenium WebDriver is a popular open-source tool for automating web browsers.

  • It allows testers to write test scripts in programming languages like Java, Python, etc.

  • The architecture of Selenium WebDriver consists of client libraries, JSON wire protocol, browser drivers, and br...

View all Member Technical interview questions
A Software Developer was asked
Q. Explain the migration of TIBCO from BW 5 to 6.
Ans. 

Migration from Tibco BW 5 to 6 involves upgrading the platform, converting projects, and testing.

  • Upgrade the Tibco platform to version 6

  • Convert existing BW 5 projects to BW 6 format

  • Test the migrated projects thoroughly to ensure compatibility and functionality

  • Consider any necessary changes to configuration and deployment processes

  • Ensure compatibility with any dependent systems or applications

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. Explain SOAP services in TIBCO BW 5 & 6.
Ans. 

SOAP services in Tibco BW 5 & 6 are used for communication between applications using XML-based messages over HTTP or HTTPS.

  • SOAP stands for Simple Object Access Protocol

  • Tibco BW 5 & 6 support both SOAP 1.1 and SOAP 1.2

  • SOAP services use WSDL (Web Services Description Language) to describe the service

  • SOAP services can be implemented using Tibco Designer in BW 5 & 6

  • SOAP services can be secured using SSL/TLS encryptio...

View all Software Developer interview questions
A Software Engineer was asked
Q. What are the differences between C and C++?
Ans. 

C++ is an extension of C with object-oriented programming features.

  • C++ supports classes and objects while C does not.

  • C++ has better support for function overloading and templates.

  • C++ has a standard library that includes many useful functions.

  • C++ is more complex than C and can be harder to learn.

  • C++ code can be compiled as C code with some modifications.

View all Software Engineer interview questions
An Associate QA Engineer was asked
Q. Write a function to reverse a string without using predefined functions.
Ans. 

Reverse a string without using predefined functions.

  • Create an empty string to store the reversed string

  • Loop through the original string from end to start

  • Add each character to the empty string

  • Return the reversed string

View all Associate QA Engineer interview questions

TIBCO Software Interview Experiences

46 interviews found

Consultant Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 questions based on DSA

Round 2 - Technical 

(1 Question)

  • Q1. What is JVM, how garbage collector works
  • Ans. 

    JVM stands for Java Virtual Machine, responsible for executing Java programs. Garbage collector is a part of JVM that manages memory by reclaiming unused objects.

    • JVM is an abstract computing machine that enables a computer to run Java programs.

    • Garbage collector in JVM automatically manages memory by deallocating objects that are no longer needed.

    • Examples of garbage collectors in JVM include Serial, Parallel, CMS, G1, a...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Company culture

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain OOPS concepts
  • Ans. 

    OOPS concepts are the foundation of object-oriented programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What is database sharding
  • Ans. 

    Database sharding is a method of splitting and distributing data across multiple servers to improve performance and scalability.

    • Database sharding involves dividing a database into smaller, more manageable parts called shards.

    • Each shard contains a subset of the data, allowing for parallel processing and improved performance.

    • Sharding helps distribute the workload across multiple servers, enabling horizontal scaling.

    • Examp...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Easy round checks your speed & accuracy.

Round 2 - Technical 

(1 Question)

  • Q1. 1. OOP Concepts. 2. Hashset based coding question & working of generics in general.
Round 3 - Technical 

(1 Question)

  • Q1. Multithreading explanation in depth Odd Even printing in sync using 2 threads. Implementation Linked List & some extra features. Write thread to check if number is prime or not. Fibonacci Numbers
  • Ans. 

    Multithreading concepts, linked list implementation, prime number checking, and Fibonacci numbers in software engineering.

    • Explain multithreading as a way to run multiple threads concurrently for efficient use of CPU.

    • Implement Odd Even printing in sync using 2 threads by using synchronization mechanisms like mutex or semaphore.

    • Implement Linked List with features like insertion, deletion, and traversal.

    • Write a thread to ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About Company & some general HR questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Core Java Concepts should be crystal clear to crack it. Focus on collections & multithreading part.

Skills evaluated in this interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 7 Aug 2024

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

(2 Questions)

  • Q1. Describe kubernete
  • Q2. What is hpa in kubernete
  • Ans. 

    Horizontal Pod Autoscaler (HPA) is a Kubernetes feature that automatically scales the number of pods in a deployment based on CPU or custom metrics.

    • HPA helps ensure optimal resource utilization by automatically adjusting the number of pods in a deployment based on resource usage.

    • It can be configured to scale based on CPU utilization or custom metrics like requests per second.

    • For example, if a deployment is experiencing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good study

Skills evaluated in this interview

Tibco Developer Interview Questions & Answers

user image Komal Mantri

posted on 10 May 2024

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

(4 Questions)

  • Q1. Questions were not very tough
  • Q2. REST web service creation
  • Ans. 

    Creating REST web services involves defining endpoints, methods, and data formats for communication between client and server.

    • Define endpoints for different resources using HTTP methods (GET, POST, PUT, DELETE)

    • Use JSON or XML for data exchange

    • Implement authentication and authorization mechanisms

    • Handle errors and exceptions gracefully

    • Test the web service using tools like Postman

  • Answered by AI
  • Q3. EMS related questions
  • Q4. Administrator questions
Round 2 - HR 

(1 Question)

  • Q1. They asked very basic questions

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 13 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Asked Java and Selenium question
  • Q2. Asked oops concept in details
  • Q3. Asked about framework used in project
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Jenkins architecture
  • Q2. K8 deployment files
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It had only technical java objective questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find number is prime or not
  • Ans. 

    A prime number is a number greater than 1 that has no positive divisors other than 1 and itself.

    • Check if the number is greater than 1

    • Loop through numbers from 2 to the square root of the number

    • If the number is divisible by any of the numbers in the loop, it is not prime

  • Answered by AI
  • Q2. Collections overview

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the java, networking, SQL basics

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Questions on project, Java, SQL
Round 2 - Technical 

(1 Question)

  • Q1. Advanced java, Testing concepts, Selenium, Coding etc
Round 3 - Technical 

(1 Question)

  • Q1. Overview of skills
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion

Interview Questions & Answers

user image d s

posted on 9 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude very hard 50 questions in 20 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Based on resume,java
  • Q2. Database, SQL, Oracle
Round 3 - HR 

(1 Question)

  • Q1. Stregth,weekness

Top trending discussions

View All
Interview Tips & Stories
2w
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 TIBCO Software?
Ask anonymously on communities.

TIBCO Software Interview FAQs

How many rounds are there in TIBCO Software interview?
TIBCO Software interview process usually has 2-3 rounds. The most common rounds in the TIBCO Software interview process are Technical, Aptitude Test and HR.
How to prepare for TIBCO Software 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 TIBCO Software. The most common topics and skills that interviewers at TIBCO Software expect are Python, Java, Javascript, SQL and Operations.
What are the top questions asked in TIBCO Software interview?

Some of the top questions asked at the TIBCO Software interview -

  1. What about Back servers and which application you usi...read more
  2. Antivirus Application and how to troubleshoot Infected pc and drive...read more
  3. Multithreading explanation in depth Odd Even printing in sync using 2 threads. ...read more
What are the most common questions asked in TIBCO Software HR round?

The most common HR questions asked in TIBCO Software interview are -

  1. Why are you looking for a chan...read more
  2. Share details of your previous j...read more
How long is the TIBCO Software interview process?

The duration of TIBCO Software interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 24 interview experiences

Difficulty level

Easy 8%
Moderate 83%
Hard 8%

Duration

Less than 2 weeks 64%
2-4 weeks 36%
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 198 Interviews
AVASOFT Interview Questions
2.8
 • 174 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 112 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
2.9
 • 105 Interviews
View all

TIBCO Software Reviews and Ratings

based on 313 reviews

3.5/5

Rating in categories

3.3

Skill development

3.9

Work-life balance

3.3

Salary

3.1

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 313 Reviews and Ratings
Lead Product Manager

Pune

11-14 Yrs

Not Disclosed

Senior Cloud Development Engineer

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Senior Cloud Development Engineer

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Explore more jobs
Softwaretest Engineer
281 salaries
unlock blur

₹3.1 L/yr - ₹6 L/yr

Associate Consultant
161 salaries
unlock blur

₹5.6 L/yr - ₹16.4 L/yr

Consultant
140 salaries
unlock blur

₹9 L/yr - ₹20.5 L/yr

Member Technical Staff
138 salaries
unlock blur

₹7 L/yr - ₹18.5 L/yr

Software Quality Analyst
112 salaries
unlock blur

₹3.6 L/yr - ₹5.8 L/yr

Explore more salaries
Compare TIBCO Software with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.3
Compare
write
Share an Interview