Upload Button Icon Add office photos

Filter interviews by

SELLinALL Interview Questions and Answers

Updated 30 Jul 2022

SELLinALL Interview Experiences

2 interviews found

I applied via Company Website and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Personality.honesty.Mindset up.Learning.
Aspiration.Numerical.

Round 2 - Group Discussion 

Need to discuss Mission of job and responsibilities.Aim of Achievement.

Round 3 - Technical 

(6 Questions)

  • Q1. Related Qualification and experience.aim of Life.Aspiration.How to devote himself.Ability Of learning and Training program.Earning Motive.Motivation capacity.
  • Q2. How long time joined with the said job. Specified job satisfaction.
  • Q3. Eastimatted perks.Havits.social and family background.
  • Q4. Reality.Morality.Ambition.willingnes.
  • Q5. Admior to senior management.
  • Q6. Self confidence.obidient.

Interview Preparation Tips

Interview preparation tips for other job seekers - Adeguet knowledge.Basic needs.Selfconfidence.Error and trail theory.Follow up.

Financial Advisor Interview Questions asked at other Companies

Q1. If I give you one lakh rupees, where will you invest it? And how?
View answer (1)

Associate Sales Operations and Admin Interview Questions & Answers

user image Anonymous

posted on 16 Aug 2021

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Logical and reasoning type.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident, don't try to oversmart or haughty.

Interview questions from similar companies

Member of Technical Staff -3 Interview Questions & Answers

Exotel user image Anonymous

posted on 7 Nov 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Find length of substring with longest distinct characters(non-repeating characters) eg - input "abcdab" result - "4(abcd)"
  • Q2. Interviewer was not clear on the question herself, here is what i deduced, If you want to build a scheduler service which takes in jobs to run at certain intervals and you cannot use things like cronjob, e...
  • Q3. Current project and roles and responsibilities. what is the most difficult technical problem you solved, again i think interviewer was lost on the problem i explained.
  • Ans. 

    I worked on a project involving developing a new algorithm for optimizing network traffic. My role was to design and implement the algorithm, as well as test and debug it.

    • Researched existing algorithms and identified their limitations

    • Designed a new algorithm that addressed the limitations and improved network performance

    • Implemented the algorithm in code and tested it in a simulated network environment

    • Debugged issues an...

  • Answered by AI
  • Q4. Scalability question on one of the project i was explaining

Interview Preparation Tips

Interview preparation tips for other job seekers - Ideally avoid the recruitment process if you are paired with a junior developer interviewing for very senior roles. On inquiring about the team that i would be paired with, she told me that she is part of a different team, there were no people available to take interview for the team that was actually hiring.

Skills evaluated in this interview

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

I was interviewed in Nov 2024.

Round 1 - Coding Test 

Hacker Rack Test with medium to high difficulty

Round 2 - Technical 

(2 Questions)

  • Q1. Explain your current project
  • Ans. 

    I am currently working on developing a mobile application for tracking fitness goals and progress.

    • Developing a mobile app using React Native

    • Implementing features such as goal setting, progress tracking, and workout logging

    • Integrating with wearable devices like Fitbit for data synchronization

  • Answered by AI
  • Q2. Questions about kakfa, ES and Java 8
Round 3 - Technical 

(1 Question)

  • Q1. Similar questions on your current project and questions around kafka
Round 4 - Coding Test 

Basic Coding Java and algorithm questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Behavioural round which is similar to psychometric tests
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at International Institute of Information Technology (IIIT), Bhubaneswar and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a mcq + coding round with computer fundamentals and aptitude + easy-medium level dsa questions.

Round 2 - Aptitude Test 

It was an offline aptitute test with 30 questions for 30 minutes.

Round 3 - Technical 

(4 Questions)

  • Q1. Detect a loop in the linked list
  • Ans. 

    Detect a loop in a linked list by using Floyd's Cycle Detection Algorithm

    • Use two pointers, slow and fast, to traverse the linked list

    • If there is a loop, the fast pointer will eventually meet the slow pointer

    • Initialize slow and fast pointers at the head of the linked list

    • Move slow pointer by one step and fast pointer by two steps in each iteration

    • If the fast pointer reaches the end of the list or meets the slow pointer,

  • Answered by AI
  • Q2. Find the unique element in an array
  • Ans. 

    Find the unique element in an array of strings

    • Iterate through the array and use a hashmap to store the frequency of each element

    • After iterating, check the hashmap for elements with frequency 1 to find the unique element

  • Answered by AI
  • Q3. Tell about your projects
  • Ans. 

    I have worked on various projects including a web application for a local business and a mobile app for tracking daily habits.

    • Developed a web application using HTML, CSS, and JavaScript for a local business to manage their inventory and sales.

    • Created a mobile app using React Native to track daily habits and provide reminders for healthy routines.

    • Collaborated with a team to implement new features and fix bugs in existin...

  • Answered by AI
  • Q4. Write a MySQL query for selecting the id of second highest salary from employee table
  • Ans. 

    MySQL query to select the id of second highest salary from employee table

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT to select the second row

    • Use a subquery to avoid duplicates if multiple employees have the same salary

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Energy Exemplar Associate Software Engineer interview:
  • RDBMS
  • Frontend
  • DSA
  • System Design

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Concept of Hoisting in Javascript
  • Ans. 

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

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI
  • Q2. What is arrow function
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions are anonymous functions defined using the '=>' syntax.

    • They have a shorter syntax compared to traditional function expressions.

    • Arrow functions do not have their own 'this' keyword, instead they inherit it from the parent scope.

  • Answered by AI
  • Q3. Polyfill of Promise
  • Ans. 

    Polyfill of Promise is a code that adds Promise functionality to browsers that do not support it natively.

    • Polyfill is a piece of code that provides the technology that you expect the browser to provide natively.

    • Polyfill for Promise adds Promise functionality to browsers that do not support it, allowing developers to use Promises in their code.

    • Examples of Promise polyfills include 'es6-promise' and 'promise-polyfill'.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Implementation of carousel
  • Ans. 

    Implementing a carousel for displaying multiple images or content in a rotating manner.

    • Use a library like Slick or Owl Carousel for easy implementation

    • Ensure images/content are responsive for different screen sizes

    • Add navigation arrows or dots for user interaction

    • Consider adding autoplay feature with customizable speed

    • Optimize performance by lazy loading images

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Knowledge about API, ERP, SAP, DBMS, RDBMS, Joins, Normalisation, Codd Rules, Relational Algebra. May ask based on two given tables.
  • Q2. JSON, XML, OAuth, REST API, SOAP, GraphQL, HTTP Methods
  • Q3. HR questions, basic background, knowledge about B2B, B2C, e-commerce,
