Upload Button Icon Add office photos

TIBCO Software

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

TIBCO Software Associate Member Technical Staff Interview Questions and Answers

Updated 19 Sep 2024

TIBCO Software Associate Member Technical Staff Interview Experiences

2 interviews found

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2022. There were 6 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 Resume tips
Round 2 - Aptitude Test 

It was basic aptitude test.

Round 3 - Technical 

(1 Question)

  • Q1. It was coding based interview and some technical questions in Java
Round 4 - Technical 

(1 Question)

  • Q1. This was also coding round with some db , tech related questions ,
Round 5 - One-on-one 

(1 Question)

  • Q1. This was one on one with manager based on resume they were asked about , and previous offer letter , our work , technical aspectation and all .
Round 6 - HR 

(1 Question)

  • Q1. It was resume based , salary expectations and working culture of there company.

Associate Member Technical Staff Interview Questions Asked at Other Companies

asked in Oracle
Q1. How can you create a 3-tier architecture? What are the alternativ ... read more
asked in HCLTech
Q2. How to start the Automation Framework with Open Source Selenium S ... read more
asked in HCLTech
Q3. Is Manual Testing Report and Automation Testing Report Varies?
asked in HCLTech
Q4. How to add fitness to process and product?
asked in HCLTech
Q5. How to report the Bug with Needed Information?

Interview questions from similar companies

I applied via Referral and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How can you create a 3-tier architecture? What are the alternatives of Load Balancer? How can you create PV and PVC in Kubernetes? How much you know about the cloud and networking? How on-prem is different...
  • Ans. 

    Answering questions related to 3-tier architecture, load balancer alternatives, PV and PVC creation in Kubernetes, cloud and networking, on-prem vs cloud, and server migration tools.

    • To create a 3-tier architecture, separate the presentation layer, application layer, and database layer into three distinct tiers.

    • Alternatives to Load Balancer include DNS-based load balancing and IP-based load balancing.

    • To create PV and PV...

  • Answered by AI
  • Q2. What have you learned from your projects in the organization? what are the latest tools/technologies that have you worked on past one year? Detailed discussion about DevOps tools and technologies. Main top...

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident and mention what you know on your resume. All interviewers asked me whatever I've mentioned in my resume and my expectations for the future. They will ask you the scenario-based question according to your experience, so be prepared for it. Interviews are always easy when you are confident. All the best.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

It was easy basic problems like binary search, array manupulation, finding the minimum and maximum were asked.

Round 3 - Coding Test 

Binary search
find min in sorted and unsorted array.
linked list problems insert.
modified binary search.

Round 4 - HR 

(4 Questions)

  • Q1. Algo and ds are must, any language will do the work prefer java.
  • Q2. Why do u want to join us ? what is salary u are expection.
  • Q3. The preferred location they asked me.
  • Q4. They asked me about my gap in resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident.
questions will be very easy and basic just prepare for the basic subjects.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

4 coding questions on hackerrank.

  • Q1. 

    Dice Throws Problem Statement

    You are given D dice, each having F faces numbered from 1 to F. The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up num...

  • Ans. 

    The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up numbers equals the given 'target' sum.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of ways to achieve each sum with the given number of dice.

    • Iterate through the dice and faces to calculate the number of ways to reach each sum.

    • Return the result modulo 10^9 + 7.

    • Optim...

  • Answered by AI
  • Q2. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values with specified functions.

    • Use two queues to simulate stack operations efficiently.

    • Maintain the top element in one of the queues for easy access.

    • Ensure proper handling of edge cases like empty stack.

    • Example: Push elements 5, 10, 15; Pop elements; Check top element.

    • Example: Check if stack is empty; Get stack size.

  • Answered by AI
  • Q3. 

    Maximum Subarray Sum Problem Statement

    Given an array 'ARR' of integers with length 'N', the task is to determine the sum of the subarray (including an empty subarray) that yields the maximum sum among al...

  • Ans. 

    Find the maximum sum of a subarray in an array of integers.

    • Iterate through the array and keep track of the maximum sum subarray ending at each index.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Consider the case where all elements are negative to handle edge cases.

    • Example: For input [1, -2, 3, -1, 2], the maximum subarray sum is 4.

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

My 1st technical round began with a small introduction and a discussion on my projects. After that, my complete interview revolved around Object-oriented principles and 1 basic coding question. The interviewer asked all the pillars of Object-oriented along with use cases and where have I implemented them in my projects.

Round 3 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In my 2nd technical round, the interviewer began with the complete discussion of my projects. He asked me everything about them like which technologies I have used, why I have used them, what are the alternatives, what are the real-life applications of these projects. After this, He asked questions on Computer Networks, Operating system, Database Management system and at the end, some of the SQL queries. SQL queries were quite easy, I found one of the queries tricky and harder as compared to other i.e print nth largest salary of the employees. The interviewer also asked me why I was not able to code one of the questions in the coding round. I explained the complete approach of that question and he was quite satisfied. This technical round was of 1 hour long.

  • Q1. Print the nth largest salary from a given list of salaries.
  • Ans. 

    Find the nth largest salary from a list of salaries.

    • Sort the list of salaries in descending order.

    • Remove duplicates from the sorted list.

    • Return the salary at index n-1 from the sorted list.

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 35 minutes
Round difficulty - Easy

There were two panellists in this round and they began with a small introduction. One of them asked me about my capstone project which was based on object recognition task and deep learning. He just told me to explain deep learning in complete detail and how can it be used on my college campus. Then, He asked me what technologies are being used and how I trained my model as the model was quite heavy and computationally intensive. Then, they asked me how I cope up with my team members in the pandemic situation and how I managed to interact with them.

  • Q1. What are the basic applications of deep learning, and how can I implement it in my college?
  • Ans. 

    Deep learning has applications in image and speech recognition, natural language processing, autonomous vehicles, etc.

    • Image recognition - identifying objects in images, used in self-driving cars, medical imaging, etc.

    • Speech recognition - converting spoken language into text, used in virtual assistants like Siri, Alexa, etc.

    • Natural language processing - understanding and generating human language, used in chatbots, lang...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 8 CGPACloudera interview preparation:Topics to prepare for the interview - Object-oriented programming in C++, Data Structure and algorithms, Computer Networks, Operating Systems, Database Management SystemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 600 questions from leetcode.
Tip 2 : Make sure you participate in every long challenge of CodeChef.
Tip 3 : Focus more on your projects.

Application resume tips for other job seekers

Tip 1 : Do not put false things on a resume.
Tip 2 : Have some projects on a resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

4 questions, 1 easy, 2 medium, 1 hard.
based on stack, DP and String.

Round 2 - Technical 

(3 Questions)

  • Q1. Based on OOPS 4 pillars.
  • Q2. Based on spark and operating system as mentioned in my resume.
  • Q3. Mostly on basic topics like DBMS, OOPS, OS, DSA (invert a binary tree, a medium string question).
Round 3 - Technical 

(2 Questions)

  • Q1. Explain the project done in internship.
  • Q2. Explain spark architecture and related questions on architecture.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics and projects in resume.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was simple with 3 questions, 1 with SQL and other 2 with dsa questions

Round 2 - Technical 

(2 Questions)

  • Q1. Resume based questions
  • Q2. Resume based question

Interview Questionnaire 

2 Questions

  • Q1. Interview is mainly focused on problem solving skills using data structures and algorithms
  • Q2. There was a problem to be solved using modified binary search and another problem using graphs traversal
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Python, java, sql along with theoretical knowledge

Round 2 - Technical 

(3 Questions)

  • Q1. Questions on databases
  • Q2. Questions on algorithms
  • Q3. Coding related questions
Round 3 - HR 

(2 Questions)

  • Q1. Tell about yourself.
  • Q2. Strengths and weaknesses
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions + few MCQ based on java and spring boot

Round 2 - Technical 

(3 Questions)

  • Q1. Java basic questions
  • Q2. Spring question
  • Q3. Print Matrix in spiral form coding question
  • Ans. 

    Print a matrix in spiral form

    • Iterate through the matrix in a spiral pattern, printing each element

    • Keep track of the boundaries of the matrix as you move along

    • Handle cases where the matrix is not a perfect square separately

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Informatica Software Engineer interview:
  • Java
  • Spring Boot
  • Spring Framework
  • Data Structures
Interview preparation tips for other job seekers - Interview was medium to hard couldn't solve coding question in time limit so wasn't called for round 2.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

TIBCO Software Interview FAQs

How many rounds are there in TIBCO Software Associate Member Technical Staff interview?
TIBCO Software interview process usually has 4 rounds. The most common rounds in the TIBCO Software interview process are One-on-one Round, Technical and Resume Shortlist.
What are the top questions asked in TIBCO Software Associate Member Technical Staff interview?

Some of the top questions asked at the TIBCO Software Associate Member Technical Staff interview -

  1. What is database shard...read more
  2. Explain OOPS conce...read more
  3. It was coding based interview and some technical questions in J...read more

Recently Viewed

INTERVIEWS

Upland Software

No Interviews

INTERVIEWS

Upland Software

No Interviews

INTERVIEWS

TIBCO Software

No Interviews

INTERVIEWS

Knorr-Bremse

No Interviews

INTERVIEWS

Blackstraw AI

5.6k top interview questions

INTERVIEWS

Upland Software

No Interviews

INTERVIEWS

Blackstraw AI

No Interviews

INTERVIEWS

Knorr-Bremse

No Interviews

INTERVIEWS

DTC Projects

No Interviews

JOBS

JANARDAN FARMS AND RESORTS LLP

No Jobs

Tell us how to improve this page.

TIBCO Software Associate Member Technical Staff Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 848 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 223 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
AVASOFT Interview Questions
3.7
 • 155 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
View all
TIBCO Software Associate Member Technical Staff Salary
based on 52 salaries
₹5.6 L/yr - ₹10 L/yr
At par with the average Associate Member Technical Staff Salary in India
View more details

TIBCO Software Associate Member Technical Staff Reviews and Ratings

based on 6 reviews

2.6/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.0

Salary

2.9

Job security

4.5

Company culture

2.3

Promotions

4.2

Work satisfaction

Explore 6 Reviews and Ratings
Softwaretest Engineer
246 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
175 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
166 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
154 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Quality Analyst
112 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TIBCO Software with

Informatica

3.5
Compare

Mulesoft

4.6
Compare

SAP

4.2
Compare

IBM

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