Upload Button Icon Add office photos
Engaged Employer

i

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

6D Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

6D Technologies Implementation Engineer Interview Questions and Answers

Updated 16 Apr 2025

6D Technologies Implementation Engineer Interview Experiences

8 interviews found

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

Mostsly asked questions related to linux, os and mysql

Round 2 - Group Discussion 

You need to keep on talking, thats all you need to do.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked some basic Linux commands
  • Q2. Asked keys in RDBMs like primary key, candidate keys, alternate keys etc.
Round 4 - Technical 

(2 Questions)

  • Q1. Asked questions related to data structures.
  • Q2. Asked questions related to mysql.
Round 5 - HR 

(2 Questions)

  • Q1. What challenges I have faced and how did I overcome, when I volunteered for an event in college.
  • Q2. I am willing to relocate to bangalore.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java/c/c++, linux and mysql.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Automation and manual testing
  • Q2. Linux and unix , swl queries

Implementation Engineer Interview Questions Asked at Other Companies

Q1. What is the SI unit of current?
Q2. What is the range of a mercury thermometer?
Q3. What is the principle of a C-type Bourdon tube?
Q4. What is the difference between a clustered and a non-clustered in ... read more
Q5. What is the density of water?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

DBMS,SQL,verbal,logical reasoning

Round 2 - Technical 

(1 Question)

  • Q1. About Java,sql,linux
Round 3 - Technical 

(1 Question)

  • Q1. About Linux,Java,SQl
Round 4 - HR 

(1 Question)

  • Q1. Personal information
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What is black box and white box testing
  • Ans. 

    Black box testing focuses on input/output without knowledge of internal code; white box testing examines internal logic and structure.

    • Black box testing evaluates functionality without looking at code (e.g., user interface testing).

    • White box testing involves code review and testing internal structures (e.g., unit testing).

    • Black box testing is often used in system and acceptance testing.

    • White box testing is commonly used...

  • Answered by AI
  • Q2. Basic Linux commands
  • Q3. Different types of join
  • Ans. 

    Joins are SQL operations that combine rows from two or more tables based on related columns.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.id;

    • RIGHT JOIN: Returns all records from the right table and matched re...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Core java and Advanced java questions

Round 2 - Group Discussion 

General topics based

Round 3 - Technical 

(1 Question)

  • Q1. Linux commands, Databases, Projects
Round 4 - HR 

(1 Question)

  • Q1. General questions, about relocation and all.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. GSM ARCHITECTURE AND CALL FLOW,LTE CALL FLOW AND ARCHITESCTURE ...ETC
Round 2 - HR 

(1 Question)

  • Q1. Nothing much ...
Round 1 - Technical 

(1 Question)

  • Q1. Basically questions from SQL and Linux

Interview Preparation Tips

Interview preparation tips for other job seekers - Basically questions from Linux and sql
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. SQL , Linux and related to BSS

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn SQL , Linux and related to BSS . This interview was a technical round and it lasted for about 1 hour and the interviewer wanted to test knowledge on my work experience , communication , confidence and how we can understand the scenario and work on it.

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about 6D Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basic C++ questions. Maths puzzles and basic probability and combinatorics questions.

I appeared for an interview in Oct 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

It started around 11 Am on MS teams.
There was only 1 interviewer.
The interviewer asked questions from almost every concept, whatever I mentioned in my resume.

Data Structure and Algorithms: Complete heap Sort(Full code on pen and paper), check a number is a power of 2 or not, and some follow-up questions on data structure and algorithms.

