Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Techjockey Infotech Pvt.Ltd. Team. If you also belong to the team, you can get access from here

Techjockey Infotech Pvt.Ltd. Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 72 Reviews

Filter interviews by

Techjockey Infotech Pvt.Ltd. Senior Software Consultant Interview Questions and Answers for Freshers

Updated 15 Oct 2024

Techjockey Infotech Pvt.Ltd. Senior Software Consultant Interview Experiences for Freshers

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Cocubes and was interviewed before Mar 2020. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Telephone round
  • Q2. Basic job profile match
Round 2 - One-on-one 

(2 Questions)

  • Q1. Interview with a manager level
  • Q2. Questions on SaaS apps
Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview with VP
  • Q2. Behavioural and use case specific questions

Interview Preparation Tips

Topics to prepare for Techjockey Infotech Pvt.Ltd. Senior Software Consultant interview:
  • SAAS
  • Software Sales
Interview preparation tips for other job seekers - Atul and Varun were great interviewers. It was a great experience. I got hired straight from my college in 2017 as Software consultant.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Round 1 was coding test.

Round 2 - Technical 

(2 Questions)

  • Q1. Round 2 was Technical
  • Q2. Questions on TreeTraversal
Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was Technical round
Round 4 - HR 

(1 Question)

  • Q1. This was the final round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

They have their own coding platform. The questions are basically from tree.

Round 2 - Coding Test 

Tree of space question

Round 3 - Technical 

(2 Questions)

  • Q1. Previous round question solution
  • Q2. System design was asked.

Interview Preparation Tips

Topics to prepare for JUSPAY Software Developer interview:
  • tree
  • graph
  • system design
Interview preparation tips for other job seekers - Should have good knowledge of tree ,graph and system design.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. React, React Native Basics
  • Q2. Coding Arrays & Objects

Interview Preparation Tips

Interview preparation tips for other job seekers - Better Experience
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. About your self and experience
Round 3 - One-on-one 

(1 Question)

  • Q1. About trace32 and canoe
Round 4 - HR 

(1 Question)

  • Q1. About previous project

Interview Preparation Tips

Interview preparation tips for other job seekers - Have knowledge in testing department and DCM
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening. Platform was good.

  • Q1. Largest Cycle

    You are given a maze consisting of N cells numbered from 0 to N - 1 and an array ‘arr’ of N integers in which arr[i] contains the cell number that can be reached from ‘i’th cell in one step. ...

  • Ans. DFS

    The idea is to do a depth-first search to find all the cycles which are formed and calculate the length of the largest cycle. We are treating the array as a graph of directed edges. Whenever we get into any of the cells in the cycle, using dfs we will visit all the subsequent cells in the cycle. Out of all the cycles, we will return the cycle of maximum length.

    The steps are as follows:

    • Initialize a boolean array ‘vis...
  • Answered by CodingNinjas
  • Q2. Ninja and the Maze

    Ninja went to an amusement park and visited a maze. Now, he is stuck in the maze. He can go in any direction(Up, Down, Left, or Right) from this point, but he cannot change his direction...

  • Ans. Depth First Search
    • Ninja can move in at most four directions i.e left, right, up, and down.
    • We will take a 2-D array ‘directions’ of size 4 x 2  in which the first column denotes the shift in the horizontal direction and the second column denotes a shift in the vertical direction.

        We will store all the four directions { (0,1) (0,-1) ( 1,0) ( -1,0 ) )} in 2-d array.

    • In each direction, Ninja continues to m...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jul 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Aptitude, English, Java multiple choice, Java program on Data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Our behaviour should show that, we are ready to learn and work.

Interview Questionnaire 

1 Question

  • Q1. Three 2d matrix questions in first round from leetcode. One was simple dp question. Two questions in second round one questions was on trees. One questions was of strings. In third round which was engineer...

Techjockey Infotech Pvt.Ltd. Interview FAQs

How many rounds are there in Techjockey Infotech Pvt.Ltd. Senior Software Consultant interview for freshers?
Techjockey Infotech Pvt.Ltd. interview process for freshers usually has 3 rounds. The most common rounds in the Techjockey Infotech Pvt.Ltd. interview process for freshers are One-on-one Round and HR.
What are the top questions asked in Techjockey Infotech Pvt.Ltd. Senior Software Consultant interview for freshers?

Some of the top questions asked at the Techjockey Infotech Pvt.Ltd. Senior Software Consultant interview for freshers -

  1. Behavioural and use case specific questi...read more
  2. Questions on SaaS a...read more
  3. Telephone ro...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Techjockey Infotech Pvt.Ltd. interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Gartner Interview Questions
4.2
 • 76 Interviews
MagicPin Interview Questions
3.1
 • 48 Interviews
SoftwareONE Interview Questions
3.8
 • 41 Interviews
Stylebaazar Interview Questions
3.9
 • 29 Interviews
Tokopedia Interview Questions
4.1
 • 27 Interviews
Software AG Interview Questions
4.1
 • 24 Interviews
Meritto Interview Questions
3.7
 • 22 Interviews
View all

Techjockey Infotech Pvt.Ltd. Senior Software Consultant Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

4.0

Job Security

1.0

Company culture

3.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Business Consultant
9 salaries
unlock blur

₹2.5 L/yr - ₹4.8 L/yr

Content Writer
9 salaries
unlock blur

₹3.3 L/yr - ₹7.6 L/yr

Business Development Executive
9 salaries
unlock blur

₹2.6 L/yr - ₹4 L/yr

Software Developer
7 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Key Account Manager
7 salaries
unlock blur

₹3.5 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Techjockey Infotech Pvt.Ltd. with

SoftwareSuggest

3.2
Compare

Softline

4.1
Compare

Gartner

4.1
Compare

SoftwareONE

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview