Tip 1 : Never skip the conceptual part of JAVA , C
Tip 2 : All have good programing logic in any one programing Language (JAVA , C OR PYTHON)
Tip 3 : Have good knowledge in DBMS , SQL
Tip 1 : Always Make 1 page resume not more than one page.
Tip 2 : Put project description properly and add link of the project .
First round consisting of English questions , Reasoning , coding MCQ'S and Coding questions Coding round of 20 mins



For the given input array [1, 1, 3],
1 can be represented as the sum of elements of the subset [1],
2 can be represented as the sum of elements of a subset [1, 1],
3 can be represented as the sum of elements of a subset [3],
4 can be represented as the sum of elements of a subset [1, 3],
5 can be represented as the sum of elements of a subset [1, 1, 3]
So, the smallest positive integer value that cannot be represented as a sum of elements of any subset of a given array is 6.
import java.util.*;
public class tuf {
public static void main(String args[]) {
int arr1[] = {2,5,1,3,0};
System.out.println("The smallest element in array is: " + sort(arr1));
int arr2[] = {8,10,5,7,9};
System.out.println("The smallest element in array is: " + sort(arr2));
}
static int sort(int arr[]) {
Arrays.sort(arr);
return arr[0];
}
}
Here 10 members were in a Microsoft Teams call along with the Interviewer. We are given a topic we are given around 20 minutes time to talk about the topic. And after all the people completed, the interviewer asked to give a conclusion for the topic.
Tip 1 : Be fluent
Tip 2 : Be confident while speaking
Tip 3 : Just give your opinion do not much consider for being practically right.



Tip 1 : Learn java all basic concepts
Tip 2 : learn DBMS AND SQL as well as OS
Tip 3 : Learn C properly and basic conceptual questions

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?