OS: Scheduling algorithms, Round Robin(implementation), Process States, and some follow-up questions on that also.
OOPS: Virtual Functions, Copy Constructors, Runtime Polymorphism, Destructors with their implementation, and lots of follows up questions on that also. They gave more focus on oops concepts in c++ only. If you know oops concepts in c++ then you should be able to explain them well with proper implementation.
Project: Complete description, Database schema(Complete diagram on paper), Data flow diagram, and which technology used in projects. My project was on spring boot based web application with proper database design. They asked many questions related to the flow of the project and request methods(POST, PUT, UPDATE, DELETE).
And some other basic questions on projects as well. The duration of this round was almost a complete hour. 7 students shortlisted after 1 round.

  • Q1. 

    Heap Sort Problem Statement

    Your task is to sort an array of integers in non-decreasing order using the Heap Sort algorithm.

    Input:

    The first line contains an integer 'T' denoting the number of test cas...
  • Ans. 

    Heap Sort is used to sort an array of integers in non-decreasing order by creating a max heap and repeatedly extracting the maximum element.

    • Create a max heap from the input array.

    • Swap the root (maximum element) with the last element and reduce the heap size.

    • Heapify the root element to maintain the heap property.

    • Repeat the above steps until the heap size is 1.

    • The array will be sorted in non-decreasing order.

  • Answered by AI
  • Q2. 

    Ninja's Pattern with Powers of 2

    Ninja, who loves playing with numbers, sets out to arrange numbers within 'N' rows. The unique arrangement follows these rules: the first row contains 1 number, the second...

  • Ans. 

    Generate a pattern of numbers in rows following a powers of 2 sequence with numbers 1 to 9, recycling back to 1.

    • Start with 1 number in the first row, 2 numbers in the second row, 4 numbers in the third row, and so on following powers of 2.

    • Fill the pattern with numbers from 1 to 9, recycling back to 1 after reaching 9.

    • Output the pattern for the given number of rows 'N'.

    • Example: For N = 4, the pattern would be 1, 2 3, 4 ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology Karnataka Surathkal.. I applied for the job as Software Engineer in BangaloreEligibility criteriaMinimum 7 CGPARadisys Corporation interview preparation:Topics to prepare for the interview - DSA, OOPS, OS, DBMS, Web Development and Networking.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Try to solve implementation questions on regular basis at least 1 per day.
Tip 2 : Make a proper Roadmap to complete all the DS concepts including some advanced DS concepts also like trie. Do an ample amount of questions from every topic. IMPORTANT: Learn implementation of DS like Hashmap, heap. 
Tip 3 : Minimum 2 projects. One should be the database project.
Tip 4 : You should be good in problem-solving, bits manipulation, c/c++ language, OOPs, OS, and Networking.

Application resume tips for other job seekers

Tip 1 : Well Organised
Tip 2 : At least 2 projects
Tip 3 : Go through to resume of good technical students.
Tip 4 : Personally, I do not prefer any template for a resume. You can easily make on Google docs or any word editor by yourself.

Final outcome of the interviewSelected

Skills evaluated in this interview

6D Technologies Interview FAQs

How many rounds are there in 6D Technologies Implementation Engineer interview?
6D Technologies interview process usually has 2-3 rounds. The most common rounds in the 6D Technologies interview process are Technical, HR and Aptitude Test.
What are the top questions asked in 6D Technologies Implementation Engineer interview?

Some of the top questions asked at the 6D Technologies Implementation Engineer interview -

  1. What is black box and white box test...read more
  2. Different types of j...read more
  3. Asked keys in RDBMs like primary key, candidate keys, alternate keys e...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

6-8 weeks 100%
View more

Interview Questions from Similar Companies

Vodafone Idea Interview Questions
4.0
 • 594 Interviews
HFCL Limited Interview Questions
3.9
 • 73 Interviews
Telstra Interview Questions
4.0
 • 51 Interviews
RadiSys Interview Questions
4.0
 • 46 Interviews
Ciena Interview Questions
4.2
 • 40 Interviews
CommScope Interview Questions
3.7
 • 37 Interviews
View all
6D Technologies Implementation Engineer Salary
based on 344 salaries
₹3.7 L/yr - ₹13.3 L/yr
35% more than the average Implementation Engineer Salary in India
View more details

6D Technologies Implementation Engineer Reviews and Ratings

based on 43 reviews

3.1/5

Rating in categories

3.2

Skill development

2.0

Work-life balance

3.1

Salary

3.5

Job security

2.5

Company culture

2.8

Promotions

2.7

Work satisfaction

Explore 43 Reviews and Ratings
Implementation Engineer
344 salaries
unlock blur

₹3.7 L/yr - ₹13.3 L/yr

Software Engineer
342 salaries
unlock blur

₹4 L/yr - ₹9.9 L/yr

Senior Software Engineer
185 salaries
unlock blur

₹9.7 L/yr - ₹18.7 L/yr

Senior Implementation Engineer
134 salaries
unlock blur

₹9.2 L/yr - ₹16.7 L/yr

Software Developer
121 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Explore more salaries
Compare 6D Technologies with

Vodafone Idea

4.0
Compare

Tata Communications

4.0
Compare

Tata Communications Transformation Services

4.0
Compare

HFCL Limited

3.9
Compare
write
Share an Interview