Tip 1 : Focus on data-structures and algorithms fundamentals
Tip 2 : Learn Javascript fundamentals for interviews
Tip 3 : Having good projects on resume is an added advantage
Tip 1 : Do not put false projects on resume.
Tip 2 : Have good projects on your resume
Write a query to create an employee table with (employee_id, name, dept) with employee_id as its primary key
For the given binary tree:
The Inorder traversal will be [5, 3, 2, 1, 7, 4, 6].
Your were given the elements with which you will make a tree data structure and do in order tree traversal and print the elements
Interview on google meet
Given two tables, return a inner join on a common column (key)
If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.
step 1 : you can apply nested for loop for checking if it exists (not good enough though)
step 2 : you can use two pointer approach or binary search technique to accomplish the task faster.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?
I m intrested to join your company when opening s are released ☺️