Tip 1 : Focus on core concepts.
Tip 2 : Aptitude and communication skills are important in mass recruitment jobs.
Tip 3 : Prepare for GD.
Tip 1 : Describe your internship experience thoroughly.
Tip 2 : Make cover letter attractive.
It was scheduled in afternoon. It was an online round which consists of MCQ and 2 coding questions.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
1. One way to solve this problem is using creating a new linked list.
2. But in java collection framework, a method to reverse linked list is already there.
3. I just modified the code to make it adjustable to be used by collection framework.
4. For this I imported java.util.*
5. Declared a reversed linked list iterator present in collection framework and applied it on the input.



If the given string 'STR' = ”I am a student of the third year” so you have to transform this string to ”I Am A Student Of The Third Year"
'STR' will contains only space and alphabets both uppercase and lowercase. The words will be separated by space.
It was a HR round whose whole objective was to test basic communication skills of the candidate. Almost all the students who passed coding round passed HR round as well.
Why do you want to join TCS?
What defines you the best?
Tip 1 : Always study about the history of company.
Tip 2 : Explain that your vision is inline with the company 's goal.
Tip 3 : Don't hesitate.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: