Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by TradeIndia (Infocom Network Private Limited) Team. If you also belong to the team, you can get access from here

Filter interviews by

TradeIndia (Infocom Network Private Limited) Executive Interview Questions and Answers

Updated 19 Sep 2023

TradeIndia (Infocom Network Private Limited) Executive Interview Experiences

1 interview found

Executive Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2023

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

I applied via Referral and was interviewed in Aug 2023. 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 tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Tel me about your self?
  • Q2. What are your strength and weakness
  • Q3. What was the role in previous company?

Interview Preparation Tips

Interview preparation tips for other job seekers - best part is having WFH option

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jul 2022. There were 3 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Related to TDS and GST
  • Q2. Basic Question and past work related
Round 3 - HR 

(1 Question)

  • Q1. Basic question and salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Smooth interview process and good experience for professionals.

I applied via LinkedIn and was interviewed before Jan 2021. There were 3 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 tips
Round 2 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?
  • Q5. Where do you see yourself in 5 years?
  • Q6. What are your strengths and weaknesses?
  • Q7. Tell me about yourself.
Round 3 - Aptitude Test 

Interview Preparation Tips

Topics to prepare for Udaan Executive interview:
  • Excel
  • English
  • Manpower Handling
Interview preparation tips for other job seekers - If you know play with data then go to interview

I applied via Walk-in and was interviewed in Mar 2022. There were 3 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. Tell me about yourself.
Round 3 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.

Interview Preparation Tips

Interview preparation tips for other job seekers - better opption change your job
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Feb 2023. 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. Why live tha Tata 1mg company ..?
  • Q2. How many years experience in that company..?

Interview Preparation Tips

Interview preparation tips for other job seekers - I am working in last company Tata 1mg
.. good company.

Interview Questionnaire 

10 Questions

  • Q1. What do you do when your schedule is interrupted? How you handle it?
  • Q2. PreOrder traversal without recursion?
  • Ans. 

    PreOrder traversal without recursion is done using a stack to simulate the function call stack.

    • Create an empty stack and push the root node onto it.

    • While the stack is not empty, pop a node from the stack and process it.

    • Push the right child of the popped node onto the stack if it exists.

    • Push the left child of the popped node onto the stack if it exists.

  • Answered by AI
  • Q3. Build a bst out of the unsorted array by looping over the array and inserting each element to the tree?
  • Ans. 

    Yes

    • Create an empty binary search tree (BST)

    • Loop over the unsorted array

    • For each element, insert it into the BST using the appropriate insertion logic

    • Repeat until all elements are inserted

    • The resulting BST will be built from the unsorted array

  • Answered by AI
  • Q4. Find 2 elements in array whose sum is equal to given number?
  • Ans. 

    The question asks to find two elements in an array whose sum is equal to a given number.

    • Iterate through the array and for each element, check if the difference between the given number and the current element exists in the array.

    • Use a hash set to store the elements as you iterate through the array for efficient lookup.

    • Return the pair of elements if found, otherwise return a message indicating no such pair exists.

  • Answered by AI
  • Q5. How many types of trigger?
  • Ans. 

    There are two types of triggers: DML triggers and DDL triggers.

    • DML triggers are fired in response to DML (Data Manipulation Language) statements like INSERT, UPDATE, DELETE.

    • DDL triggers are fired in response to DDL (Data Definition Language) statements like CREATE, ALTER, DROP.

    • Examples: A DML trigger can be used to log changes made to a table, while a DDL trigger can be used to enforce certain rules when a table is alt

  • Answered by AI
  • Q6. Can trigger be used with select statement?
  • Ans. 

    Yes, triggers can be used with select statements in SQL.

    • Triggers are database objects that are automatically executed in response to certain events, such as insert, update, or delete operations.

    • While triggers are commonly used with insert, update, and delete statements, they can also be used with select statements.

    • Using triggers with select statements allows you to perform additional actions or validations before or af...

  • Answered by AI
  • Q7. Indexing in mysql? How many types of indexing in mysql?
  • Ans. 

    Indexing in MySQL improves query performance. There are several types of indexing in MySQL.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Types of indexing in MySQL include B-tree, hash, full-text, and spatial indexes.

    • B-tree indexes are the most common and suitable for most use cases.

    • Hash indexes are used for exact match lookups.

    • Full-text indexes are used for searching text-based data efficie...

  • Answered by AI
  • Q8. Engines in mysql?
  • Ans. 

    Engines in MySQL are the underlying software components that handle storage, indexing, and querying of data.

    • MySQL supports multiple storage engines, each with its own strengths and features.

    • Some commonly used engines in MySQL are InnoDB, MyISAM, and Memory.

    • InnoDB is the default engine in MySQL and provides support for transactions and foreign keys.

    • MyISAM is known for its simplicity and speed but lacks transaction suppo...

  • Answered by AI
  • Q9. Singlton pattern?
  • Q10. Can a constructor be private?
  • Ans. 

    Yes, a constructor can be private.

    • A private constructor can only be accessed within the class itself.

    • It is often used in singleton design pattern to restrict object creation.

    • Private constructors are also useful for utility classes that only contain static methods.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 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 tips
