Tip 1 : Practice SQL queries
Tip 2 : Practice Array and String program
Tip 3 : You have necessary to mentioned project in your resume and proper knowledge about project.
Tip 1 : Mention your technical skills in details
Tip 2 : Mention project in resume
Interview was scheduled in afternoon time.
It was video call interview and there were 2 developer who asked the questions.



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.
I need to sort array element in asc order without using sort() function.
For sorting an array without the “sort()” method, you can use:
Selection sort
Insertion sort
Bubble sort

Input: 's' = "pqqr"
Output: 5
Explanation: The subsequences are:
p
q
q
r
qq
Please note that both "q" are considered different.
The simplest method would be to find out all the substrings of the given string first which takes a time complexity of O(n2). After that, we cruise through all the substrings and find those which are palindromes. This further takes a time complexity of O(n).
In afternoon
Interviewer was very decent.
What are your views on the inrease in demand of Junk Food?
Do you think any legal action is needed for it or it is just over an individual's personal wish?
In evening ( after 7pm)
Interviewers was a very cool person.
Have you ever created azure project or used any azure function? What do you know about Azure of AWS?
What is area in MVC architecture?
What is the difference between temp table and temp variable?
What technology we have used in .net core for database connection?



You do not need to print anything, it has already been taken care of. Just implement the given function.
Let ‘NUM1’ be: “5”
Let ‘NUM2’ be: “21”
The sum of both numbers will be: “26”.
Scan each character of the input string and if a number is formed by consecutive characters of the string, then increment the result by that amount. The only tricky part of this question is that multiple consecutive digits are considered one number.
In afternoon
Interviewer was friendly
Introduce yourself.
Why should we hire you?
What do you know about LTI?
Where do you see yourself after 5 years?
Tip 1 : Search about what services company offers
Tip 2 : Who is the company owner, and when the company was established.

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?