Upload Button Icon Add office photos

Filter interviews by

Trois Infotech Interview Questions and Answers

Updated 30 Dec 2024
Popular Designations

9 Interview questions

A React Js Frontend Developer was asked 5mo ago
Q. What are the differences between sessions and cookies?
Ans. 

Sessions and cookies are both used for storing user data, but they differ in storage location and lifespan.

  • Cookies are stored on the client-side, while sessions are stored on the server-side.

  • Cookies can have an expiration date, while sessions typically expire when the user closes the browser.

  • Cookies can hold a small amount of data (around 4KB), whereas sessions can store larger amounts of data on the server.

  • Cookie...

View all React Js Frontend Developer interview questions
An Associate Software Engineer was asked
Q. Is Node.js synchronous or asynchronous? Explain with an example.
Ans. 

Node is asynchronous, meaning it can handle multiple requests at once without blocking the main thread.

  • Node uses an event-driven, non-blocking I/O model

  • Callbacks are used to handle asynchronous operations

  • Example: Reading a file using fs module

  • Example: Making an HTTP request using http module

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Why would you use MongoDB instead of MySQL?
Ans. 

MongoDB is better suited for handling unstructured data and offers better scalability and performance compared to MySQL.

  • MongoDB is a NoSQL database that allows for flexible and dynamic schema design.

  • MongoDB is better suited for handling large amounts of unstructured data, such as social media posts or sensor data.

  • MongoDB offers better scalability and performance compared to MySQL, especially for write-heavy applic...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is two-way binding in Angular?
Ans. 

Two way binding in Angular allows automatic synchronization of data between the model and the view.

  • Two way binding is achieved using the ngModel directive.

  • Changes made in the view are automatically reflected in the model and vice versa.

  • It simplifies the code and reduces the need for manual event handling.

  • Example:

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is a callback, and what purpose does it serve?
Ans. 

A callback is a function passed as an argument to another function, which is then invoked inside the outer function.

  • Callbacks are used to execute code asynchronously, such as when an event occurs or when data is retrieved from a server.

  • They are commonly used in JavaScript for event handling, AJAX requests, and timers.

  • Callbacks can also be used for error handling, allowing the caller to handle errors that occur ins...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What are CRUD operations?
Ans. 

CRUD stands for Create, Read, Update, and Delete. It refers to the basic operations performed on a database.

  • Create - inserting new data into the database

  • Read - retrieving data from the database

  • Update - modifying existing data in the database

  • Delete - removing data from the database

  • CRUD operations are essential for managing data in a database

  • Examples include adding a new user, updating a product's price, or deleting...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. How do you handle synchronous data in Node.js?
Ans. 

Synchronous data in Node.js can be handled using callbacks or promises.

  • Use callbacks to handle synchronous data in Node.js

  • Promises can also be used to handle synchronous data

  • Avoid using synchronous code in Node.js as it can block the event loop

View all Associate Software Engineer interview questions
Are these interview questions helpful?
An Associate Software Engineer was asked
Q. What are observables in Angular?
Ans. 

Observables are a way to handle asynchronous data streams in Angular.

  • Observables are similar to Promises but can emit multiple values over time.

  • They can be created using the RxJS library.

  • They are often used for handling HTTP requests and real-time data updates.

  • Operators can be used to transform, filter, and combine observables.

  • Subscriptions are used to listen to the emitted values and handle errors and completion.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is express ,what is restful api
Ans. 

Express is a web application framework for Node.js. RESTful API is an architectural style for building web services.

  • Express is a popular framework for building web applications using Node.js

  • It provides a set of features for handling HTTP requests and responses

  • RESTful API is an architectural style for building web services that use HTTP methods to perform CRUD operations

  • It uses standard HTTP methods like GET, POST,...

View all Associate Software Engineer interview questions

Trois Infotech Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Academic projects and from the resume about skills

Round 2 - Technical 

(1 Question)

  • Q1. Please explain how u use the technology
  • Ans. 

    I use technology to design, develop, and test software applications for various engineering projects.

    • I utilize programming languages such as Java, C++, and Python to write code for software applications.

    • I use tools like Git for version control and collaboration with team members.

    • I employ testing frameworks like JUnit for unit testing and Selenium for automated testing.

    • I leverage IDEs like IntelliJ IDEA and Eclipse for ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Session and cookie difference
  • Ans. 

    Sessions and cookies are both used for storing user data, but they differ in storage location and lifespan.

    • Cookies are stored on the client-side, while sessions are stored on the server-side.

    • Cookies can have an expiration date, while sessions typically expire when the user closes the browser.

    • Cookies can hold a small amount of data (around 4KB), whereas sessions can store larger amounts of data on the server.

    • Cookies are...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic logical reasoning questions and some other non-technical questions

Round 2 - Technical 

(1 Question)

  • Q1. OOPs concept, DBMS questions. Few coding questions were also asked to test logic.

I applied via Recruitment Consultant and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. Mostly the asked me about web development
  • Q2. What is two way binding in angular
  • Ans. 

    Two way binding in Angular allows automatic synchronization of data between the model and the view.

    • Two way binding is achieved using the ngModel directive.

    • Changes made in the view are automatically reflected in the model and vice versa.

    • It simplifies the code and reduces the need for manual event handling.

    • Example:

  • Answered by AI
  • Q3. What is express ,what is restful api
  • Ans. 

    Express is a web application framework for Node.js. RESTful API is an architectural style for building web services.

    • Express is a popular framework for building web applications using Node.js

    • It provides a set of features for handling HTTP requests and responses

    • RESTful API is an architectural style for building web services that use HTTP methods to perform CRUD operations

    • It uses standard HTTP methods like GET, POST, PUT,...

  • Answered by AI
  • Q4. Is node is synchronous or asynchronous explain with an example
  • Ans. 

    Node is asynchronous, meaning it can handle multiple requests at once without blocking the main thread.

    • Node uses an event-driven, non-blocking I/O model

    • Callbacks are used to handle asynchronous operations

    • Example: Reading a file using fs module

    • Example: Making an HTTP request using http module

  • Answered by AI
  • Q5. How to handle synchronous data in node js
  • Ans. 

    Synchronous data in Node.js can be handled using callbacks or promises.

    • Use callbacks to handle synchronous data in Node.js

    • Promises can also be used to handle synchronous data

    • Avoid using synchronous code in Node.js as it can block the event loop

  • Answered by AI
  • Q6. What is crud operation
  • Ans. 

    CRUD stands for Create, Read, Update, and Delete. It refers to the basic operations performed on a database.

    • Create - inserting new data into the database

    • Read - retrieving data from the database

    • Update - modifying existing data in the database

    • Delete - removing data from the database

    • CRUD operations are essential for managing data in a database

    • Examples include adding a new user, updating a product's price, or deleting a cu...

  • Answered by AI
  • Q7. Why you use mongo db insteasd of mysql
  • Ans. 

    MongoDB is better suited for handling unstructured data and offers better scalability and performance compared to MySQL.

    • MongoDB is a NoSQL database that allows for flexible and dynamic schema design.

    • MongoDB is better suited for handling large amounts of unstructured data, such as social media posts or sensor data.

    • MongoDB offers better scalability and performance compared to MySQL, especially for write-heavy application...

  • Answered by AI
  • Q8. What us observables in angular
  • Ans. 

    Observables are a way to handle asynchronous data streams in Angular.

    • Observables are similar to Promises but can emit multiple values over time.

    • They can be created using the RxJS library.

    • They are often used for handling HTTP requests and real-time data updates.

    • Operators can be used to transform, filter, and combine observables.

    • Subscriptions are used to listen to the emitted values and handle errors and completion.

  • Answered by AI
  • Q9. What is call back & for what purpuse it use
  • Ans. 

    A callback is a function passed as an argument to another function, which is then invoked inside the outer function.

    • Callbacks are used to execute code asynchronously, such as when an event occurs or when data is retrieved from a server.

    • They are commonly used in JavaScript for event handling, AJAX requests, and timers.

    • Callbacks can also be used for error handling, allowing the caller to handle errors that occur inside t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Create or develop a project within your area of interest & upload it in your cv make sure that you have the knowledge of your project from base to advance. I developed a project using mean stack and interviewer mostly asked about my project
Keep a base knowledge of your area of interest deviates your interviewer to your area of interest . Attempt to answer all the questions you get satisfy your interviewer
Wish you all the very best

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Trois Infotech?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

Trois Infotech Interview FAQs

How many rounds are there in Trois Infotech interview?
Trois Infotech interview process usually has 1-2 rounds. The most common rounds in the Trois Infotech interview process are Technical and Aptitude Test.
How to prepare for Trois Infotech 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 Trois Infotech. The most common topics and skills that interviewers at Trois Infotech expect are Front End, PDF, MySQL, Debugging and Javascript.
What are the top questions asked in Trois Infotech interview?

Some of the top questions asked at the Trois Infotech interview -

  1. Is node is synchronous or asynchronous explain with an exam...read more
  2. What is call back & for what purpuse it ...read more
  3. How to handle synchronous data in node...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
View all

Trois Infotech Reviews and Ratings

based on 14 reviews

3.2/5

Rating in categories

3.5

Skill development

3.1

Work-life balance

3.0

Salary

2.8

Job security

2.8

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 14 Reviews and Ratings
Software Engineer
8 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate Software Engineer
8 salaries
unlock blur

₹2 L/yr - ₹6.5 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹8.8 L/yr - ₹15.6 L/yr

Project Assistant
5 salaries
unlock blur

₹1.7 L/yr - ₹2.2 L/yr

Project Coordinator
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Trois Infotech with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview