Tip 1 : practice more on DSA,OPPS, to be on safer side also learn aws, sql and dbms
Tip 2 : do some project either on web development or app building, don't fake in the resume
Tip 3 : maintain a descent CGPA
Tip 1 : make resume simple ,crisp and more appealing
Tip 2 : mention latest skill-sets and project(2-3 projects only) and also mention internship you did
Nearly 10 am from my study room. It was a proctored based online test, Interviewer was really good ,had a really great technical session


Assume that the Indexing for the linked list starts from 0.
Input: ‘N’ = 5, 'LIST' = [1, 1, 2, 3, 4, -1], ‘VAL’ = 2, ‘POS’ = 1.
Output: 1 -> 2 -> 1 -> 2 -> 3 -> 4
Here in the given list we can see that the node having value 2 is inserted at position 1.



Pattern for ‘N’ = 5:

‘N’ is always odd.



[1, 2, 3, 4] is a strictly increasing array, while [2, 1, 4, 3] is not.
Around 10am interview was conducted ,i was asked to share my computer screen and code one problem on recursion, followed my technical questions on data structure and oops.



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.
import java.io.*;
// importing utility classes
import java.util.*;
// Main class
class GFG {
// Method 1
// To calculate factorial
static int factorial(int n)
{
// Handling base case
// If value of n=1 or n=0, it returns 1
if (n == 0 || n == 1)
return 1;
// Generic case
// Otherwise we do n*(n-1)!
return n * factorial(n - 1);
}
// Method 2
// main driver method
public static void main(String[] args)
{
// Calling method 1 to compute factorial and
// storing the result into a variable
int ans = factorial(5);
// Print and display the factorial of number
// customly passed as an argument
System.out.println("Factorial of 5 is :" + ans);
}
}
asked me to introduce myself, why did i chosen my collage. And Briefed me about company policies and PAN india location and also asked me that i agree to the bond for year with 1lakh penalty.
Introduce yourself
why did i chosen my college
Do you have any conflicts with current professor?
asked me that i agree to the bond for year with 1lakh penalty.

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?