Upload Button Icon Add office photos

Filter interviews by

eCommera Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Resume, achievements, market dynamics
  • Q2. Case studies on Market operations , targets achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Answer politely and clearly...Dont beat on the bush

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Tell me about yourself
  • Q2. Business Process Transformation
  • Q3. Frameworks used by a Business Analyst
  • Ans. 

    Business Analysts use various frameworks to analyze and solve business problems.

    • SWOT Analysis

    • PESTLE Analysis

    • Porter's Five Forces

    • Business Model Canvas

    • Value Stream Mapping

  • Answered by AI
  • Q4. How do you handle conflicts between team members and also stakeholders?
  • Q5. Questions on SQL, Tableau and Power BI
  • Q6. Why do you think you're suitable for this role?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, confident and always keep an eye contact with the interviewers so that can see how confident you're answering the questions.

I appeared for an interview before Jun 2021.

Round 1 - Aptitude Test 

40/50marks

Round 2 - Coding Test 

They ask fibanocci series , basic c programs

Round 3 - Group Discussion 

Discuss about general topic

Round 4 - Assignment 

Write a essay on your own life

Round 5 - Technical 

(3 Questions)

  • Q1. Css HTML tags,sql,angul
  • Q2. Angular js dot net developer
  • Q3. Web configuration , CTS
Round 6 - HR 

(2 Questions)

  • Q1. Salery discussion and expecting ctc
  • Q2. Will you think are you okay

Interview Preparation Tips

Interview preparation tips for other job seekers - Relax and enjoy and don't depression attend like a boss

I applied via Naukri.com and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. They are asking technical questions what is their in the resume
Round 2 - Technical 

(1 Question)

  • Q1. They will technical questions as per your resume what you mentioned

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you say the answers in the interviewer

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What is scope of variable in perl.
  • Ans. 

    Scope of variable in Perl determines where the variable can be accessed.

    • Perl has three types of variable scope: global, local, and lexical.

    • Global variables can be accessed from anywhere in the program.

    • Local variables are declared using the 'my' keyword and can only be accessed within the block they are declared in.

    • Lexical variables are declared using the 'state' keyword and can be accessed within the block they are dec...

  • Answered by AI
  • Q2. Perl logic questions.
  • Q3. Perl regex questions
  • Q4. Perl module question
  • Q5. Grep and map function
  • Q6. What is hash and array in perl
  • Ans. 

    Hash is a data structure that stores data in key-value pairs while array is an ordered list of scalar values.

    • Hashes are denoted by % symbol and arrays by @ symbol in Perl.

    • Hashes are useful for storing and retrieving data quickly based on a unique key.

    • Arrays can be accessed using index numbers starting from 0.

    • Both hashes and arrays can store different data types such as strings, numbers, and references.

    • Example: %hash = ...

  • Answered by AI
  • Q7. What is CDATA in XML.
  • Ans. 

    CDATA is a way to include special characters in XML data without causing parsing errors.

    • CDATA stands for Character Data

    • It is used to include data that contains characters that would otherwise be interpreted as XML markup

    • CDATA is enclosed in tags

    • Example: bold text]]>

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No. Everything is good.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Pivot columns in sql
  • Ans. 

    Pivoting columns in SQL involves transforming rows into columns to display data in a different format.

    • Use the PIVOT keyword in SQL to pivot columns

    • Specify the columns to pivot on and the values to display in the new columns

    • Aggregate functions like SUM, AVG, COUNT can be used with PIVOT

    • Example: SELECT * FROM table_name PIVOT (SUM(value_column) FOR pivot_column IN ('value1', 'value2', 'value3'))

  • Answered by AI
  • Q2. Slow changing dimensions
  • Q3. Dynamic rankx top 3
  • Q4. Field parameters
  • Q5. Stored procedures

Interview Preparation Tips

Interview preparation tips for other job seekers - They don't have proper interviewer they were rude and show bad attitude to the candidates.

Better avoid this company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 4 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 

(1 Question)

  • Q1. Explain oops concepts, difference b/w abstraction and interface,MVC architecture,stored procedure,joins
  • Ans. 

    OOPs concepts, abstraction vs interface, MVC architecture, stored procedures, joins

    • OOPs concepts include inheritance, polymorphism, encapsulation, and abstraction

    • Abstraction is hiding the implementation details while interface is a contract that defines the methods that a class must implement

    • MVC architecture separates the application into Model, View, and Controller components for better organization and maintenance

    • Sto...

  • Answered by AI
Round 3 - Coding Test 

SQL queries, ddl,dml TCL commands, primary key and foreign key differences,what is composite key,hash table in c#,generics in c#.

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion,
Interview experience
5
Excellent
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 - Technical 

(2 Questions)

  • Q1. C# oops polymorphism extension methods
  • Ans. 

    Polymorphism is a key feature of OOP in C#. Extension methods allow adding new functionality to existing types.

    • Polymorphism allows objects of different classes to be treated as if they are of the same type.

    • Extension methods are static methods that can be called as if they were instance methods of the extended type.

    • Polymorphism and extension methods can be used together to add new behavior to existing types without modi

  • Answered by AI
  • Q2. Angular javascript vs typescript services components
  • Ans. 

    Angular is a framework for building web applications using TypeScript, which is a superset of JavaScript.

    • Angular provides a structure for building web applications using components, services, and modules.

    • TypeScript is a statically typed language that provides better tooling and error checking than JavaScript.

    • Services in Angular are used for sharing data and functionality across components.

    • Components in Angular are the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - practical questions. easy interview. learn c# oops, ref, out, extension methods,

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Jun 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 - Aptitude Test 

General grammar questions for checking the english proficiency of the candidates

Round 3 - One-on-one 

(3 Questions)

  • Q1. You'll have a direct one on one with the elad and they will enquire about yourself and your skills, especially they will check your communication skills
  • Q2. What is Adobe and Office 365
  • Ans. 

    Adobe and Office 365 are software suites commonly used for various business purposes.

    • Adobe is a software suite used for graphic design, video editing, and web development.

    • Office 365 is a cloud-based suite of productivity applications including Word, Excel, PowerPoint, and Outlook.

    • Both Adobe and Office 365 are widely used in businesses for creating, editing, and sharing documents and multimedia content.

  • Answered by AI
  • Q3. Communication skills test

Interview Preparation Tips

Topics to prepare for R.R. Donnelley Business Analyst interview:
  • Agile Methodology
  • Brd
  • Business Analysis
  • JIRA
  • Analytical skills

I applied via LinkedIn and was interviewed before Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is sem in digital marketing?
  • Ans. 

    SEM stands for Search Engine Marketing, which involves promoting websites by increasing their visibility in search engine results pages.

    • SEM involves paid advertising on search engines like Google and Bing

    • It includes strategies like keyword research, ad copywriting, and bid management

    • SEM can be used to drive traffic, increase brand awareness, and generate leads or sales

    • Examples of SEM platforms include Google Ads, Bing

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prep well. do well and they will go in detail for each thing on the cv

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.9
 • 101 Interviews
Publicis Interview Questions
3.6
 • 52 Interviews
Regalix Interview Questions
2.9
 • 45 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
Born Group Interview Questions
3.6
 • 19 Interviews
Cheil India Interview Questions
3.1
 • 17 Interviews
iQuanti Interview Questions
3.1
 • 14 Interviews
View all

eCommera Reviews and Ratings

based on 10 reviews

4.6/5

Rating in categories

4.6

Skill development

4.7

Work-life balance

4.7

Salary

2.9

Job security

2.9

Company culture

2.0

Promotions

4.6

Work satisfaction

Explore 10 Reviews and Ratings
Senior Software Engineer
4 salaries
unlock blur

₹6.9 L/yr - ₹12 L/yr

Senior QA Engineer
4 salaries
unlock blur

₹4.5 L/yr - ₹8.3 L/yr

Software Engineer
3 salaries
unlock blur

₹7 L/yr - ₹12.1 L/yr

Electrical Engineer
3 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

QA Lead
3 salaries
unlock blur

₹14.4 L/yr - ₹15.2 L/yr

Explore more salaries
Compare eCommera with

R.R. Donnelley

3.9
Compare

Groupm Media

3.9
Compare

Regalix

2.9
Compare

Xdbs

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