Upload Button Icon Add office photos

Treez

Compare button icon Compare button icon Compare

Filter interviews by

Treez Interview Questions and Answers

Updated 10 May 2024
Popular Designations

8 Interview questions

A Software Engineer was asked
Q. How do you debug a memory leak?
Ans. 

Debugging memory leaks involves identifying and fixing areas where memory is not properly released after use.

  • Use tools like Valgrind or AddressSanitizer to detect memory leaks in your application.

  • Check for unfreed memory allocations, such as 'malloc' or 'new' without corresponding 'free' or 'delete'.

  • Review your code for circular references in data structures, which can prevent memory from being released.

  • Implement ...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain Event Emitter in Node.js.
Ans. 

EventEmitter is a class in Node.js that allows multiple functions to be attached to an event and triggered when the event is emitted.

  • EventEmitter is a core module in Node.js that allows communication between objects in a loosely coupled way.

  • It is used for handling events in Node.js applications.

  • Listeners can be attached to EventEmitter instances using the 'on' method and events can be emitted using the 'emit' meth...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Can you declare a variable with the same name using the var keyword?
Ans. 

No, you cannot declare a variable with the same name using var keyword.

  • Variables declared with var keyword can only be declared once within the same scope

  • Attempting to declare a variable with the same name using var will result in a syntax error

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain Promises.
Ans. 

A Promise is an object representing the eventual completion or failure of an asynchronous operation.

  • Promises have three states: pending, fulfilled, and rejected.

  • A fulfilled promise returns a value, while a rejected promise returns an error.

  • Example: const myPromise = new Promise((resolve, reject) => { /* async operation */ });

  • You can handle results using .then() for fulfilled and .catch() for rejected promises.

  • E...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is hoisting?
Ans. 

Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their containing scope during compilation.

  • Variables declared with 'var' are hoisted, but their initialization is not. Example: console.log(x); var x = 5; // undefined

  • Function declarations are fully hoisted, allowing them to be called before their definition. Example: greet(); function greet() { console.log('Hello')...

View all Software Engineer interview questions
A Software Engineer was asked
Q. How are Request and Response objects created in Node.js?
Ans. 

Request and Response objects are created in Node.js using the 'http' module.

  • Require the 'http' module in your code

  • Use the 'http.createServer()' method to create a server

  • Access the request and response objects in the callback function

View all Software Engineer interview questions
A Software Engineer was asked
Q. What are the differences between let, var, and const?
Ans. 

let, var, and const are all used to declare variables in JavaScript, but they have different scopes and behaviors.

  • let: block-scoped variable, can be reassigned

  • var: function-scoped variable, can be reassigned

  • const: block-scoped variable, cannot be reassigned, but its properties can be modified

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. Explain callback and async await
Ans. 

Callback is a function passed as an argument to another function to be executed later. Async await is a syntax for writing asynchronous code in a synchronous manner.

  • Callback is used in event handling, asynchronous programming, and more.

  • Async await is a modern way to write asynchronous code in a synchronous style.

  • Example: Callback - setTimeout function in JavaScript.

  • Example: Async await - fetching data from an API ...

View all Software Engineer interview questions

Treez Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. Explain Promise
  • Q2. Explain callback and async await
  • Ans. 

    Callback is a function passed as an argument to another function to be executed later. Async await is a syntax for writing asynchronous code in a synchronous manner.

    • Callback is used in event handling, asynchronous programming, and more.

    • Async await is a modern way to write asynchronous code in a synchronous style.

    • Example: Callback - setTimeout function in JavaScript.

    • Example: Async await - fetching data from an API in Ja...

  • Answered by AI
  • Q3. What is hoisting
  • Q4. What is event loop
  • Q5. Explain Event Emitter in nodejs
  • Ans. 

    EventEmitter is a class in Node.js that allows multiple functions to be attached to an event and triggered when the event is emitted.

    • EventEmitter is a core module in Node.js that allows communication between objects in a loosely coupled way.

    • It is used for handling events in Node.js applications.

    • Listeners can be attached to EventEmitter instances using the 'on' method and events can be emitted using the 'emit' method.

    • Ex...

  • Answered by AI
  • Q6. How Request and Response object is created in nodejs
  • Ans. 

    Request and Response objects are created in Node.js using the 'http' module.

    • Require the 'http' module in your code

    • Use the 'http.createServer()' method to create a server

    • Access the request and response objects in the callback function

  • Answered by AI
  • Q7. Difference between let , var , const
  • Q8. Can you declare a variable with same name using var keyword
  • Ans. 

    No, you cannot declare a variable with the same name using var keyword.

    • Variables declared with var keyword can only be declared once within the same scope

    • Attempting to declare a variable with the same name using var will result in a syntax error

  • Answered by AI
  • Q9. What is middleware
  • Q10. How to debug memory leak

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 3 May 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Sql joins, groupin
  • Q2. Python list and dictionaries
Round 2 - Technical 

(1 Question)

  • Q1. Just friendly discussion on pay and work

Interview Preparation Tips

Interview preparation tips for other job seekers - Sql and python should be good

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Treez?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

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

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition
  • Ans. 

    Experienced professional with a strong educational background and clear career ambitions, eager to contribute to the company's success.

    • I have over 5 years of experience in project management, leading teams to successfully deliver complex projects on time.

    • I hold a Master's degree in Business Administration from XYZ University, where I specialized in strategic management.

    • My family has always emphasized the importance of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

Are these interview questions helpful?

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

Interview Questionnaire 

2 Questions

  • Q1. Accounting question asked
  • Q2. Answer has been given accordingly

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an average interview. If you have good experience of MNC culture and you have short notice period of your existing company then they can hire you.

Treez Interview FAQs

How many rounds are there in Treez interview?
Treez interview process usually has 1-2 rounds. The most common rounds in the Treez interview process are Technical.
What are the top questions asked in Treez interview?

Some of the top questions asked at the Treez interview -

  1. Can you declare a variable with same name using var keyw...read more
  2. How Request and Response object is created in nod...read more
  3. How to debug memory l...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.7/5

based on 3 interview experiences

Difficulty level

Easy 50%
Moderate 50%

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.8
 • 8.6k 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
Amazon Interview Questions
4.0
 • 5.4k 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.8
 • 3.4k Interviews
View all

Treez Reviews and Ratings

based on 8 reviews

3.3/5

Rating in categories

3.8

Skill development

4.4

Work-life balance

4.0

Salary

2.1

Job security

3.4

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹13 L/yr - ₹30 L/yr

Technical Lead
4 salaries
unlock blur

₹24.1 L/yr - ₹30 L/yr

Senior Manager-HR
3 salaries
unlock blur

₹28 L/yr - ₹38 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹18 L/yr - ₹22.1 L/yr

Explore more salaries
Compare Treez with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview