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.
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.
Technical round based on DSA. 2 easy problems were asked.



Input: Linked List: 1 <-> 2 <-> 2 <-> 2 <-> 3
Output: Modified Linked List: 1 <-> 2 <-> 3
Explanation: We will delete the duplicate values ‘2’ present in the linked list.
Check if the current element has the same value as the next element, if so adjust the pointers such that the next to next element of the current element is the next element.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
Traverse the string and swap the first character with the last character, the second character with the second last character and so on.
Basically, you need to swap the i-th character with the (N-i-1)-th character where N is the length of the string and 0-based indexing is considered.
As I was getting evaluated for automation testing, the technical rounds were very much focused on topics like selenium, jenkins, java, soap and rest services, linux etc.
How to handle multiple windows using selenium?
How to calculate xpath and css of an element?
Difference between soap and rest web services.
Which is better, soap or rest?
Some questions on testNg annotations.
If there are 2 linux servers, you are logged in to one server. how will you check that the other server is up or not.
Linux command to check ram and memories.
How will you check whether a tool tip is getting displayed or not using selenium webdriver?
If you clear both the technical rounds, a managerial round is conducted. The managerial round was mainly focused on the processes that you follow in your existing company, the tools you use in your existing project, some situation based questions, few technical questions and future expectations from tibco. Once you are through the managerial round, you are called for the HR round where they just brief you about the salary breakup and ask the expected salary.
1. Why TIBCO?
2. Where do you see yourself after 5 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?