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

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.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Techjockey Infotech Pvt.Ltd.?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Aug 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic Questions only, Oops concept, Android basic questions, work manager related, MVVM pattern, why kotlin?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a well-motivated place in terms of work, they are really making the best use of technology that they can. The interview can be clarified by someone who has clear basics of technology, how things are really moving in technology. They are only examining the basics of technology.

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...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was good, actually they asked parentheses balance question, Getting duplicate values , pallindrome question and also Target sum with O(n) TC.

Round 2 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Tell Me about yourself?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Delete nth node from end in linked list
  • Ans. 

    To delete the nth node from the end in a linked list, we can use a two-pointer approach.

    • Use two pointers, one to traverse the list and another to keep track of the nth node from the end.

    • Move the second pointer n steps ahead of the first pointer.

    • When the second pointer reaches the end of the list, the first pointer will be at the nth node from the end.

    • Adjust the pointers to delete the nth node.

  • Answered by AI
  • Q2. Project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - revise your latest projects and technologies used thoroughly, prepare trees and linked list in DSA

Skills evaluated in this interview

I appeared for an interview 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 in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Handle self-cycles and cells with no exit by checking arr[i] = i and arr[i] = -1 respectively.

    • Output the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI
  • Q2. 

    Ninja and the Maze Problem Statement

    Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

  • Ans. 

    Determine if Ninja can reach the destination in a maze by moving in four directions until hitting a wall.

    • Create a function to traverse the maze using depth-first search or breadth-first search.

    • Keep track of visited cells to avoid infinite loops.

    • Return 'True' if destination is reachable, 'False' otherwise.

  • Answered by AI

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

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Program for a palindrome Number.
  • Ans. 

    Program to check if a number is a palindrome.

    • Convert the number to a string to easily check for palindrome

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. React Lifecycle methods
  • Q3. Hooks in react?
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components.

    • Hooks were introduced in React 16.8.

    • They allow you to use state and other React features without writing a class.

    • Commonly used hooks include useState, useEffect, useContext, and useReducer.

    • Hooks must be used at the top level of your functional component.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Create a High-level design
  • Ans. 

    Design a high-level architecture for a software system

    • Identify the main components of the system

    • Define the interactions between the components

    • Consider scalability, security, and performance

    • Choose appropriate technologies and frameworks

    • Create a diagram to visualize the architecture

  • Answered by AI
  • Q2. Questions on the design you created

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Solving normal Puzzles to test aptitude.

Round 2 - Coding Test 

Sample app was asked to create.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well domain specfic.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly motivated and experienced professional with a strong background in project management and team leadership.

    • Over 10 years of experience in project management

    • Proven track record of successfully leading cross-functional teams

    • Strong communication and problem-solving skills

    • Certified in project management (PMP)

    • Previously managed a $5 million project for a Fortune 500 company

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Based on the Position

Interview Preparation Tips

Topics to prepare for AdamsBridge Global Senior Associate interview:
  • General Ledger
  • Bank Reconciliation
  • accrual
  • Accounts Payable
  • Accounts Receivable
Interview preparation tips for other job seekers - Try to learn or know about the company and the process which you applied.

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

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

MagicPin Interview Questions
2.5
 • 58 Interviews
Tokopedia Interview Questions
4.1
 • 26 Interviews
CoLive Interview Questions
3.3
 • 25 Interviews
Meritto Interview Questions
3.5
 • 24 Interviews
JUSPAY Interview Questions
3.3
 • 23 Interviews
AstroTalk Interview Questions
3.4
 • 23 Interviews
Furlenco Interview Questions
3.4
 • 21 Interviews
Nestaway Interview Questions
3.8
 • 21 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

4.0

Job security

1.0

Company culture

3.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Content Writer
13 salaries
unlock blur

₹3.3 L/yr - ₹7.6 L/yr

Software Developer
9 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Key Account Manager
7 salaries
unlock blur

₹3.5 L/yr - ₹9.4 L/yr

Business Development Executive
7 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Assistant Manager
6 salaries
unlock blur

₹4.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Techjockey Infotech Pvt.Ltd. with

MagicPin

2.5
Compare

Awign Enterprises

3.8
Compare

Nestaway

3.8
Compare

Ketto

4.0
Compare
write
Share an Interview