Upload Button Icon Add office photos

Times Business Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Times Business Solutions Project Associate Interview Questions and Answers

Updated 27 Aug 2024

Times Business Solutions Project Associate Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It has both logical reasoning and mathematical exercises

Round 2 - One-on-one 

(2 Questions)

  • Q1. Describe one project where team did not perform well ?
  • Ans. 

    One project where team did not perform well was the implementation of a new software system.

    • Lack of clear communication among team members led to misunderstandings and delays in project milestones

    • Some team members did not have the necessary skills or training to effectively contribute to the project

    • Poor project planning and unrealistic timelines set by the project manager contributed to the team's underperformance

  • Answered by AI
  • Q2. Why do you think you are ready for project manager role ?
  • Ans. 

    I have gained valuable experience in project management through my previous roles and have developed strong leadership and organizational skills.

    • Successfully led a team in completing a project within deadline and budget

    • Demonstrated ability to prioritize tasks and manage resources effectively

    • Strong communication skills to coordinate with team members and stakeholders

    • Experience in creating and implementing project plans

  • Answered by AI

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Leadership principles, Previous experience, Managerial and logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not really tough, easy to crack if prepared

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Associate Interview Questions & Answers

Amazon user image Arshiya Saba

posted on 10 Sep 2020

I applied via Company Website and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic Q & A

Interview Preparation Tips

Interview preparation tips for other job seekers - First-round I had English grammatical questions following that it took me to speech recognition, listen and type or type & email drafting. all you need is a calm mind and peaceful place and your set to go.

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

Round 1 - HR 

(2 Questions)

  • Q1. How much time u work continues
  • Q2. How much salary do u expect

Interview Preparation Tips

Interview preparation tips for other job seekers - Really hard work as associate good for Hrs

I applied via Company Website and was interviewed in May 2019. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. About your self
  • Q2. About your previous company and job profile
  • Q3. How do you relate your previous job profile with the profile you are applying
  • Q4. Any thing extra ordinary you have done in your previous company (s) that has changed your business
  • Ans. 

    Implemented a new customer feedback system that increased customer satisfaction by 20%

    • Implemented a new customer feedback system to gather insights and improve customer experience

    • Analyzed feedback data to identify common issues and areas for improvement

    • Implemented changes based on feedback to address customer concerns and enhance overall satisfaction

    • Trained team members on how to effectively use the new system and inte...

  • Answered by AI
  • Q5. Hobbies and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Have proper knowledge about your work experience
Make your CV precis and do adhere to it
Be honest

I applied via Walk-in and was interviewed before Jun 2021. There were 2 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 Resume tips
Round 2 - Group Discussion 

HR told about the company on the first day, how it works, told the rules, showed the management and a lot

Interview Preparation Tips

Topics to prepare for Amazon Associate interview:
  • Safery
  • Environment
  • Cleaning
Interview preparation tips for other job seekers - There is nothing to worry, if you have the desire to work and have passion, then you can work anywhere.

Interview Questionnaire 

13 Questions

  • Q1. Given a string of parenthesis, write a function if it is balanced
  • Ans. 

    Function to check if a string of parenthesis is balanced

    • Use a stack to keep track of opening parenthesis

    • If a closing parenthesis is encountered, pop from stack and check if it matches

    • If stack is empty and a closing parenthesis is encountered, return False

    • If all parenthesis are matched and stack is empty, return True

  • Answered by AI
  • Q2. Given two linked lists each of which represent a number, write a function that returns a linked list that represents the sum
  • Q3. Find the number of occurrences of words in a paragraph
  • Ans. 

    Count the occurrences of words in a paragraph.

    • Split the paragraph into words using whitespace as a delimiter.

    • Create a dictionary to store the count of each word.

    • Iterate through the words and increment the count in the dictionary.

    • Return the dictionary with the word counts.

  • Answered by AI
  • Q4. Find common elements out of two sorted array?
  • Ans. 

    Find common elements out of two sorted array

    • Use two pointers to traverse both arrays simultaneously

    • Compare elements at each pointer and move the pointer of the smaller element

    • If elements are equal, add to common elements list and move both pointers

    • Stop when either pointer reaches end of array

  • Answered by AI
  • Q5. Convert BST to a Doubly linked list?
  • Ans. 

    Convert a Binary Search Tree to a Doubly Linked List.

    • Create a DLL node class with left, right, and data fields.

    • Traverse the BST in-order and add each node to the DLL.

    • Adjust the left and right pointers of each node to create the DLL.

    • Return the head of the DLL.

  • Answered by AI
  • Q6. Given a binary tree in which the node structure has an additional field called “next” which of pointer to tree node type, fill up this field of each node to point to the next node at the same level (NULL i...
  • Ans. 

    The task is to fill the 'next' field of each node in a binary tree to point to the next node at the same level.

    • Use a level order traversal to process the tree nodes.

    • Maintain a queue to store the nodes at each level.

    • For each node, set its 'next' field to the next node in the queue.

    • If a node is the last node at its level, set its 'next' field to NULL.

  • Answered by AI
  • Q7. Given a parentheses string, determine if it is a valid / legitimate parentheses string. For strings consisting of single parentheses type and those consisting of multiple types
  • Q8. You have a dictionary of words. Given a word, print all anagram are in dictionary . State the data structure to be used to solve this problem
  • Ans. 

    To find anagrams of a given word in a dictionary, use a hash table to store sorted versions of each word as keys and their corresponding original words as values.

    • Create a hash table to store the anagrams

    • Iterate through each word in the dictionary

    • Sort the characters of the word and use it as a key in the hash table

    • If the key already exists, add the word to the list of values for that key

    • Print the list of values for the

  • Answered by AI
  • Q9. You have given 10 files and you have given a string suggest data structure which ll facilitate efficient search of string in the file if string appears more than ones in that case u have to print line numb...
  • Ans. 

    Suggest a data structure for efficient search of a string in 10 files and print line number and file if string appears more than once.

    • Use a hash table to store the file name and line number of each occurrence of the string.

    • Iterate through each file and for each line, check if the string is present and update the hash table accordingly.

    • Print the hash table entries for the string.

  • Answered by AI
  • Q10. Write a program to print a tree in vertical order asked more than one approach to do this problem and modified problem many times
  • Q11. Discussion on my current work, difficulties and challenges faced at work, difficult people I have had to work with, instances when I went out of my way to propose creative solutions to existing problems a...
  • Q12. Why do you think amazon is the right place for you?
  • Ans. 

    Amazon is the right place for me because of its innovative culture, vast resources, and opportunities for growth.

    • Amazon's innovative culture aligns with my passion for pushing boundaries and finding creative solutions.

    • The company's vast resources provide the necessary tools and support to develop and deliver high-quality software.

    • Amazon offers numerous opportunities for growth and career advancement, allowing me to con...

  • Answered by AI
  • Q13. You have given an binary matrix which is sorted row wise and column wise write a program to search a row in the matrix having maximum number of zeroes

Interview Preparation Tips

General Tips: My process started off at one their hiring drives. It was ahiring drivein world trade center in Bangalore. It was a tiresome process that comprised a written round followed by 4rounds of interview.
Skills: Algorithm, data structure
College Name: NA

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

Round: Problem Statement
Experience: Extempore was conducted which is almost same as GD. In Extempore round each individual should select his own topic and talk for 2 minutes. Eye donation was the topic selected by me. The main concept of this round is to check the fluency over language
Tips: Be confident in what you speak. Dont get nervoused in this round

Contribute & help others!
anonymous
You can choose to be anonymous

Times Business Solutions Interview FAQs

How many rounds are there in Times Business Solutions Project Associate interview?
Times Business Solutions interview process usually has 2 rounds. The most common rounds in the Times Business Solutions interview process are Aptitude Test and One-on-one Round.

Recently Viewed

JOBS

Nvidia

No Jobs

INTERVIEWS

Ribbon Communication

No Interviews

INTERVIEWS

Ribbon Communication

No Interviews

INTERVIEWS

Juniper Networks

No Interviews

INTERVIEWS

BankBazaar

No Interviews

INTERVIEWS

HyperVerge

No Interviews

INTERVIEWS

Nvidia

Fresher

30 top interview questions

INTERVIEWS

Naukri

Fresher

10 top interview questions

INTERVIEWS

Power Grid Corporation of India

No Interviews

INTERVIEWS

HyperVerge

No Interviews

Tell us how to improve this page.

Times Business Solutions Project Associate Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
PolicyBazaar Interview Questions
3.6
 • 356 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Uber Interview Questions
4.2
 • 150 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
View all
Assistant Manager
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accountant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Quality Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Times Business Solutions with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Indiamart Intermesh

3.6
Compare

JustDial

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