Upload Button Icon Add office photos

Filter interviews by

TekLink International Interview Questions and Answers

Updated 7 Nov 2024

TekLink International Interview Experiences

Popular Designations

5 interviews found

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

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

Round 1 - Aptitude Test 

Total mathematics questions

Round 2 - Coding Test 

Total based on SQL , JAVA

Software Trainee Interview Questions asked at other Companies

Q1. 1. What is java and it's features ? 2. Why it is called platform independent language? 3. What is static memory allocation, dynamic memory allocation? 4. types of variable 5. Type casting 4. what is oops ? Is java contains a 100% opp's conc... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jan 2023. There were 4 interview rounds.

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 - Coding Test 

SQL Coding Test, Asked more about the past experience.

Round 3 - Coding Test 

Optimization of query, asked about statistics, sp, functions

Round 4 - One-on-one 

(2 Questions)

  • Q1. Manager Round asked about my toughest work which i did in prev organization
  • Q2. Explain the task in which you have more scope/clear understanding

Interview Preparation Tips

Interview preparation tips for other job seekers - Joins, Cumulative sum, Rank functionality

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

I applied via Campus Placement and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple apptitde and coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview went 45min-1 hour
  • Q2. Basic coding concepts..oops concept. Deeply knowledge of concepts used.
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round. They asked about coding thing and project based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your projects . Programming languages concept

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Consultant Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2023

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

I applied via Naukri.com and was interviewed before Apr 2022. There were 4 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 - Technical 

(1 Question)

  • Q1. ALL SAP ABAP Related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Techno managerial round
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion mainly

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy we can crack with the basic knowledge on SAP ABAP

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

TekLink International interview questions for popular designations

 Consultant

 (2)

 Technical Lead

 (1)

 Software Engineer

 (1)

 Software Trainee

 (1)

Consultant Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2021

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

Interview Questionnaire 

1 Question

  • Q1. All the Questions regarding ABAP and project experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and have all answers for the things u kept in the resume.

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

Interview questions from similar companies

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

I applied via Walk-in and was interviewed before Aug 2022. There were 4 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 - Coding Test 

Test of SQL, Tableau and other skills based on your resume on Skillate

Round 3 - Technical 

(1 Question)

  • Q1. SQL and other skills technical questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Manager round / 2nd technical round

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Drill Down,Drill through
  • Q2. Dax functions like date add,date diff,time Intelligence
  • Q3. Import direct query

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very nice.If u are confident u can easily crack the interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Describe yourself
Round 2 - HR 

(1 Question)

  • Q1. What do you know about Sales?
Round 3 - HR 

(1 Question)

  • Q1. It was a Situational Sale Question.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. SQL joins, window functions, scenario based questions on data cleaning, data processing
  • Q2. What strategies can be employed for the optimization of ETL processes and Spark jobs?

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

TekLink International Interview FAQs

How many rounds are there in TekLink International interview?
TekLink International interview process usually has 3-4 rounds. The most common rounds in the TekLink International interview process are One-on-one Round, Coding Test and Aptitude Test.
How to prepare for TekLink International 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 TekLink International. The most common topics and skills that interviewers at TekLink International expect are SQL, Analytics, SAP BW, Data Analytics and Python.
What are the top questions asked in TekLink International interview?

Some of the top questions asked at the TekLink International interview -

  1. Basic coding concepts..oops concept. Deeply knowledge of concepts us...read more
  2. Technical interview went 45min-1 h...read more
  3. ALL SAP ABAP Related questi...read more

Tell us how to improve this page.

TekLink International Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 50 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
Argusoft Interview Questions
4.6
 • 38 Interviews
DotPe Interview Questions
3.1
 • 38 Interviews
View all

Fast track your campus placements

View all

TekLink International Reviews and Ratings

based on 30 reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.5

Salary

3.1

Job security

3.4

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 30 Reviews and Ratings
Azure Architect

Indore,

Hyderabad / Secunderabad

+1

9-14 Yrs

₹ 30-40 LPA

SAP BASIS Security + GRC

Indore,

Hyderabad / Secunderabad

9-14 Yrs

₹ 20-35 LPA

Sap Basis Administrator with Hana

Indore,

Hyderabad / Secunderabad

+1

6-11 Yrs

₹ 20-35 LPA

Explore more jobs
Associate Consultant
23 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

SAP BW Hana Consultant
14 salaries
unlock blur

₹5 L/yr - ₹15.9 L/yr

Consultant
12 salaries
unlock blur

₹7.3 L/yr - ₹13.5 L/yr

Senior Consultant
11 salaries
unlock blur

₹8.2 L/yr - ₹25.8 L/yr

Lead Consultant
7 salaries
unlock blur

₹17.1 L/yr - ₹25 L/yr

Explore more salaries
Compare TekLink International with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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