Tip 1 : Firstly pic any coding language and learn all basic concepts
Tip 2 : Then start learning diff Data Structures and practise at least 50 questions on each data structure with learnt coding language.
Tip 3 : Also prepare DBMS , OS and OOPs concepts for placement preparation.
Tip 1: Mention only skills which you really have
Tip 2: Clearly mention projects which you have done
Coding Questions, Conceptual and Code Analysis



Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.



If we are given a string ‘aabb’.Then we can see the frequency of a=2 and b=2. The position of ‘a’ in alphabets is 1 and the position of ‘b’ is 2. So ‘a’ has an even frequency but its position is odd, so it will not contribute to M. As ‘b’ has an even frequency and its position is also even, so M=1. Now M =1 which is odd, so we have to return “ODD”.
int ans = 0;
for(auto ele : arr){
if(ele%2==0) ans++;
}
print(ans);
Basic Introduction, Discussion on projects, coding question and puzzle



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
Write the steps to create, update and drop a view in SQL.
CREATE VIEW View_Name AS
SELECT Column1, Column2, Column3, ..., ColumnN
FROM Table_Name
WHERE Condition;
You are given 9 coins. One of them is biased, having a light weight than others and a weighing scale. detect the biased coin in minimum moves
just asked basic hr questions
1. Introduction
2. Strength and Weakness
3. Discussion on projects mention in the resume

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?