TIBCO Software India PVT LTD interview experience Real time questions & tips from candidates to crack your interview

Member of Technical Staff

TIBCO Software India PVT LTD
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Data Structures, Java, SQL, OOPS, System Design, Algorithms
Tip
Tip

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application process
Where: Referral
Eligibility: Above 7 CGPA
Resume Tip
Resume tip

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Interview rounds

01
Round
Easy
Video Call
Duration45 minutes
Interview date22 Mar 2021
Coding problem2

Technical interview round with questions on DSA mainly.

1. k-th node from the end of the linked list

Easy
15m average time
85% success
0/40
Asked in companies
AppleHikeIntuit

Given the head node of the singly linked list and an integer ‘k’, , find the value at the kth node from the end of the linked list.

For example:

Linked List

For the above-linked list, if k=2, then the value at the kth i.e second node from the end is ‘12’.
Note :
1.You don’t need to take any input. It has already been taken care of. Just implement the given function and return a pointer pointing to the k-th element from the last of the linked list.
2.It is guaranteed that k<=size of the linked list.
Problem approach

We can find the kth node from end very easily if we know the total number of nodes in the list.
We take a pointer ‘cur’ (initially pointing to head) and a variable ‘cnt’ to count total number of nodes.
We move the ‘cur’ pointer forward by one step until we reach NULL and increment the count variable by one in each move.
We will use the following property to find the kth node from the end.
Kth node from end = (cnt-k+1)th node from the beginning.
Let us store the value of cnt-k+1 in a variable ‘n’.
Now traverse the linked list again and return the pointer to the ‘nth’ node.

Try solving now

2. Valid Parentheses

Easy
10m average time
80% success
0/40
Asked in companies
OracleAmerican ExpressPayPal

You're given a string 'S' consisting of "{", "}", "(", ")", "[" and "]" .


Return true if the given string 'S' is balanced, else return false.


For example:
'S' = "{}()".

There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Problem approach

Make use of the stack. Traverse the string and push the current character in the stack if it is an opening brace else pop from the stack If it is the corresponding starting brace for current closing brace then move to the next character of the string otherwise return false.

Try solving now
02
Round
Easy
Video Call
Duration40 minutes
Interview date25 Mar 2021
Coding problem2

Technical interview round with questions on Java mainly.

1. Java questions

Print even and odd number using two threads
JDBC connection establishment steps
Types of result set

2. Core Java questions

Exception Handling
HashMap
HashSet
Hashcode
Equals
Multithreading

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
Member of Technical Staff
3 rounds | 6 problems
Interviewed by TIBCO Software India PVT LTD
610 views
0 comments
0 upvotes
Member of Technical Staff
3 rounds | 4 problems
Interviewed by TIBCO Software India PVT LTD
714 views
0 comments
0 upvotes
SDE - 2
2 rounds | 4 problems
Interviewed by TIBCO Software India PVT LTD
917 views
0 comments
0 upvotes
Member of Technical Staff
1 rounds | 2 problems
Interviewed by TIBCO Software India PVT LTD
575 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Member of Technical Staff
4 rounds | 13 problems
Interviewed by Oracle
5378 views
0 comments
0 upvotes
company logo
Member of Technical Staff
3 rounds | 10 problems
Interviewed by Adobe
990 views
0 comments
0 upvotes
company logo
Member of Technical Staff
2 rounds | 5 problems
Interviewed by Oracle
1567 views
0 comments
0 upvotes