Upload Button Icon Add office photos

TIBCO Software

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

TIBCO Software Associate Consultant Interview Questions and Answers

Updated 7 May 2015

TIBCO Software Associate Consultant Interview Experiences

1 interview found

Interview Preparation Tips

Round: Test
Experience: APTITUDE TEST:(Please mention the domains that the test was based on, number of questions asked, amount of 
time provided for the test, whichever questions you remember, and whatever you thought you did wrong ) 
The aptitude test was objective
Time duration 1 hour
It consisted of 4 sections.
1. Section1 (35 questions)
 This section had question on oop concepts, Unix, Networks, Database, data structure.
2.  Section2  (5 questions)
 This section was simple to few and tough for some and had 5 code snippets in java..
3. Section3 (14 questions)
 Basic questions on Unix commands and network (Subnet mask)
4. Section4 (24 questions)
 It had basic quant, almost more than 75 % questions were from net.
No. of people shortlisted after the aptitude test  = 24

Round: Technical Interview
Experience: ROUND 1:
(This was technical )Duration: 60 minutes approx. for all (Mine was roughly 20/25 mins)
There were two interviewers.
Interviewer1:
 It started with tell me difference between c and c++
 Next followed with interviewers fav question ”tell me about yourself”
 He then scanned through my CV and asked me if I m good at c/c++/java.
My reply was sir c/c++ and java. So they were like but your friends said that u didn’t had it in more than one sem (I don’t knw who said so), so I was like ya its true but then my resume wouldn’t have lied as all my 5 projects were on java, so I said Sir I knw it thoroughly (A great risk of saying u knw java thoroughly)
 So the he started asking proper interview questions: 
>> Say if I m new to OOP can u tell me how should I start??
>> What do u mean by late binding
>> Can you explain Multiple inheritance
Explain it in java and c++ perspective
>> Can you explain Access specifier(public,private,protected)
>> Can you explain Default access specifier
Interviewer2:
 Explain me ur Span system project, he is like y such fancy name?? 
 What was ur work in it..
 Explain me the basic design of it
 Explain me abt databse, which db u worked on??
 What did u do in database
 Do you knw cursor,index,triggers
 Where did you use it
Interviewer1:
 Explain normalization??
 Explain Aggregate functions??
 Explain how do I run the query of getting count of my emp
 Write query to add sal of all emp??
Interviewer2:
 Explain me abt Messaging system
 Explain me about ur internship project 
 Tell me about you jsp work
 About oracle and Db2 which one you like (I said oracle bcoz they r their client and IBM their enemy) 
Interviewer1:
 Which os you have worked on??
 U ok with unix ??
 Explain few commands ( ps,whoami,ls,etc..)
Interviewer1:
 Explain networks 
 Subnet Mask
Both Interviewrs said in same tone “Ohh all so good , Awesome interviewing you”…
No. Of people shortlisted after this round: approx. 5 from btech and 3 from mtech

Round: Technical Interview
Experience: ROUND 2: (20 mins)
This was on are final year project
There was only one male (Mr Hitesh Salaa) He started with introduce yourself in brief.
 About my academics
 About my final year project
 Whose idea is it
 How did you go for it
 What research work you did
 Explain me one application on hearing which I ll place you:
>> Sir, say for example if u want an increment , u ll in real time capture an image of ur boss to detect his emotion and proceed only if he is happy or smiling :D :P
>> he said it with a big smile “u r placed.”
 Asked me about y aint u placed in any regular (specially y not L&T).  U didn’t get it or u didn’t wanted it.
>> I said no sir nothing like that, but at the same time I had Nvidia, so didn’t appear for any regular.
>> So he is like did you get Nvidia  (I said NO!!)
 Then he is like what abt Credit Suisse , I heard you are on Hold by them (  I don’t know who informed them) 
>> I said isr its true, but its probability is less. He is like but still if they place u, then u ll leave us??
>> I said “No sir, If Tibco shows so much Trust in me, its my turn to respect it and join u”
>> He was impressed a lot.
 What did you like in Tibco
 Did you see r site
 Which product you r interested?

Round: HR Interview
Experience: ROUND 3:This was HR interview (10 mins)
There was only one male 
 Asked about myself, family background, hobbies and interests etc…
 About Mumbai. Y wld u love to live here. What about ur parents? Who will take care of them?
 What about ur further studies plan?
>> I said I m preparing for gate. (then again they started if u score good u wld leave tibco 
( I donno y were they so insecure) .. I had to say no I wont sir if I m placed at tibco on basis of my Btech qualification I don’t need to do gate, but if my job needs me to get an additional degree I will certainly go for it? )
 Any travel or relocation constraints? 
>> I said No
 He asked about so you fine about Hyderabad??  
>>I said not really sir, but then if there is no other vacancy its fine
 Then he explained me about Compensation 
 Then he asked did u visited our website, What attracted you the most.. 
 Y u want to join TIBCO
>>I said NASDAQ and Mr VIVEK RANADIVE
 Any questions for me???
>> What attracted you to Tibco?

General Tips: (Do tell us what you felt you could have done better, and whatever you feel would help someonein preparing for the company and getting the job. PLEASE TAKE YOUR TIME AND FILLTHIS SECTION PROPERLY.) Know you resume very well Having project work, co-curricular and extra-curricular activities add values to yourresume Be very specific with your answers upto the point.. Don’t confuse them an ddont beconfused.. Say only those things that you knw!! (technical/non-technical) Don’t be fake.BE YOURSELF It’s okay if you can’t answer few questions, tell them so, they might help you out Be confident about what you know and equally ignorant about the questions that you feelcan’t answer. It’s better to forget them rather than letting them affect the remainingcourse of your interview.
College Name: vjti

Interview questions from similar companies

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

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

ALGORTIH DS JAVA SPRING BOOT

I applied via Referral

Interview Questionnaire 

6 Questions

  • Q1. Your contribution in your projects?
  • Ans. 

    I have contributed to my projects by developing and implementing new features, fixing bugs, and improving overall performance.

    • Developed and implemented new features

    • Fixed bugs and issues

    • Improved overall performance

    • Collaborated with team members to ensure project success

    • Provided technical support and troubleshooting assistance

  • Answered by AI
  • Q2. How you resolve problems within team?
  • Ans. 

    I encourage open communication and collaboration to identify and solve problems within the team.

    • Encourage open communication and active listening

    • Identify the root cause of the problem

    • Brainstorm solutions as a team

    • Assign tasks and follow up on progress

    • Evaluate the effectiveness of the solution

    • Provide constructive feedback

    • Celebrate successes and learn from failures

  • Answered by AI
  • Q3. What are your expectations from the company?
  • Ans. 

    I expect a company that values innovation, growth opportunities, and work-life balance.

    • Opportunities for professional development and growth

    • A culture that encourages innovation and creativity

    • A healthy work-life balance

    • Clear communication and transparency

    • Competitive compensation and benefits

    • Collaborative and supportive team environment

  • Answered by AI
  • Q4. Do you have any plans of higher studies?
  • Ans. 

    Yes, I am planning to pursue a Master's degree in Computer Science.

    • I am interested in specializing in Artificial Intelligence.

    • I have already researched and shortlisted a few universities.

    • I plan to apply for the next academic year.

    • I believe higher studies will help me gain a deeper understanding of the field and advance my career.

  • Answered by AI
  • Q5. How flexible you are in professional life?
  • Ans. 

    I am very flexible in my professional life and can adapt to changing situations easily.

    • I am open to learning new technologies and skills

    • I can work in different environments and with different teams

    • I am willing to take on new challenges and responsibilities

    • I can adjust my work schedule to meet project deadlines

    • I am comfortable with remote work and flexible work arrangements

  • Answered by AI
  • Q6. Tell me about your self?
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for problem-solving.

    • Experienced in developing web applications using languages such as Java, Python, and JavaScript

    • Proficient in using frameworks such as Spring, Django, and React

    • Strong problem-solving skills and ability to work in a team environment

    • Passionate about learning new technologies and keeping up with industry trends

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 55 questions in 60 minutes of which 45 were technical and 10 were aptitude questions and there was no negative marking. The technical questions covered RDBMS, UNIX, C, C++, Java, Operating systems, Data structures and Algorithms. The questions were simple and the basics of each of the mentioned subjects were mainly asked.
Duration: 60 minutes
Total Questions: 55

Round: Test
Experience: Again mainly questions on the subjects covered in round 1 but bit more in deep questions required short but detailed answers.
Tips: Learn to write pretty good Unix Scripts and Know the Basics of Operating System & OOP
Duration: 40 minutes
Total Questions: 10

Round: Technical Interview
Experience: Questions mainly on UNIX & RDBMS. Interviewer will ask you to write UNIX scripts and SQL/JAVA-SQL queries/programs for some use cases.
Tips: Know how JOINS, INTERSECTION, UNION & Aggregation works in SQL.

Round: Technical Interview
Experience: Questions on Programming, Data Structure and algorithms.
You will be asked to write pseudo-program for some of the use cases.
Tips: Choose your programming language cleverly. ;)

Round: Other Interview
Experience: Round 5 is an interview with Technical Manager.
Questions are asked based on the content of your resume like projects, hobbies and traits.
Few puzzle questions are asked which usually can be answered with logical analysis.
Tips: Be prepared for questions on the answer you give for the previous question(s).

Round: HR Interview
Experience: Again question will be asked on the basis of your resume. Questions may also asked on your previous interview experience if you have any.
Tips: Clear your doubts before leaving the room.

General Tips: Be confident, be straight forward, do not try to bluff with answers and try to be creative with answers. Prepare well both technical and aptitude.
Skills: Algorithms And Data Structures, Operating Systems, Unix, SQL, Java Programming, Object-Oriented Programming (OOP), C Programming
College Name: JSS Mahavidyapeetha Sri Jayachamarajendra College Of Engineering, Mysore
Motivation: Work Environment of Informatica.

Interview Preparation Tips

Round: Test
Experience: Round 1: Online objective test.
There were questions from Operating Systems, C, Algorithms, Data Structures.

Round 2: Online and subjective (choose language C++ or JAVA). This round had 15 questions.
Data structures, C++ questions, Fibonacci optimisation, algorithms (DFS/BFS).

Round: Technical Interview
Experience: In the first round of interview they asked me questions about :1) My project (asked no. of classes and mention their responsibilities).
2) ACID properties of database and indexing in a database.

There were also questions related to OOPS concepts including polymorphism, composition, aggregation, inheritance, Abstract classes, interface; difference between usage of abstract class and interface, can abstract class be instantiated, how to access child class methods having reference of base class.
There was another question on run time and compile time binding and under which category do we classify method overloading and also questions on code for deleting the duplicate nodes in a sorted link list and printing root to leaf paths in a binary search tree.

Round: Technical Interview
Experience: This was the second round of the interview. They asked me the following questions,There is a tree (not binary) and all non-leaf nodes are RED in colour. Some leaf nodes are white in colour. If a node has all white coloured children then its colour can be changed into white. So we have to convert maximum number of nodes into white colour – write program for the same.
Code for checking whether a given binary tree balanced or not.
What are virtual functions, what is their role?
Questions related to virtual functions.

You are given the details of each transaction of each item i.e. item_name, quantity, price. So at the end of the day, you want top 50 items that have been sold. There are two cases:
In the first case you have fixed number of items.
In the second case very large number of items – so you need to decide what data structure to be used for this.

Round: Technical Interview
Experience: In the third round of the interview they asked questions like :
1) Types of tree traversals (breadth first and depth first (pre, post, in)
2) Determining width of binary tree i.e. using breadth wise traversal
3) Why files are preferred over databases?

College Name: IIT KANPUR
Contribute & help others!
anonymous
You can choose to be anonymous

TIBCO Software Interview FAQs

How to prepare for TIBCO Software Associate Consultant 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 Web Services, HTTP, Java, Microservices and MySQL.

Recently Viewed

SALARIES

Affixious

INTERVIEWS

Surin Automotive

No Interviews

INTERVIEWS

Bonami Software

No Interviews

INTERVIEWS

Surin Automotive

No Interviews

INTERVIEWS

Surin Automotive

No Interviews

INTERVIEWS

Surin Automotive

No Interviews

SALARIES

Kml Mouldings

INTERVIEWS

TIBCO Software

No Interviews

INTERVIEWS

Mayur Uniquoters

No Interviews

INTERVIEWS

Bonami Software

No Interviews

Tell us how to improve this page.

TIBCO Software Associate Consultant Salary
based on 175 salaries
₹5.6 L/yr - ₹13.5 L/yr
5% more than the average Associate Consultant Salary in India
View more details

TIBCO Software Associate Consultant Reviews and Ratings

based on 10 reviews

4.2/5

Rating in categories

4.4

Skill development

4.6

Work-life balance

3.8

Salary

4.1

Job security

4.6

Company culture

3.6

Promotions

4.1

Work satisfaction

Explore 10 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