Round 2 - Aptitude Test 

Online aptitude test with general aptitude questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic js, ES6 features, Angular Questions, Node.js Lifecycle, event loop, mongodb questions, some HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare what you are going to appear for, means technologies!

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Tell about your self, Education,work experience,key skill,next desire in life, future plans

Interview Preparation Tips

Interview preparation tips for other job seekers - I say only all of u Best of luck

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How you handle warehouse operation
  • Ans. 

    I ensure efficient warehouse operations through proper planning, organization, and management.

    • Implementing inventory management systems

    • Optimizing warehouse layout and storage capacity

    • Ensuring safety and compliance with regulations

    • Managing staff and training programs

    • Monitoring and analyzing key performance indicators

    • Collaborating with other departments to improve supply chain efficiency

  • Answered by AI
  • Q2. Why there coming PNA in inventory
  • Ans. 

    PNA in inventory may be due to various reasons.

    • PNA may be a product that is slow-moving or has low demand.

    • There may be an excess of PNA due to overstocking or inaccurate forecasting.

    • PNA may be a new product that has not yet gained popularity.

    • PNA may be a seasonal product that is out of season.

    • PNA may be a product that is being phased out or discontinued.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Taking good interview

I applied via Recruitment Consulltant and was interviewed in Apr 2021. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Tell me something about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Use information interview to network

TradeIndia (Infocom Network Private Limited) Interview FAQs

How many rounds are there in TradeIndia (Infocom Network Private Limited) Executive interview?
TradeIndia (Infocom Network Private Limited) interview process usually has 2 rounds. The most common rounds in the TradeIndia (Infocom Network Private Limited) interview process are Resume Shortlist and One-on-one Round.
How to prepare for TradeIndia (Infocom Network Private Limited) Executive 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 TradeIndia (Infocom Network Private Limited). The most common topics and skills that interviewers at TradeIndia (Infocom Network Private Limited) expect are CRM, Customer Service, Online Sales, customer support and After Sales Service.

Tell us how to improve this page.

TradeIndia (Infocom Network Private Limited) Executive Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Executive Interview Questions from Similar Companies

View all
TradeIndia (Infocom Network Private Limited) Executive Salary
based on 13 salaries
₹2.3 L/yr - ₹3.2 L/yr
45% less than the average Executive Salary in India
View more details

TradeIndia (Infocom Network Private Limited) Executive Reviews and Ratings

based on 5 reviews

3.4/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

2.9

Salary

3.1

Job security

3.2

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 5 Reviews and Ratings
Relationship Manager
422 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
275 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
176 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Territory Manager
143 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

District Manager
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare TradeIndia (Infocom Network Private Limited) with

Udaan

4.0
Compare

Swiggy

3.8
Compare

BlackBuck

3.8
Compare

Blinkit

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