Tip 1: Begin with the basics of Data Structures and Algorithms (DSA) using C++.
Tip 2: Prioritize coding and DSA in your learning journey.
Tip 3: If you excel in web development, allocate more time to it rather than competitive programming (CP).
Tip 1: Projects are most important.
Tip 2: The skills set should be there, but not the false one.
The MCQs were of medium difficulty level, covering basic concepts in coding, DBMS, networking, and DSA. The time allotted was sufficient, and I completed the test before the deadline.

The function/method calculateMatrixSum returns an integer representing the sum of odd elements of the given matrix whose ith and ith index are the sameThe function/method calculateMatrixSum accepts three arguments-rows an integer representing the number of rows of the given matrix, columns, an integer representing the number of columns of the given matrix and matrix, representing a two-dimensional array of integers. The function/method calculateMatrixSum compiles successfully but fails to return the desired result for some test cases due to logical errors. Your task is to fix the code so that it passes all the test cases.
This will explain explain
class Main {
static int calculateMatrixSum(int matrix[][], int m, int n)
{
int i,j,sum=0,row=m, column=n;
if((row>0)&&(column>0))
{
for(i=0;i {
for(j=0;j {
if(i==j)
{
if( matrix[i][j] % 2 != 0)
sum+=matrix[i][j];
}
}
}
}
return sum;
}
public static void main (String[] args) {
Scanner sc=new Scanner(System.in);
int rows=sc.nextInt();
int columns=sc.nextInt();
int twoD[][]=new int[rows][columns];
for(int i=0; i
{
for(int j=0; j
{
twoD[i][j]=sc.nextInt();
}
}
System.out.println(calculateMatrixSum(twoD,rows,columns));
}
}



The function/method maxReplace prints space-separated integers representing the input list after replacing all elements of the input list with the maximum element of the input list. The function/method maxReplace accepts two arguments-size, an integer representing the size of the input list and inputList, a list of integers representing the input list, respectively. The function/method maxReplace compiles unsuccessfully due to a compilation error. Your task is to debug the code so that it passes all the test cases.
Step 1. read question carefully
Step 2: you easily find solution if u done leetcode
It was October 13, 2022, around 2 PM. I had an interview call on Google Meet, and I was sitting alone in my PG room. I closed the door to ensure nobody could come behind my camera, so I had complete privacy. The interviewer was skilled, demonstrating excellent observation and listening abilities.



Write code in your preferred language of printing Fibonacci Sequence, is a sequence where the next term is the sum of the previous two terms.
1. initialize first and second terms with 0 and 1
2. initialize the next term (3rd term) sum of above 2
3. print the first two terms t1 and t2 say
4. print 3rd to nth terms using loop
What is atomicity?
Tip 1: These are basic theoretical questions.
Tip 2: You can prepare them 1-2 months before your placement starts.
Tip 3: Atomicity is a property of database transactions that ensures that a set of database operations either all occur, or none occur.
What is normalization in DBMS and their types?
Tip 1:Normalization is used to minimize the redundancy from a relation or set of relations. It is also used to eliminate undesirable characteristics like Insertion, Update, and Deletion Anomalies.
Tip 2:Normalization divides the larger table into smaller and links them using relationships.
Tip 3:Types are
1NF
2NF
3NF
BCNF
4NF
5NF
I was around 4 pm on 14 october very next day after technical interview. I was sitting alone in my PG room.
Interviewer was keen observer and good listener he did cross questioning also.
Interviewer was keen observer and good listener he did cross questioning also.
He asked question like
1.Introduce yourself.
2.Your strengths and weakness.
3.Where do you see yourself in next 5 years?
4.Would If given chances will u switch to other roles in company if selected?
5.Name your subjects in last semester?
6.Your family background?
Tip 1:Be confident you have cracked TR.
Tip 2:Be in formal and maintain great posture.
Tip 3:Be truthful.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?