Tip 1 : Practice as many question you can
Tip 2 : Focus on key concept
Tip 3 : Practice previous year question
Tip 1 : Specify at least one good project
Tip 2 : Write only those things which you know in detail
The round contain 20 MCQ and 2 coding questions.



If 'K' is greater than 'N', return -1 denoting the invalid order.
Given if 'N' = 10, 'K' = 5. Then 5 candies are left in the jar after the event.


1. The remaining oxygen level should only be accepted if it is in the range between [1, 100] both inclusive else the oxygen level will be marked as 0.
2. If the calculated maximum average oxygen remaining value of trainees is below 70, then declare the trainees as unfit with the meaningful message as “Unfit.”
3. The average remaining Oxygen level should be rounded.
Output for the above case will be
Trainee1
Unfit
Trainee3
Because the maximum average is 70 which is in the range and Trainee 1 and 3 both have the same value.
Trainee 2 is unfit because the average is below 70.
Easy question where asked basic type like what is difference between inteprator and compiler. Method to prevent deadlock and best way to implement Fibonacci series.



The series is 1-based indexed.



The given linked list is 1->2->3->4 then after reversing the alternate nodes we will have 1->3->4->2.
Assuming 0 based indexing, odd indexed nodes are the alternate nodes that is, in the given linked list the node with value 2 and the node with value 4 are the alternate nodes.
List without alternate nodes: 1->3
List with alternate nodes: 2->4
Reversing the list with alternate nodes: 4->2
After appending the reversed alternate nodes at the end, the updated list will be 1->3->4->2.
Take 2 variable fast and slow , fast=temp->next and slow = temp and then transverse slow will be at the middle of the linked list.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: