Upload Button Icon Add office photos

TTK Services

Compare button icon Compare button icon Compare

Filter interviews by

TTK Services Interview Questions and Answers

Updated 1 Jul 2024

TTK Services Interview Experiences

Popular Designations

4 interviews found

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

English general knowledge case study

Round 2 - Assignment 

Assignment was easy can do easily

Round 3 - Case Study 

Scenario was given and how to write email to your client

Interview Preparation Tips

Interview preparation tips for other job seekers - Good learning opportunity you must try

Client Relationship Executive Interview Questions asked at other Companies

Q1. Describe a situation where you strategically retained a customer in your experience?
View answer (1)

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

Interview Questionnaire 

6 Questions

  • Q1. Give examples of any Analytical Problem Solving by you?
  • Ans. 

    I used analytical problem solving to identify and resolve a production issue.

    • Analyzed production data to identify root cause of issue

    • Developed and implemented a solution to resolve the issue

    • Monitored production data to ensure solution was effective

  • Answered by AI
  • Q2. What is difference between Hard Work & Smart Work?
  • Q3. Why you Choose B.sc (Life Science) in Graduation?
  • Q4. Where do you See Yourself in future?
  • Q5. What do you Know about TTK Services Company & it Associates?
  • Q6. Tell me About Your Hobbies?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident & Patient While Give Answers & Listen Carefully What is Asking by Interviewers?
All the Best for the Interview.

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)

FD Sales Interview Questions & Answers

user image Anonymous

posted on 21 Mar 2022

I applied via Newspaper Ad and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Personality Assessment 

(1 Question)

  • Q1. How will u prove urself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and do not be over optimistic

Interview Questions & Answers

user image Anonymous

posted on 23 Apr 2021

I applied via Naukri.com and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. HR related questions, Written, exam, Work experience, Manager round

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Have good written and verbal communication skills. Very easy and quick interview process ever seen in any other company.l

TTK Services interview questions for popular designations

 Client Relationship Executive

 (1)

 Senior Executive

 (1)

 FD Sales

 (1)

Jobs at TTK Services

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: First round was a simple round which involved 10 multiple choice questions and 3 coding questions on hackerrank platform.

Round: Technical Interview
Experience: Mainly on topics like networks, data structures and algorithms, operating systems. The interviewers looked for people who have had prior experience in web development and asked questions regarding web development in depth too.
Tips: I recommend everyone to read the book titled, 'Cracking the Coding Interview' as it was helpful in my approach to an interview.

General Tips: The one major thing that would give you the edge in joining Myntra would definitely be exposure to web development. Since it is not a part of the curriculum , it's all the more important for you to familiarize yourself with web development. In fact, a few projects in the same field would put you in a very advantageous position to get the job.
Skill Tips: 1. Start your placement preparations well ahead, no point regretting later.
2. Keep a concise resume. Do not take your resume to several pages.
3. Do not neglect aptitude preparation. Many people do this mistake and end up not clearing the first round for several companies.
4. Be thorough with your basics across all subjects. (Do not neglect any subject, even they you may like a few and dislike the others.)
5. Keep in mind, the interviewers are really friendly and try to make sure that you're not nervous during the interview. All they want to do is to test you. Be confident and give it your best shot.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Referral and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

I applied via Naukri.com and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell about yourself
  • Q2. What is your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview wa easy and can crack it

I applied via Naukri.com and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Work experience
  • Q2. R u comfertable traveling
  • Ans. 

    Yes, I am comfortable traveling for work.

    • I have experience traveling for work in my previous roles.

    • I am adaptable and enjoy exploring new places.

    • I am willing to travel for client meetings and conferences.

    • I understand the importance of face-to-face interactions in sales.

    • I am organized and can handle the logistics of travel efficiently.

  • Answered by AI
  • Q3. What is your study status
  • Q4. Graduate
  • Q5. Can u join immediatly
  • Q6. Will you able to sell product by showing them on thier phone screen on the app
  • Q7. This is something new,but India is going through digitalisation,so ofcourse that wouldnt be that problem.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good,i got selected,after two days i got a cl bck,and on 3 days i did my joining procedure

I applied via Referral and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Group Discussion 

National head , RSM with ASM

Round 2 - HR 

(1 Question)

  • Q1. Simple question asked about my previous company
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiable by hr side

Interview Preparation Tips

Interview preparation tips for other job seekers - till date i have not any call . I want to get a chance to work in FMCG

TTK Services Interview FAQs

How many rounds are there in TTK Services interview?
TTK Services interview process usually has 2 rounds. The most common rounds in the TTK Services interview process are Personality Assessment, Aptitude Test and Assignment.
How to prepare for TTK Services 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 TTK Services. The most common topics and skills that interviewers at TTK Services expect are MS Office, Communication Skills, Visa Processing, Immigration and Management.

Tell us how to improve this page.

TTK Services Interview Process

based on 4 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 434 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 332 Interviews
Myntra Interview Questions
4.0
 • 217 Interviews
Blinkit Interview Questions
3.7
 • 189 Interviews
BlackBuck Interview Questions
3.8
 • 179 Interviews
FirstCry Interview Questions
3.6
 • 172 Interviews
Spinny Interview Questions
3.7
 • 170 Interviews
Tata 1mg Interview Questions
3.6
 • 150 Interviews
Digit Insurance Interview Questions
3.9
 • 145 Interviews
View all

TTK Services Reviews and Ratings

based on 98 reviews

3.7/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.0

Salary

3.5

Job security

3.4

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 98 Reviews and Ratings
Senior Executive
36 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Team Lead
22 salaries
unlock blur

₹4 L/yr - ₹10.7 L/yr

Senior Client Servicing Executive
19 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Client Servicing Executive
18 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Executive Accountant
14 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Explore more salaries
Compare TTK Services with

Udaan

3.9
Compare

Swiggy

3.8
Compare

BlackBuck

3.8
Compare

Blinkit

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