Upload Button Icon Add office photos

Filter interviews by

Tulja Consultancy and Services Back Office Interview Questions and Answers

Updated 5 Jul 2024

Tulja Consultancy and Services Back Office Interview Experiences

1 interview found

Back Office Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Jun 2024.

Round 1 - Personal Interview 

(5 Questions)

  • Q1. My Name enquiry
  • Q2. Past Job details
  • Q3. Past Job work experience
  • Q4. My family details
  • Q5. My education background

Interview questions from similar companies

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

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the core working hours for remote employees?
  • Q2. How you feel, how do you react when you believe that thought?

Interview Preparation Tips

Interview preparation tips for other job seekers - I really want this job this is the best opportunity to me start my career
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Quantitive, english, general knowledge

Round 3 - HR 

(4 Questions)

  • Q1. Personal information
  • Q2. Parents occupation
  • Q3. What is your father?
  • Q4. What are your hobbies?

Interview Preparation Tips

Interview preparation tips for other job seekers - can go to join.

I applied via Company Website and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.
  • Q4. My name is meghraj mukund kulkarni i am 21 year old, my qualification are diploma in electronics and telecommunications. About my family 4 members in my family my mother, father, little sister and my self
  • Ans. My salary expectations are 15,000/- to 20,000/-
  • Answered Anonymously
Round 2 - One-on-one 

(3 Questions)

  • Q1. Work experience to me
  • Q2. Choose 1 topic and tell me 2 line this topic.
  • Ans. 

    Topic: Artificial Intelligence

    • AI is a branch of computer science that focuses on creating intelligent machines that can perform tasks without human intervention.

    • AI has various applications such as natural language processing, image recognition, and decision-making.

  • Answered by AI
  • Q3. Topic:- cricket Cricket are the most popular game in the world, 11 players in cricket team.
  • Ans. 

    Cricket is a popular game with 11 players in a team.

    • Cricket originated in England and is now played worldwide.

    • The game involves two teams of 11 players each.

    • The objective is to score more runs than the opposing team.

    • Cricket has different formats such as Test, ODI, and T20.

    • Some of the famous cricket players are Sachin Tendulkar, Virat Kohli, and Steve Smith.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I m meghraj kulkarni. I have a urgent job because financial problems in my family.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Why did you choose the flask over the django and fastapi?
  • Ans. 

    I chose Flask over Django and FastAPI due to its simplicity, flexibility, and ease of use for smaller projects.

    • Flask is lightweight and minimalistic, making it easier to set up and use for smaller projects.

    • Flask allows for more flexibility in terms of project structure and customization compared to Django.

    • Flask is well-suited for rapid prototyping and smaller applications where simplicity is key.

    • Django, on the other ha...

  • Answered by AI
  • Q2. Write the code for flask request and response block?
  • Ans. 

    Flask request and response block code snippet

    • Use Flask's request object to access incoming request data

    • Use Flask's jsonify function to create a JSON response

    • Handle different HTTP methods like GET, POST, etc. in the route function

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is ORM? which ORM tool, have you used?
  • Ans. 

    ORM stands for Object-Relational Mapping, a programming technique for converting data between incompatible type systems in object-oriented programming languages.

    • ORM is used to map objects from an application to tables in a relational database.

    • It simplifies data manipulation by allowing developers to work with objects instead of SQL queries.

    • Popular ORM tools include Hibernate for Java, Entity Framework for .NET, and Seq

  • Answered by AI
  • Q2. Write ORM code for select item from table?
  • Ans. 

    Use ORM code to select item from a table in database.

    • Use ORM query methods like find(), findOne(), or where() to select items from a table.

    • Specify the table name and any conditions for the selection.

    • Example: User.find({ where: { id: 1 } }) will select a user with id 1 from the User table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just conduct the interviews
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

Group discussion for the some task for the related company

Round 2 - Technical 

(2 Questions)

  • Q1. How to handling team
  • Ans. 

    I handle a team effectively by setting clear goals, providing support, fostering open communication, and recognizing achievements.

    • Set clear goals and expectations for the team

    • Provide support and resources to help team members succeed

    • Foster open communication and encourage feedback

    • Recognize and reward team achievements

    • Lead by example and demonstrate a positive attitude

  • Answered by AI
  • Q2. How to manage customer
  • Ans. 

    Effective strategies to manage customer relationships include clear communication, personalized interactions, timely responses, and proactive problem-solving.

    • Maintain clear and open communication with customers to address their needs and concerns.

    • Personalize interactions by remembering customer preferences and previous interactions.

    • Respond to customer inquiries and issues in a timely manner to show that their concerns ...

  • Answered by AI
Round 3 - Assignment 

Related to the self skills and knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - No more tips
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

I was asked a problem around Edit distance and how to compute a average for a stream of data.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Nodejs promises async await difference
  • Ans. 

    Node.js promises are a way to handle asynchronous operations, while async/await is a syntax for writing asynchronous code in a synchronous manner.

    • Promises are objects that represent the eventual completion (or failure) of an asynchronous operation.

    • Async/await is a syntactic sugar built on top of promises, making asynchronous code look more like synchronous code.

    • Async functions return a promise, which allows you to use ...

  • Answered by AI
  • Q2. Nodejs architecture eventloop

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your strength
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. React questions
  • Q2. Nodejs questions

Interview Preparation Tips

Interview preparation tips for other job seekers - coding is must

Tulja Consultancy and Services Interview FAQs

How many rounds are there in Tulja Consultancy and Services Back Office interview?
Tulja Consultancy and Services interview process usually has 1 rounds. The most common rounds in the Tulja Consultancy and Services interview process are Personal Interview.

Tell us how to improve this page.

Tulja Consultancy and Services Back Office Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

Tulja Consultancy and Services Back Office Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Compare Tulja Consultancy and Services with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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