Tip 1: Work on some good projects for your resume.
Tip 2: Practice as much as you can.
Tip 3: I understand that you might forget the logic of problems you've solved before, but try to solve them again or review the logic repeatedly.
Tip 1: Include some good projects on your resume.
Tip 2: Avoid including things in which you are not proficient.
It was at 2 pm. The camera and microphone were on.



Given:
‘N’ = 3, ‘M’ = 3.
‘edges’ =
[[0 1 1],
[1 2 1],
[0 2 3]]
‘src’ = 0, ‘dest’ = 2.
There are two possible paths, that is to go from node-0 to node-2 directly, which will take 2 units of effort, or go from node-0 to node-1 and then node-1 to node-2, which will take 1 unit of effort.



Here, sorted paths mean that the expected output should be in alphabetical order.
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1
Expected Output:
DDRDRR DRDDRR
i.e. Path-1: DDRDRR and Path-2: DRDDRR
The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
Online round. This round was in the evening around 4 pm.



There is no restriction on how you encode/decode the N-ary tree.
N-ary Tree is given as follows:-
6
1 -1 2 3 4 -1 5 -1 6 -1 -1 -1 -1
The above N-ary tree and its encoded binary tree can be represented as follows:-

The above binary tree can be represented as follows in their level order traversal:-
1
2 -1
5 3
-1 -1 6 4
-1 -1 -1 -1
The panellist was a Senior Platform Engineer at JUSPAY. The interview started by greeting each other followed by which the panellist asked me to share my resume and introduce myself.


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.
1. Explain your projects. (Explained use case, tech stack and my contribution to the project)
2. What have you done in college apart from academics? (A. TPC and SCOPE courses)
3. He then asked me to explain Inheritance and whether is it possible to implement it in Python. (Learn)
4. What is ACID Properties in DBMS? (Learn)
5. What are the differences between HTML and HTML5? (Learn)
6. What is typescript? (Learn)

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