Upload Button Icon Add office photos

Filter interviews by

Besten Engineers Consultants Technical Trainee Interview Questions and Answers

Updated 12 Feb 2024

Besten Engineers Consultants Technical Trainee Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About self intro and technical ques
  • Q2. Tool test for the candidate

I applied via Company Website and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. About final year projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Best to know the Basics of civil Engineering .Be confident in interview and the interview questions are very simple and easy to understand.

Technical Trainee Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
Q2. Minimum Cost to DestinationYou have been given an N*M matrix wher ... read more
asked in TO THE NEW
Q3. Two Non-Repeating ElementsGiven an array 'ARR' of integers of siz ... read more
asked in Nagarro
Q4. Count derangementsA Derangement is a permutation of ‘N’ elements, ... read more
Q5. Maximum Of All Subarrays Of Size k.You are given an array consist ... read more

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is your stength
  • Ans. 

    My strength lies in my ability to quickly learn new technologies and adapt to changing environments.

    • Quick learner

    • Adaptable to change

    • Strong problem-solving skills

    • Excellent communication skills

    • Team player

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environment

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round consist of coding as well as mcq questions

  • Q1. Minimum Cost to Destination

    You have been given an N*M matrix where there are 'N' rows and 'M' columns filled with '0s' and '1s'.


    '1' means you can use the cell,...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered by CodingNinjas
  • Q2. Maximum Of All Subarrays Of Size k.

    You are given an array consisting of N non-negative integers, and an integer K denoting the length of a subarray, your task is to determine the maximum elements for each...

  • Ans. Brute force approach
    • The Idea behind this brute force approach is to consider each subarray of size K by fixing a point i in the array and then consider all the points after it till we have considered K elements from the starting point i and finding the maximum element in it and then storing it.
    • Now, run a loop(say, loop variable i) till (N-K) elements of the array:
      • Run a nested loop(say, loop variable j) through the elem...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(3 Questions)

Round duration - 36 minutes
Round difficulty - Easy

  • Q1. Convert Min Heap To Max Heap

    You are given an array of size ‘n’ which is an array representation of min-heap. You need to convert this min-heap array representation to a max-heap array representation.

    Fo...

  • Ans. Sorting Approach

    The main idea is that when an array is sorted in descending order it becomes max heap as for every ‘i’ from i=0 to n/2 it is greater than equal to arr[2*i+1] and arr[2*i+2].

    Space Complexity: O(1)Explanation:

    O(1)

     

    We are using constant space to solve this.

    Time Complexity: O(nlogn)Explanation:

    O(n*log(n)), where n is the size of the array.

     

    Sorting an array takes O(n*log(n)) time complexity.


    Pytho...
  • Answered by CodingNinjas
  • Q2. Sum Between Zeroes

    You are given a Singly Linked List which contains a series of integers separated by ‘0’.

    Between two zeroes, you have to merge all the nodes lying between them into a single node which...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered by CodingNinjas
  • Q3. Snake and Ladder

    You have been given a Snake and Ladder Board with 'N' rows and 'N' columns with the numbers written from 1 to (N*N) starting from the bottom left of the board, and alternat...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in HyderabadEligibility criteriaNoTravClan interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Networking, Database Management System, Operating System, Time Complexity, Compiler design, Machine Learning and Artificial intelligence techniques , recursion with backtracking problems and also graph-related algorithms problemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : I practiced a lot of problems related to Data structures on the Coding ninjas platform and other coding platforms.
Tip 2 : If you are stuck somewhere in a problem and want to see reference, first, try to understand the algorithm and then move on to code. 
Tip 3 : Just see the algorithm that is how to approach first and don't try to understand from the code right off the bat, code has finer implementation variation that can be done on your own if you are clear with the algorithm. Also for big product companies, prepare enough problems of graphs and trees as these are the most important topics for interviews.

Application resume tips for other job seekers

Tip 1 : Mention a good level of projects in your resume, and also give a brief detail about each and every project.
Tip 2 : Have at least 1 or 2 good projects from which you know everything involved in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Apprenticeship Trainee Interview Questions & Answers

HyScaler user image Soumya sundar Mohapatra

posted on 20 Aug 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Coding test on JavaScript

Round 2 - Assignment 

Got an assignment to create a e-learning platform

Round 3 - One-on-one 

(1 Question)

  • Q1. What is JavaScript
  • Ans. 

    JavaScript is a programming language commonly used for creating interactive websites.

    • JavaScript is a high-level, interpreted programming language.

    • It is used to make web pages interactive and dynamic.

    • JavaScript can be used for client-side and server-side development.

    • Examples: Adding interactivity to buttons, form validation, creating animations.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - Aptitude Test 

Good questions easy to think and clear

Round 2 - Technical 

(2 Questions)

  • Q1. SDLC life cycle
  • Q2. Release management
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About everything mentioned in the resume.
  • Q2. College projects
Round 2 - HR 

(1 Question)

  • Q1. Behavioural questions - family, city I belong to, goals.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What is your stength
  • Ans. 

    My strength lies in my ability to quickly learn new technologies and adapt to changing environments.

    • Quick learner

    • Adaptable to change

    • Strong problem-solving skills

    • Excellent communication skills

    • Team player

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environment

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round consist of coding as well as mcq questions

  • Q1. Minimum Cost to Destination

    You have been given an N*M matrix where there are 'N' rows and 'M' columns filled with '0s' and '1s'.


    '1' means you can use the cell,...

  • Ans. Backtracking

    Maintain a visited array and try to explore all the possibilities with the help of backtracking.

    1. Start with (0, 0) and mark it as visited and try to move in all 4 directions.
    2. Say at any point we are at (i, j) then the cost of reaching (x,y) will be the minimum of these four cases.
      1. Option 1 -  Left: cost of reaching from (i, j-1)
      2. Option 2 - Right: cost of reaching from (i, j+1)
      3. Option 3 - Up: 1 + cost of rea...
  • Answered by CodingNinjas
  • Q2. Maximum Of All Subarrays Of Size k.

    You are given an array consisting of N non-negative integers, and an integer K denoting the length of a subarray, your task is to determine the maximum elements for each...

  • Ans. Brute force approach
    • The Idea behind this brute force approach is to consider each subarray of size K by fixing a point i in the array and then consider all the points after it till we have considered K elements from the starting point i and finding the maximum element in it and then storing it.
    • Now, run a loop(say, loop variable i) till (N-K) elements of the array:
      • Run a nested loop(say, loop variable j) through the elem...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(3 Questions)

Round duration - 36 minutes
Round difficulty - Easy

  • Q1. Convert Min Heap To Max Heap

    You are given an array of size ‘n’ which is an array representation of min-heap. You need to convert this min-heap array representation to a max-heap array representation.

    Fo...

  • Ans. Sorting Approach

    The main idea is that when an array is sorted in descending order it becomes max heap as for every ‘i’ from i=0 to n/2 it is greater than equal to arr[2*i+1] and arr[2*i+2].

    Space Complexity: O(1)Explanation:

    O(1)

     

    We are using constant space to solve this.

    Time Complexity: O(nlogn)Explanation:

    O(n*log(n)), where n is the size of the array.

     

    Sorting an array takes O(n*log(n)) time complexity.


    Pytho...
  • Answered by CodingNinjas
  • Q2. Sum Between Zeroes

    You are given a Singly Linked List which contains a series of integers separated by ‘0’.

    Between two zeroes, you have to merge all the nodes lying between them into a single node which...

  • Ans. Two Pointer Approach

    Let us initialize two pointers, newHead and newTail, with NULL (These will be the head and tail of the final list). Now traverse the given list. Ignore the first zero. Now, as you encounter non-zero nodes, add their values in a variable called ‘sum’. As soon as you encounter a node with data 0, change that node's value to ‘sum’, and

    1. If newHead is NULL, this node becomes the new head and tail of the l...
  • Answered by CodingNinjas
  • Q3. Snake and Ladder

    You have been given a Snake and Ladder Board with 'N' rows and 'N' columns with the numbers written from 1 to (N*N) starting from the bottom left of the board, and alternat...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Trainee Technology in HyderabadEligibility criteriaNoTravClan interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Networking, Database Management System, Operating System, Time Complexity, Compiler design, Machine Learning and Artificial intelligence techniques , recursion with backtracking problems and also graph-related algorithms problemsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : I practiced a lot of problems related to Data structures on the Coding ninjas platform and other coding platforms.
Tip 2 : If you are stuck somewhere in a problem and want to see reference, first, try to understand the algorithm and then move on to code. 
Tip 3 : Just see the algorithm that is how to approach first and don't try to understand from the code right off the bat, code has finer implementation variation that can be done on your own if you are clear with the algorithm. Also for big product companies, prepare enough problems of graphs and trees as these are the most important topics for interviews.

Application resume tips for other job seekers

Tip 1 : Mention a good level of projects in your resume, and also give a brief detail about each and every project.
Tip 2 : Have at least 1 or 2 good projects from which you know everything involved in the project.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to Medium level coding questions on a particular coding platform

Round 2 - Assignment 

I have to create a full stack project within 7-8 days. In my case it was ed-tech platform and I created using (MERN technology).

Besten Engineers Consultants Interview FAQs

How many rounds are there in Besten Engineers Consultants Technical Trainee interview?
Besten Engineers Consultants interview process usually has 1 rounds. The most common rounds in the Besten Engineers Consultants interview process are Technical.
How to prepare for Besten Engineers Consultants Technical Trainee 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 Besten Engineers Consultants. The most common topics and skills that interviewers at Besten Engineers Consultants expect are AutoCAD, Electricals, Training, Civil and Civil Engineering.
What are the top questions asked in Besten Engineers Consultants Technical Trainee interview?

Some of the top questions asked at the Besten Engineers Consultants Technical Trainee interview -

  1. About self intro and technical q...read more
  2. Tool test for the candid...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Besten Engineers Consultants interview
Company Website
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

TCE Interview Questions
3.8
 • 240 Interviews
AmbitionBox Interview Questions
5.0
 • 145 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
AECOM Interview Questions
4.3
 • 109 Interviews
Worley Interview Questions
4.1
 • 107 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
Data Entry Interview Questions
4.1
 • 96 Interviews
View all
Besten Engineers Consultants Technical Trainee Salary
based on 5 salaries
₹1.1 L/yr - ₹1.5 L/yr
59% less than the average Technical Trainee Salary in India
View more details
Draughtsman Civil
8 salaries
unlock blur

₹1.4 L/yr - ₹2.2 L/yr

Technical Trainee
5 salaries
unlock blur

₹1.1 L/yr - ₹1.5 L/yr

Team Lead
5 salaries
unlock blur

₹1.8 L/yr - ₹2.2 L/yr

Business Development Executive
4 salaries
unlock blur

₹3.2 L/yr - ₹3.8 L/yr

Design Engineer
3 salaries
unlock blur

₹1 L/yr - ₹1.7 L/yr

Explore more salaries
Compare Besten Engineers Consultants with

TCE

3.8
Compare

Mecon

4.0
Compare

L&T Technology Services

3.3
Compare

AECOM

4.3
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