Upload Button Icon Add office photos

Filter interviews by

TMotions Global Interview Questions, Process, and Tips

Updated 15 Dec 2024

Top TMotions Global Interview Questions and Answers

View all 7 questions

TMotions Global Interview Experiences

Popular Designations

4 interviews found

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What were your previous projects?

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

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

(2 Questions)

  • Q1. What is the opps?
  • Ans. 

    Opps is a typo, the correct term is OOPs which stands for Object-Oriented Programming.

    • OOPs stands for Object-Oriented Programming

    • It is a programming paradigm based on the concept of 'objects', which can contain data in the form of fields (attributes or properties) and code in the form of procedures (methods)

    • Encapsulation, inheritance, and polymorphism are key principles of OOPs

  • Answered by AI
  • Q2. Different between bootstrap and tailwindcss?
  • Ans. 

    Bootstrap is a CSS framework that provides pre-designed components and utilities, while TailwindCSS is a utility-first CSS framework that allows for more customization.

    • Bootstrap provides pre-designed components like buttons, forms, and navigation bars, while TailwindCSS focuses on utility classes for styling.

    • TailwindCSS allows for more customization and flexibility in styling compared to Bootstrap.

    • Bootstrap requires mo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read outside of the technology also. Because nowadays interviewers, they will not ask your field question. They will ask outside questions. They have to just pass the time for rejection.

Skills evaluated in this interview

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Setup, Differences and Current project Code first Db vs Database First Db? and How to make changes from code side?
  • Ans. 

    Code first and Database first are two approaches to create a database. Changes can be made from code side using migrations.

    • Code first approach involves creating the database schema using code and then generating the database from it.

    • Database first approach involves creating the database schema using a visual designer and then generating the code from it.

    • Migrations can be used to make changes to the database schema from...

  • Answered by AI
  • Q2. Find 2nd Element from sql without using where caluse.
  • Ans. 

    Finding 2nd element from SQL without using WHERE clause.

    • Use OFFSET and LIMIT clauses to skip the first row and select the second row.

    • Order the result set by the desired column.

    • Example: SELECT column_name FROM table_name ORDER BY column_name OFFSET 1 LIMIT 1;

  • Answered by AI
  • Q3. CTE vs Temp Table. which one is best in sql stored procedure?
  • Ans. 

    CTE is better for complex queries, temp tables for large data sets.

    • CTE is more efficient for recursive queries and can improve readability.

    • Temp tables are better for large data sets and can be indexed for faster performance.

    • Consider the complexity and size of the data when choosing between CTE and temp tables.

  • Answered by AI
  • Q4. Having vs Group clause differences.
  • Ans. 

    HAVING clause filters groups while GROUP BY groups data based on a column.

    • GROUP BY is used to group data based on a column while HAVING is used to filter groups based on a condition.

    • HAVING clause is used with GROUP BY clause to filter groups based on a condition.

    • GROUP BY clause is used to group data based on a column and aggregate functions are used to perform calculations on each group.

    • Example: SELECT department, COUN...

  • Answered by AI
  • Q5. Generic in C#. Use cases and Exmaple.
  • Ans. 

    Generics in C# allow for type-safe programming and code reusability.

    • Generics allow for creating classes, interfaces, and methods that can work with any data type.

    • They provide compile-time type safety and eliminate the need for type casting.

    • Examples include List, Dictionary, and Nullable.

    • Generics can improve code performance by reducing boxing and unboxing operations.

  • Answered by AI
  • Q6. Delegates what, why and example.

Interview Preparation Tips

Interview preparation tips for other job seekers - Intermediate type questions. Just prepare your fundamentals and Also keep in mind your current project architecture and your daily tasks and responsibilities.

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding questiona are related to the tech stack

Round 2 - HR 

(1 Question)

  • Q1. How many projects that you have worked on?

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

TMotions Global interview questions for popular designations

 Angular Developer

 (1)

 Senior Software Engineer

 (1)

 Business Analyst

 (1)

 Front end Developer

 (1)

Jobs at TMotions Global

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

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

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

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

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

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

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college
Contribute & help others!
anonymous
You can choose to be anonymous

TMotions Global Interview FAQs

How many rounds are there in TMotions Global interview?
TMotions Global interview process usually has 1-2 rounds. The most common rounds in the TMotions Global interview process are Technical, Coding Test and HR.
How to prepare for TMotions Global 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 TMotions Global. The most common topics and skills that interviewers at TMotions Global expect are Javascript, MVC, HTML, JQuery and CMS.
What are the top questions asked in TMotions Global interview?

Some of the top questions asked at the TMotions Global interview -

  1. Setup, Differences and Current project Code first Db vs Database First Db? and ...read more
  2. CTE vs Temp Table. which one is best in sql stored procedu...read more
  3. Find 2nd Element from sql without using where calu...read more

Recently Viewed

JOBS

Gushwork

14 jobs

JOBS

Browse jobs

Discover jobs you love

JOBS

GroundTruth

33 jobs

PHOTOS

Growisto

7 office photos

JOBS

iKonTel

No Jobs

JOBS

Gridlogics Technologies

No Jobs

SALARIES

Presidency School

JOBS

Careerist

No Jobs

JOBS

Presidency School

No Jobs

JOBS

Shaadi.com

No Jobs

Tell us how to improve this page.

TMotions Global Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
View all

TMotions Global Reviews and Ratings

based on 18 reviews

4.2/5

Rating in categories

3.8

Skill development

4.3

Work-life balance

3.9

Salary

4.1

Job security

4.1

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 18 Reviews and Ratings
Artificial Intelligence Lead

Noida,

Mohali

6-11 Yrs

Not Disclosed

NopCommerce Developer

Mohali

3-7 Yrs

Not Disclosed

NopCommerce Developer

Noida,

Mohali

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
29 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Developer
11 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Business Analyst
9 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Developer
6 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TMotions Global with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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