Tip 1 : whatever you are preparing implement by solving problems
Tip 2 : do some projects
Tip 1: don't mention false things
Tip 2: keep ur resume short
This round timing was 3 Pm and this round I was asked my previous projects and coding questions
About my previous companies work experience, my previous projects, what was my roll, what chalanges i faced while working and all.



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.
1. Define a function that takes a list of integers as an input parameter.
2. Use nested loops to compare adjacent elements in the list and swap them if the previous element is smaller than the current element.
3. Repeat this process until the list is sorted in descending order. Return the sorted list.



1. The array follows 0-based indexing, so you need to return 0-based indices.
2. If 'x' is not present in the array, return {-1 -1}.
3. If 'x' is only present once in the array, the first and last position of its occurrence will be the same.
Input: arr = [1, 2, 4, 4, 5], x = 4
Output: 2 3
Explanation: The given array’s 0-based indexing is as follows:
1 2 4 4 5
↓ ↓ ↓ ↓ ↓
0 1 2 3 4
So, the first occurrence of 4 is at index 2, and the last occurrence of 4 is at index 3.
Tip 1:Define a function that takes a list of integers and a search key as input parameters.
Tip 2:Initialize two pointers, one at the beginning and one at the end of the list.
Tip 3:Use a while loop to iterate through the list, checking if the current element matches the search key. If a match is found, return the index of the current element. If no match is found, return -1.
This was My 2nd round, and in this round I was asked questions from DSA and dbms



Conditions for valid parentheses:
1. All open brackets must be closed by the closing brackets.
2. Open brackets must be closed in the correct order.
()()()() is a valid parentheses.
)()()( is not a valid parentheses.
Tip 1:Define a function that takes a string as an input parameter.
Tip 2:Initialize an empty stack and iterate through each character in the string.
Tip 3:If the current character is an opening bracket, push it onto the stack. If it is a closing bracket, check if it matches the top element of the stack. If there is a match, pop the top element from the stack. If there is no match or the stack is empty, the string is not balanced. After iterating through all characters, if the stack is empty, the string is balanced.
They're have Given 3 tables, I need to perform all types of joins, rownum and many more etc.
This is 3rd technical round and this round was about cloud computing.
What is the difference between horizontal scaling and vertical scaling in cloud computing?
What is serverless computing, and how does it differ from traditional cloud computing?
Tip 1: I've Define about horizontal scaling
Tip 2: give examples on them
Tip 3: same type I've given answer on different types of cloud computing
How can I secure my AWS infrastructure against external threats?
Tip 1:Use IAM
Tip 2: Enable encryption
Tip 3:aws security services
How can I optimize the cost of my AWS infrastructure?
Tip 1: Use AWS cost explorer
Tip 2: use AWS cost anamoly detection
This was HR round
About my past experience, previous projects and all

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?