Upload Button Icon Add office photos

Filter interviews by

Emtec Technologies Interview Questions and Answers

Updated 24 Oct 2021

Emtec Technologies Interview Experiences

Popular Designations

2 interviews found

I applied via Naukri.com and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1. Asked about. Net core concept like routing, middleware, Dependancy injection.
  • Q2. 2. Mvc question like filters scenario based, custom filters, exception handling.
  • Q3. 3 Advanced opps concept like threading related questions, asyn &awaits related scenario based question.
  • Q4. Two program were given to me for logic scenario based.
  • Q5. 2nd round was full of coding round no theoretical question at all, two question was from sql query and one was from c# coding logical question.
  • Q6. 3rd round was MR round not technical one, they asked about projects and my routine of work and expertise area.

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience was wonderful, it was one of the toughest interview for me, I am glad I was able to get into it and I left all the Mnc company offer for this company.

Senior Software Development Engineer Interview Questions asked at other Companies

Q1. Level order traversal of a binary search tree from leaf to root? Print in a single line or Print new line for every level.
View answer (3)

Interview Questionnaire 

1 Question

  • Q1. My question is I am a fresh graduate so I learn theoretical knowledge. you asked me to practical questions. and live examples.
  • Ans. Fresher don't have any knowledge of industry you can ask simple questions to a fresher they answer to you then you can higher.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - pleased appreciate fresher because they have faced many problems.

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview with my primary skill set Where all details asked about technology And given one program to do using primary skill
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion Questions about why to change org And More specific to HR questions About yourself
Round 3 - Managiral 

(1 Question)

  • Q1. Question about last project work About Yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is growing with different skillset and domain

I applied via Naukri.com and was interviewed before Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Difference between Hashtable and hashmap?
  • Ans. 

    Hashtable is synchronized while hashmap is not.

    • Hashtable is thread-safe while hashmap is not.

    • Hashtable does not allow null keys or values while hashmap allows one null key and multiple null values.

    • Hashtable is slower than hashmap due to synchronization.

    • Hashtable is a legacy class while hashmap is a newer implementation.

  • Answered by AI
  • Q2. Difference between hashmap and concurrent hashmap?
  • Ans. 

    Hashmap is not thread-safe while Concurrent Hashmap is thread-safe.

    • Hashmap is not suitable for multi-threaded environments as it can lead to race conditions and data inconsistencies.

    • Concurrent Hashmap allows multiple threads to access and modify the map concurrently without any data inconsistencies.

    • Concurrent Hashmap uses a technique called lock striping to achieve thread-safety.

    • Concurrent Hashmap is slower than Hashma...

  • Answered by AI
  • Q3. Jdbc step
  • Q4. Spring ioc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was average they asked questions from core java spring hibernate... And so on..

Skills evaluated in this interview

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why do you want to join Incedo, what is your plan in future, explain your past experience with an example
  • Q2. Basic of capital market
  • Q3. Market capitalisation, capital market, derivatives, accounting knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - One should be more confident and should give prompt response

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Standard Aptitude topics, 30 mins - 30 questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Case Study for how to design a data Lake ? standard questions - tell me about yourself, why us
  • Q2. Case Study for how to design a chess game

Interview Preparation Tips

Topics to prepare for Quantiphi Analytics Solutions Private Limited Intern interview:
  • SQL
  • Java
Interview preparation tips for other job seekers - Easy, They want to check for approach and ability of the candidate

Interview Questionnaire 

1 Question

  • Q1. Filters in Tableau,sql
  • Ans. 

    Filters in Tableau and SQL are used to narrow down data based on specific criteria.

    • Filters in Tableau can be applied to individual worksheets or the entire dashboard

    • SQL filters can be applied using the WHERE clause

    • Tableau filters can be based on dimensions or measures

    • SQL filters can be based on any column in the table

    • Tableau filters can be interactive, allowing users to adjust the criteria

    • SQL filters can be combined wi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql,tableau,python, business understanding

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1. If you given a no return its corresponding excel no.
  • Ans. 

    Convert given no to corresponding excel no.

    • Excel no starts from 1 and goes up to 16384

    • Excel no is calculated using column and row numbers

    • For example, 1 corresponds to A, 27 corresponds to AA, 28 corresponds to AB, and so on

  • Answered by AI
  • Q2. 2. find unique character in a window of k size in a string
  • Ans. 

    Find unique characters in a window of k size in a string.

    • Use a sliding window approach.

    • Maintain a hash table to keep track of character frequency.

    • Remove characters from hash table as the window slides.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is very important. Give your solution from brute force to optimal. Interviewer has tell me to write code of both questions in any programming language.

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. DS Questions 1. kth largest element. 2. Implement merge sort
  • Q2. Springboot basics, oops, collection api

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepeare DS well

Interview Questionnaire 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

Emtec Technologies Interview FAQs

How to prepare for Emtec Technologies 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 Emtec Technologies. The most common topics and skills that interviewers at Emtec Technologies expect are Javascript, Java, C#, .Net and Angular.
What are the top questions asked in Emtec Technologies interview?

Some of the top questions asked at the Emtec Technologies interview -

  1. 2nd round was full of coding round no theoretical question at all, two question...read more
  2. 3rd round was MR round not technical one, they asked about projects and my rout...read more
  3. 3 Advanced opps concept like threading related questions, asyn &awaits related ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 341 Interviews
CitiusTech Interview Questions
3.3
 • 277 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 222 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Incedo Interview Questions
3.1
 • 184 Interviews
Xoriant Interview Questions
4.1
 • 184 Interviews
View all

Emtec Technologies Reviews and Ratings

based on 34 reviews

3.8/5

Rating in categories

3.5

Skill development

3.8

Work-life balance

3.8

Salary

3.8

Job security

3.9

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 34 Reviews and Ratings
Softwaretest Engineer
56 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Software Development Engineer
54 salaries
unlock blur

₹5.8 L/yr - ₹14 L/yr

Technical Lead
51 salaries
unlock blur

₹15.4 L/yr - ₹34 L/yr

Senior Software Development Engineer
45 salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Software Developer
31 salaries
unlock blur

₹5 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Emtec Technologies with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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