Round 2 - Technical 

(4 Questions)

  • Q1. Details on project, API, procedures of API, knowledge on e-commerce, business aspects of your own projects, Core DBMS, RDBMS, Difference between SQL and NoSQL
  • Q2. May give 2 tables and check whether they are normalised or not. If not what should be done. Join them using left join or right join.
  • Q3. API, Types of Auth tokens (OAuth, Google Auth, JWT)
  • Q4. Procedures of ERP
  • Ans. 

    Procedures of ERP involve defining business processes, configuring the system, testing, training, and ongoing support.

    • Define business processes to align with ERP system capabilities

    • Configure the ERP system based on defined processes

    • Test the system to ensure functionality and data accuracy

    • Provide training to users on how to use the ERP system effectively

    • Offer ongoing support for system maintenance and troubleshooting

  • Answered by AI

Interview Preparation Tips

Topics to prepare for APPSeCONNECT ERP Functional Consultant interview:
  • DBMS
  • RDBMS
  • ERP
  • API
  • REST API
Interview preparation tips for other job seekers - Very Good knowledge on DBMS needed. And clear idea about your job role. Read the JD thoroughly.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Intro Round - CV Based 

(1 Question)

  • Q1. Question based on CV
Round 2 - Coding Test 

1 hour - NodeJS Based

Round 3 - Technical 

(1 Question)

  • Q1. High Level System Design
  • Ans. 

    High level system design involves creating an overall architecture for a software system.

    • Identify the main components of the system

    • Define the interactions between the components

    • Consider scalability, reliability, and performance

    • Use diagrams to visualize the design

    • Example: Designing a social media platform with user profiles, posts, and messaging functionality

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Low Level System Design
  • Ans. 

    Low level system design involves designing the internal components of a software system.

    • Focus on the architecture of the system at a detailed level

    • Consider how different components interact with each other

    • Optimize for performance and efficiency

    • Think about scalability and maintainability

    • Examples: designing a database schema, creating algorithms for data processing

  • Answered by AI
Round 5 - Behavioral 

(1 Question)

  • Q1. Culture Fit Round - Strength, Challenges etc

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude questions and technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Array data structure based programming question
  • Q2. Object Oriented Programming concepts

SELLinALL Interview FAQs

How many rounds are there in SELLinALL interview?
SELLinALL interview process usually has 3 rounds. The most common rounds in the SELLinALL interview process are Aptitude Test, Group Discussion and Technical.
How to prepare for SELLinALL 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 SELLinALL. The most common topics and skills that interviewers at SELLinALL expect are Java, Core Java, Web Services, Software Development and Web Technologies.
What are the top questions asked in SELLinALL interview?

Some of the top questions asked at the SELLinALL interview -

  1. Eastimatted perks.Havits.social and family backgrou...read more
  2. Reality.Morality.Ambition.willingn...read more
  3. Logical and reasoning ty...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 SELLinALL interviews
Company Website
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Myntra Interview Questions
4.0
 • 209 Interviews
Snapdeal Interview Questions
3.8
 • 74 Interviews
eBay Interview Questions
3.8
 • 20 Interviews
ResMed Interview Questions
3.8
 • 16 Interviews
Alibaba Group Interview Questions
4.1
 • 7 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Shopify Interview Questions
4.0
 • 3 Interviews
Etsy Interview Questions
4.2
 • 3 Interviews
View all

SELLinALL Reviews and Ratings

based on 35 reviews

4.2/5

Rating in categories

4.1

Skill development

4.1

Work-Life balance

4.1

Salary & Benefits

3.7

Job Security

4.4

Company culture

3.9

Promotions/Appraisal

4.2

Work Satisfaction

Explore 35 Reviews and Ratings
Accounts Manager
10 salaries
unlock blur

₹3.5 L/yr - ₹4.8 L/yr

E Commerce Specialist
7 salaries
unlock blur

₹3.3 L/yr - ₹5 L/yr

Associate
7 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

E-Commerce Executive
6 salaries
unlock blur

₹2.6 L/yr - ₹4.5 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹5 L/yr - ₹15.2 L/yr

Explore more salaries
Compare SELLinALL with

Shopify

4.0
Compare

Amazon

4.1
Compare

Flipkart

4.0
Compare

eBay

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview