Tip 1 : Do coding questions from each topic
Tip 2 : Do at least 3 projects from each language
Tip 3 : Try to solve practice questions.
Tip 1 : Mentions previous internship experience
Tip 2 : Mention a project from every language learned
This round was held in the evening around 4 pm in the TCS iOn center and I was feeling very nervous during the start of this round but when the test started, I feel that I was able to solve the test and the same happens.



STEP 1: Take num as input.
STEP 2: Initialize a variable temp to 0.
STEP 3: Iterate a “for” loop from 2 to num/2.
STEP 4: If num is divisible by loop iterator, then increment temp.
STEP 5: If the temp is equal to 0,
Return “Num IS PRIME”.
Else,
Return “Num IS NOT PRIME”.



1: 0 <= F[i] <= 2^31 - 1, (that is, each integer fits a 32-bit signed integer type);
2: F.length >= 3;
3: and F[i] + F[i+1] = F[i+2] for all 0 <= i < F.length - 2.
Input: "123456579"
Output: [123, 456, 579]
Explanation:
Since 123 + 456 = 579, therefore the given string can be broken into fibonacci sequence
Start
Declare variables I, a,b, and show
Initialize the variables, a=0, b=1, and show =0
STEP 1: Enter the number of terms of the Fibonacci series to be printed
STEP 2: Print the first two terms of series
STEP 3: Use a loop for the following steps
show=a+b
a=b
b=show
increase the value of I each time by 1
print the value of the show
End
This round is a technical interview round where I have 2 panelists face to face and I was able to answer the questions and therefore clear the round.
Are NULL values in a database the same as that of blank space or zero?
No, a NULL value is very different from that of zero and blank space as it represents a value that is assigned, unknown, unavailable, or not applicable as compared to blank space which represents a character and zero represents a number.
What do you mean by a process?
An executing program is known as a process. There are two types of processes:
Operating System Processes
User Processes



Consider if ‘N’ = 4, the Factorial of 4 will be the product of all numbers from 1 to 4, which is 1 * 2 * 3 * 4 = 24. Hence, the answer is 24.
Start program
Ask the user to enter an integer to find the factorial
Read the integer and assign it to a variable
From the value of the integer up to 1, multiply each digit and update the final value
The final value at the end of all the multiplication till 1 is the factorial
End program
This is the face-to-face Hr round held at my University and I was able to crack this round.
Why should we hire you?
Assuming you are hired, then how long would you expect to work for us?
What are your achievements in life?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?