Tip 1 : Must do Previously asked Interviews as well as Online Test Questions.
Tip 2 : Prepare OS, DBMS, OOPs, Computer Networks well.
Tip 3 : Prepare well for one project mentioned in the resume, the interviewer may ask any question related to the project, especially about the networking part of the project.
Tip 1 : Have at least one project in the resume.
Tip 2 : Must mention every skill and certificate in the resume.
Tip 3 : Must have known every strong and intermediate skill mentioned in resume.
3 Questions were there, with medium-level difficulty, those who solved all three questions only got selected for interviews.



Output: 2
If there is no restriction on choosing the boxes then the maximum number of chocolates the 5 students equally can have is 3 by picking all boxes except the box at index 2(0-based indexing). So total candies will be 3+2+5+4+1 = 15 and each of the 5 students will get 15/5=3 candies.
But we are allowed to choose only consecutive boxes. So if we choose boxes [0,1] then 3+2=5 then each student will have only 1 chocolate and when we choose boxes[4,6] as 5+4+1=10 then each student will have 2 chocolates. So the maximum number of chocolates each student can get is 2.
Step 1- Sorted the array.
Step 2 - applied two pointer approach i.e took two integers i and j, point i to first element while pointing j to the last element of the array.
Step 3 - in every step do count++ and j--;
Step 4 - if sum of ith and jth element is less than K then do i++;



1. Buying a stock and then selling it is called one transaction.
2. You are not allowed to do multiple transactions at the same time. This means you have to sell the stock before buying it again.
Input: ‘n’ = 7, ‘prices’ = [3, 3, 5, 0, 3, 1, 4].
Output: 6
Explanation:
The maximum profit can be earned by:
Transaction 1: Buying the stock on day 4 (price 0) and then selling it on day 5 (price 3).
Transaction 2: Buying the stock on day 6 (price 1) and then selling it on day 6 (price 4).
Total profit earned will be (3 - 0) + ( 4 - 1) = 6.
The interviewer asked for my introduction , then asked me to explain the project . He then asked how i developed the website from scratch i.e. he asked me about the life cycle of development of the project and some more follow up questions regarding technologies used. He then asked few questions on Operating system and OOPS and asked me to code and explain some concepts of OOPS. He then asked me one coding questions.



You do not need to print anything, just return the head of the reversed linked list.
I applied three pointer approach here.
Step 1 - Initialize three pointers prev as NULL, curr as head and next as NULL.
Step 2 - Iterate through the linked list and do
next = curr->next
curr->next = prev
prev = curr
curr = next

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?