Upload Button Icon Add office photos

TIBCO Software

Compare button icon Compare button icon Compare

Filter interviews by

TIBCO Software Member Technical Staff Interview Questions and Answers

Updated 12 Dec 2019

TIBCO Software Member Technical Staff Interview Experiences

1 interview found

I applied via Referral and was interviewed in Nov 2019. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is singleton class ? How to break it.
  • Ans. 

    A singleton class is a class that can only have one instance at a time.

    • To break a singleton class, one can create multiple instances of the class.

    • Another way to break it is by using reflection to access the private constructor and create a new instance.

    • In some cases, serialization and deserialization can also break the singleton pattern.

  • Answered by AI
  • Q2. What is producer consumer problem?
  • Ans. 

    Producer consumer problem is a synchronization problem in which a producer produces data and a consumer consumes it.

    • It involves two processes, producer and consumer, sharing a common buffer.

    • The producer produces data and puts it into the buffer.

    • The consumer consumes data from the buffer.

    • The problem arises when the producer produces data faster than the consumer can consume it, leading to buffer overflow.

    • Solutions inclu...

  • Answered by AI
  • Q3. All core java concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - All core java concepts. Problem solving questions also there.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 

The questions were good and conceptual based.
English was also asked in the first round
paragraph questions were also there

Round 3 - Technical 

(1 Question)

  • Q1. Was given a case study to solve

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about the company well

Interview Questionnaire 

3 Questions

  • Q1. Mostly around client management, handling and collaboration.
  • Q2. Puzzles and Guesstimates
  • Q3. Case study- Simple one

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a cakewalk if you ever handled clients before. Please brush up on your case study solving skills. The interview is a breeze though lengthy.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Easy aptitude question

Round 2 - One-on-one 

(1 Question)

  • Q1. Very friendly interaction
Round 3 - One-on-one 

(1 Question)

  • Q1. Case study question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Behavioral 

(1 Question)

  • Q1. Based on experience and some technical scripting best practice question
Round 2 - Presentaion 

(1 Question)

  • Q1. Virtual agent presentation to a client and demo, followed by questions related to VA
Round 3 - Technical 

(1 Question)

  • Q1. Around experience

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell us about yourself and your last job?
  • Ans. 

    I have a diverse background in sales and customer service. In my last job, I worked as a Sales Associate at a retail store.

    • Worked as a Sales Associate at a retail store

    • Assisted customers in finding products and making purchases

    • Handled cash transactions and operated the cash register

    • Maintained a clean and organized sales floor

    • Provided excellent customer service and resolved any issues or complaints

  • Answered by AI
  • Q2. What particular achievements have you had?
  • Ans. 

    I have achieved several milestones in my career, including increasing sales by 20% and receiving a promotion to team lead.

    • Increased sales by 20% through strategic marketing campaigns

    • Received a promotion to team lead for consistently exceeding targets

    • Implemented a new customer service system resulting in improved customer satisfaction ratings

  • Answered by AI
  • Q3. Do an assignment on a competition analysis for our client?
  • Ans. 

    Competition analysis assignment for a client

    • Identify direct and indirect competitors

    • Analyze competitors' products, pricing, and marketing strategies

    • Evaluate competitors' strengths and weaknesses

    • Assess market share and growth potential

    • Identify opportunities and threats in the competitive landscape

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) If you don't understand a question, ask the interviewer in you own words.
2) Be prepared for multiple rounds of interview but don't panic. The same questions will be asked in each stage, so you will by and large have the same answer, you may have to talk about specific things that each interviewer may ask. But all in all about you and your experience.
3) Always wait for them to make you an offer for salary.
4) When HR makes you an offer. Be prepared that it will not be what you want.
- Just remember that they have a script of questions they will ask, if you answer them then they will think you can be hired at their decided CTC for you. But if you list out more points they can add to their list then they will also have to increase your salary. For example, you will have to spend a certain percentage of your salary on travelling and rent, and need to save more. List out additional online courses you have done that the average candidate has not. Point out to them that you were nominated for an award in your last job. These things count.
5) If you don't know the answer to a question of their's. Then say you don't know. But always, let them know you think you could learn it.
6) Recruiters know you can't know everything, and they don't expect you to. They also want to judge you on honesty, and how you respond to pressure.
7) JUST BREATHE. It will go far better than you planned. All the best!!!!
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Assignment 

Easy assignment with basic questions on patent

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to Software Testing Process Coding questions Puzzle
  • Q2. How to get individual character from string
  • Ans. 

    Use indexing to access individual characters from a string.

    • Use square brackets and the index number to access a specific character in the string.

    • Remember that indexing starts at 0 in most programming languages.

    • Example: str = 'hello', to get the first character 'h', use str[0].

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

(1 Question)

  • Q1. Coding Questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is webservice?
  • Ans. 

    A webservice is a software system designed to support interoperable machine-to-machine interaction over a network.

    • Webservices use standardized protocols such as HTTP, XML, SOAP, and REST.

    • They allow different applications to communicate with each other regardless of the programming language or platform used.

    • Webservices can be used for a variety of purposes such as data exchange, business process integration, and applica...

  • Answered by AI
  • Q2. What is Difference between API and Webservice
  • Ans. 

    API is a set of protocols for building software while Webservice is a type of API that uses HTTP for communication.

    • API is a set of protocols for building software applications

    • Webservice is a type of API that uses HTTP for communication

    • API can be used for both internal and external communication

    • Webservice is typically used for external communication over the internet

    • API can be in any form like REST, SOAP, etc.

    • Webservice

  • Answered by AI
  • Q3. What is pesticide paradox in testing
  • Ans. 

    Pesticide paradox refers to the phenomenon where pests develop resistance to pesticides over time.

    • Pesticides are used to kill pests, but over time pests develop resistance to them

    • This happens because the pests that are resistant to the pesticide survive and reproduce, passing on their resistance to their offspring

    • This can lead to the need for stronger and more toxic pesticides, which can have negative environmental and...

  • Answered by AI
  • Q4. Star pattern and palindrome Java program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java, OOPS and web services concepts.

Skills evaluated in this interview

TIBCO Software Interview FAQs

How to prepare for TIBCO Software Member Technical Staff 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 Data Structures, Hadoop, JDBC, Java and Multithreading.
What are the top questions asked in TIBCO Software Member Technical Staff interview?

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

  1. What is singleton class ? How to break ...read more
  2. What is producer consumer probl...read more
  3. All core java conce...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
2.9
 • 164 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
SPRINKLR Interview Questions
3.0
 • 101 Interviews
View all
TIBCO Software Member Technical Staff Salary
based on 154 salaries
₹6 L/yr - ₹17.4 L/yr
6% less than the average Member Technical Staff Salary in India
View more details

TIBCO Software Member Technical Staff Reviews and Ratings

based on 15 reviews

2.9/5

Rating in categories

2.9

Skill development

4.1

Work-life balance

2.9

Salary

3.1

Job security

2.9

Company culture

2.5

Promotions

3.0

Work satisfaction

Explore 15 Reviews and Ratings
Softwaretest Engineer
279 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Associate Consultant
175 salaries
unlock blur

₹5.6 L/yr - ₹13.5 L/yr

Member Technical Staff
154 salaries
unlock blur

₹6 L/yr - ₹17.4 L/yr

Consultant
149 salaries
unlock blur

₹9 L/yr - ₹20.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.7
Compare

Chetu

3.3
Compare

R Systems International

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