Tip 1: Have good command over a programming language
Tip 2: Practice Questions Asked previously in the Company you appearing for. Many times questions repeat
Tip 3: Keep 2 good projects handy, and 1-2 internships
Tip 1: Do 2 Projects (minimum)
Tip 2: Complete 1 internship (minimum)
Timing - 10-11 am
It was an online assessment, candidate were allowed to appear for the exam from their home.



Input: 'n' = 5, 'arr' = [1, 2, 3, 4, 5]
Output: 5
Explanation: From the array {1, 2, 3, 4, 5}, the largest element is 5.
int max=-999999,maxIdx=-1;
for(int i=0;imax)
{
max=arr[i];
maxIdx=i;
}
}
Which of the following layers isn’t present in the TCP/IP model but is included in the OSI model
Network
Session
Application
Transport
Which of the following data structures can be used to implement queues?
Array
Stack
Linked list
All of the given
What is the maximum number of swaps that can be performed in the Selection Sort algorithm?
N-1
1
N-2
N
Which of the following is a command of DDL?
Alter
Delete
Create
All
Which data structure is used in Hierarchical model records?
Graph
Tree
Linked List
Stack
This was an in-person technical round at Amity Campus.
Questions were asked from - Java, SQL, OS, DBMS



There is only one space between the values of each column in a row.
For example, Pattern for ‘N’ = 5 will be.
1 2 3 4 5
11 12 13 14 15
21 22 23 24 25
16 17 18 19 20
6 7 8 9 10



A subarray is a slice from a contiguous array (i.e., occupy consecutive positions) and inherently maintains the order of elements.



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.




For the above-linked list, if k=2, then the value at the kth i.e second node from the end is ‘12’.
1.You don’t need to take any input. It has already been taken care of. Just implement the given function and return a pointer pointing to the k-th element from the last of the linked list.
2.It is guaranteed that k<=size of the linked list.
Write a query to join two tables A and B.
Write a query to find all names in the database starting with 'f'
What is a Binary Search Tree?
What is the Travelling Salesman Problem?
Difference between ArrayList and Vector. (Learn)
What is Multithreading?
What are ACID properties?
Difference between Delete Drop and Truncate. (Learn)
Why is Java Platform independent? (Learn)
Question from Resume about Projects and internships.
Asked how and why these projects were made. Tech used and challenges faced. Same for internship
This was the Managerial Round.
Students who were shortlisted from the technical round appeared for this.
Why should we hire you?
You have done so many internships with good companies, so why choose us over them?
Are you aware of any ongoing projects/works of GlobalLogic?
What if we select you and some other companies offer you a higher package?
Where do you see yourself in the next 5 years?
Do you have any plans for higher education?
Tell me what did you do in the last four years apart from projects, internships and college stuff?
Candidates who cleared the Managerial Round appeared for the final round which is the HR round.
A scenario was given, where there was a conflict between me and my teammate, and I had to explain how will I act on it.
The deadline for an important project is coming. You have completed your part but your teammate is lagging. What will you do?
Tell me Something that is not in your resume.
Asked me questions related to my internship.
What would you do if you had an important client meeting and your anniversary/birthday on the same evening?

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