Upload Button Icon Add office photos
Engaged Employer

i

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

TruKKer Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TruKKer Interview Questions and Answers

Updated 2 Apr 2024

TruKKer Interview Experiences

Popular Designations

8 interviews found

Principal Engineer Interview Questions & Answers

user image Nupur Chatterjee

posted on 10 Jun 2021

Interview Questionnaire 

4 Questions

  • Q1. Dot net Core
  • Q2. Oops concept
  • Q3. Microservice
  • Q4. Sql delete vs truncate
  • Ans. 

    Difference between SQL DELETE and TRUNCATE

    • DELETE is a DML command while TRUNCATE is a DDL command

    • DELETE removes specific rows from a table while TRUNCATE removes all rows

    • DELETE can be rolled back while TRUNCATE cannot be rolled back

    • DELETE is slower than TRUNCATE as it logs each row deletion

  • Answered by AI

Skills evaluated in this interview

Principal Engineer Interview Questions asked at other Companies

Q1. what technique did you use to understand the root cause of the problem and isolate the specific task or process that needed attention
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. General questions about you and previous company if you are experienced

Interview Preparation Tips

Interview preparation tips for other job seekers - You can join it for gaining experience

Supply Chain Management Associate Interview Questions asked at other Companies

Q1. How do purchase and Procurement differs from each oth6
View answer (1)

SDE Interview Questions & Answers

user image Anonymous

posted on 6 Mar 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Find whether an array is mountain array or not
  • Ans. 

    A mountain array is an array that increases to a peak and then decreases.

    • Check if the array has a peak where all elements before the peak are in increasing order and all elements after the peak are in decreasing order.

    • Example: ['1', '2', '3', '4', '5', '4', '3', '2', '1'] is a mountain array.

    • Example: ['1', '2', '3', '4', '5', '5', '4', '3', '2', '1'] is not a mountain array.

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Diff b/w let, const, var
  • Ans. 

    let is block scoped, const is constant, var is function scoped

    • let: block scoped, can be reassigned, not hoisted

    • const: block scoped, cannot be reassigned, not hoisted

    • var: function scoped, can be reassigned, hoisted

    • Example: let x = 10; const y = 20; var z = 30;

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

TruKKer interview questions for popular designations

 Executive Supply Chain Management

 (1)

 Supply Chain Management Associate

 (1)

 Software Developer

 (1)

 Software Development Engineer

 (1)

 Principal Engineer

 (1)

 Collections Executive

 (1)

 SDE

 (1)

 Operations Executive

 (1)

Software Developer Interview Questions & Answers

user image shashank yadav

posted on 15 Mar 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Pure functions was asked

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Manager comes and asks about general things like about yourself and about job profile.
  • Q2. Then after asked about some things about supply chain

Interview Preparation Tips

Interview preparation tips for other job seekers - its very good company as i think, but issue that they are very slow in interviewing. they scheduled second round and did not come in meet.

Executive Supply Chain Management Interview Questions asked at other Companies

Q1. what are the points need to check when invoice received from the vendor
View answer (1)

Jobs at TruKKer

View all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Previous experience
  • Q2. How long will stay here

Collections Executive Interview Questions asked at other Companies

Q1. Company rules and regulations an how to handle customer
View answer (7)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. How will you deal with multiple tasks.

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly interview. They will ask about previous experience.

Operations Executive Interview Questions asked at other Companies

Q1. What is the electric current? How is works ?
View answer (29)

Interview questions from similar companies

Interview Preparation Tips

Interview preparation tips for other job seekers - I gave attitude and dark personality test in Delhivery. But after clearing this rounds. They don't take my interview. They said that they have shortlisted another candidate. They even don't pick up call and clarify it.

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What is diameter of Binary Tree? Write full working code.
  • Ans. 

    Diameter of a binary tree is the longest path between any two leaf nodes.

    • Calculate the height of left and right subtrees recursively.

    • Calculate the diameter recursively using the formula max(left_height + right_height + 1, max(left_diameter, right_diameter)).

    • Return the maximum diameter.

  • Answered by AI
  • Q2. Find interchanged terms from an AP, where terms are arranged in series
  • Ans. 

    To find interchanged terms from an AP series

    • Identify the common difference between terms

    • Swap the positions of adjacent terms

    • Check if the new series is also an AP

    • Repeat until no more interchanged terms can be found

  • Answered by AI
  • Q3. Explain database indexing
  • Ans. 

    Database indexing is a technique to improve the performance of database queries.

    • Indexing creates a data structure that allows for faster retrieval of data.

    • Indexes are created on one or more columns of a table.

    • Queries that use indexed columns can be executed faster.

    • Indexes can be clustered or non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basic data structures, operating systems and database.

Skills evaluated in this interview

TruKKer Interview FAQs

How many rounds are there in TruKKer interview?
TruKKer interview process usually has 1-2 rounds. The most common rounds in the TruKKer interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for TruKKer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at TruKKer. The most common topics and skills that interviewers at TruKKer expect are Java, Android, Kotlin, Illustrator and MySQL.
What are the top questions asked in TruKKer interview?

Some of the top questions asked at the TruKKer interview -

  1. find whether an array is mountain array or ...read more
  2. Sql delete vs trunc...read more
  3. Diff b/w let, const, ...read more

Tell us how to improve this page.

TruKKer Interview Process

based on 12 interviews

Interview experience

3.2
  
Average
View more

Interview Questions from Similar Companies

Delhivery Interview Questions
3.9
 • 458 Interviews
Ecom Express Interview Questions
3.8
 • 197 Interviews
BlackBuck Interview Questions
3.8
 • 174 Interviews
XpressBees Interview Questions
3.6
 • 159 Interviews
GATI-KWE Interview Questions
3.9
 • 86 Interviews
FarEye Interview Questions
3.1
 • 26 Interviews
Hyundai Glovis Interview Questions
3.8
 • 18 Interviews
Sugam Parivahan Interview Questions
3.9
 • 14 Interviews
View all

TruKKer Reviews and Ratings

based on 73 reviews

3.2/5

Rating in categories

3.0

Skill development

2.8

Work-life balance

3.1

Salary

2.9

Job security

2.8

Company culture

2.5

Promotions

2.9

Work satisfaction

Explore 73 Reviews and Ratings
Product Manager (Fintech/Logitech)

Bangalore / Bengaluru

5-10 Yrs

₹ 15-30 LPA

Explore more jobs
Supply Chain Executive
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Owner
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TruKKer with

BlackBuck

3.8
Compare

Delhivery

3.9
Compare

Ecom Express

3.8
Compare

Shadowfax Technologies

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview