Tip 1 : focus more on problem solving,data structure do atleast 3-4 code daily
Tip 2 : appear in the coding contest
Tip 3 : Do atleast 2 attractive project and make it use impressive structure,consistency is the key
Tip 1 : Have some good projects on resume
Tip 2 : Put things on resume in which you are confident
Timings: its in morning 9-11
Environment:its good and user friendly
Level: level of questions is pretty good
Interviewer: was nice and he was trying to checkl out all the knowledge and no one can not bluff him



1234 is represented as (1 -> 2 -> 3 -> 4) and adding 1 to it should change it to (1 -> 2 -> 3 -> 5).
The input Linked list does not have any trailing zeros.



Let S = “abdd” and X = “bd”.
The windows in S which contain all the characters in X are: 'abdd', 'abd', 'bdd', 'bd'.
Out of these, the smallest substring in S which contains all the characters present in X is 'bd'.
All the other substring have a length larger than 'bd'.
Write a query to display the records which have 3 or
more consecutive rows and the amount of people more than 100(inclusive).
-- X city built a new stadium, each day many people visit it and
the stats are saved as these columns: id, visit_date, people
-- Please write a query to display the records which have 3 or
more consecutive rows and the amount of people more than 100(inclusive).
-- For example, the table stadium:
-- +------+------------+-----------+
-- | id | visit_date | people |
-- +------+------------+-----------+
-- | 1 | 2017-01-01 | 10 |
-- | 2 | 2017-01-02 | 109 |
-- | 3 | 2017-01-03 | 150 |
-- | 4 | 2017-01-04 | 99 |
-- | 5 | 2017-01-05 | 145 |
-- | 6 | 2017-01-06 | 1455 |
-- | 7 | 2017-01-07 | 199 |
-- | 8 | 2017-01-08 | 188 |
-- +------+------------+-----------+
-- For the sample data above, the output is:
-- +------+------------+-----------+
-- | id | visit_date | people |
-- +------+------------+-----------+
-- | 5 | 2017-01-05 | 145 |
-- | 6 | 2017-01-06 | 1455 |
-- | 7 | 2017-01-07 | 199 |
-- | 8 | 2017-01-08 | 188 |
-- +------+------------+-----------+
-- Note:
Tip 1 : read the question carefully
Tip 2 : think simple approach first then move to optimal one
Tip 3 : maintain your speed too
Timing : Afternoon
Environment: zoom call
Its a technical round where he was asking concept of data structure , projects related questions, cross questions, sql concepts and questions
What is s in https
Tip 1 : Read editorial
Tip 2 : read interview questions
Tip 3 : practice mock tests
Select the nth employee from the table
Tip 1 : practice sql queries
Tip 2 : learn concept
Tip 3 : stay confident
Inheritance , abstract class, method overloading
Tip 1 : read java editorial from geeks
Tip 2 : practice some question
Tip 3 : stay calm
Are you maintaing question bank or adding a question in real time
(As my project is online test system)
I answered i am adding questions at real time and it add and at the same time it is adding to the question bank
I have the dropdown too where we can select existing questions
Which api u used in your projects
I answerd - map api , sms api, email api, google drive api, spreadsheet api
Timing : morning
Environment : zoom call
Project related question
He asked me to describe project
He asked me to describe about tech stacks i used and why this tech stack is feasible
He asked me about myself too
He asked me about how coding is important
He gave me some scenarios and asked me to give some solution about projects
Tip 1 : do projects by yourself
Tip 2 : your project should attractive and technical
Tip 3 : try to practice each and every module of your projects
Its a leadership round in which they were asking about strength weakness hobbies what type is you what is your achievement other then academics situation where you think you have the qualities of leadership
Strength , weekness , in which situation you think you have the leadership qualities
Tip 1 : practice mock interview
Timings : mornjng
How was the interview process, how you perform , salary discussion , about incedo and some casual talks
Tip 1 : keep relax you are in hr round
Tip 2 : answer confidently with reality
Tip 3 : dont give fake answers he is senior he knows everything

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?