Tip 1 : Prepare at least one topic perfect like Embedded, C, Python
Tip 2 : Understand the different Pointers and array concepts and applications.
Tip 3 : Prepare for pattern printing programs.
Tip 1 : Highlight your confident skills.
Tip 2 : Prepare for each word which is mentioned in the resume.
Given timeslot for morning
Test was with camera based AI enabled environment provided for test via Metro online test platform


*
**
***
****
Coding Question



For the given arr[ ] = { -1, 3, 5, 0, -2, -5 }
arr[ ] = {3, -1, 5, -2, 0, -5 } is valid rearrangement.
arr[ ] = {3, -1, 0, -2, 5, -5 } is invalid rearrangement; order of 0 and 5 is changed.
arr[ ] = {3, -1, 5, 0, -2, -5 } is invalid rearrangement; positive and negative elements are not alternative.
Make changes in the same array and no returning or printing is needed.
Consider zero(0) as a positive element for this question.
It is guaranteed that an answer always exists.
It was from afternoon to till night 9 pm
RTOS and embedded systems questions and C programming knowledge.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the best case time complexity of Bubble Sort?