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)

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

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms. For any software company in general, do mention all software projects you have done and languages/software packages you know.

Round: Test
Experience: The first round of the selection process was a written test which comprised of two sections. The first section had aptitude based/puzzle based problems. Questions were tricky and didn’t require any calculation. Some of the questions were
1) Form all numbers from 1 to 10 using four 4’s and the basic arithmetic operations +,–  ,* and /. 2) Pick the odd one out from a given series. 3) Complete the series (a series with the starting alphabet of days in a week was given). 4) How many knights can you place on a standard chess board so that no piece can attack any other piece? Subjective answers had to be given with proper explanation for the same.
 The second section was based on C/C++ programming. There were three questions. The first one required the candidate to write the output of a given program. The next question was based on simple if-else statements while the last question was based on circular queues. All questions in this section were easy if the candidate has decent enough programming skills.
Total time for both the sections was 1 hour. There was no marking scheme and short listing was done based on the overall response of the candidate. Some particular questions or parts of questions, however, were considered more important by the company, and candidates answering those questions and a few others correctly, were shortlisted for the next round.

Round: HR Interview
Experience: The first round was a 1 to 1 interview wherein the interviewer tried to put me under pressure by pointing out mistakes in my answers to written test and making me solve the questions which I had not attempted in the written test. He also asked me about my family background, why I think I should be shortlisted for the next round etc.

Round: Technical Interview
Experience: The interviewer asked me about the programming languages I had worked on. No question was asked from languages other than those I mentioned. There were some standard questions about data structures and their implementation using C++. As I had worked on a couple of websites, the interviewer asked me questions related to HTML/CSS/PHP/MySQL/JavaScript. I was also asked to show one of the websites I had designed on the internet and the interviewer asked me a few questions about it. Except for a few, questions were very basic and easy for someone with good programming skills.

Round: HR Interview
Experience: The final interview mostly had HR questions. The interviewer talked at length about my interest in sports, my favourite sportsman and why. He also questioned me regarding the websites I had worked on, other extracurricular activities and what did I learn from them, what do I know about eBay and how would I be able to contribute to it if I am selected.
Tips: Revise programming concepts. Do not panic even if the interviewer tries to put you under pressure.

College Name: IIT ROORKEE
Motivation: EBay is a renowned company. I didn’t have much idea about the job profile on offer. However I did know that it was in the field of website and software development. I also found a lot of information about the company through the company’s Wikipedia page.

Interview Questionnaire 

16 Questions

  • Q1. Let us assume there are 3 baskets with different number of balls say p,q and r. Every ball has a number written on it. Now, you have to take all those balls and put them back in baskets in sorted way.?(Mer...
  • Ans. 

    Merge sort algorithm can be used to sort the balls in each basket and then merge the sorted baskets.

    • Apply merge sort algorithm to sort the balls in each basket

    • Merge the sorted baskets to get the final sorted order

    • Use recursion to implement merge sort

    • Time complexity of merge sort is O(nlogn)

  • Answered by AI
  • Q2. What is Mutual Exclusion?
  • Ans. 

    Mutual Exclusion is a technique to ensure that only one process at a time can access a shared resource.

    • It prevents race conditions and ensures data consistency.

    • It can be implemented using locks, semaphores, or monitors.

    • Examples include critical sections in multi-threaded programs and database transactions.

    • It can lead to performance issues if not implemented efficiently.

  • Answered by AI
  • Q3. What is multithreading and Difference between process and thread?
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently. A process is an instance of a program in execution.

    • Multithreading allows multiple threads to run concurrently within a single process.

    • Threads share the same memory space and resources of the process they belong to.

    • Processes are independent of each other and have their own memory space and resources.

    • Threads are lightweight compared to proce...

  • Answered by AI
  • Q4. What is Semaphore?
  • Ans. 

    Semaphore is a synchronization object used to control access to a shared resource.

    • Semaphore is used to limit the number of threads accessing a shared resource.

    • It can be used to implement critical sections and avoid race conditions.

    • Semaphore can be binary or counting, depending on the number of resources available.

    • Examples of semaphore in programming languages include Java's Semaphore class and Python's threading.Semaph

  • Answered by AI
  • Q5. There are three threads have been assigned different work. Say, T1 takes 10 sec T2 takes 20sec t3 takes 15sec Now you have to make sure that all threads merge into one and continue as a single thread. How ...
  • Ans. 

    Wait for completion of all threads and join them into a single thread.

    • Use join() method to wait for completion of each thread.

    • Create a new thread and call start() method to start the execution of all threads.

    • Use sleep() method to pause the execution of the current thread until all threads complete their execution.

  • Answered by AI
  • Q6. Let’s say you have 100,000 records and you want to delete 95,000 at a time and keep only 5 thousand. But in local memory you don’t have enough space for 95,000 records. What do you do in this case? How do ...
  • Ans. 

    To delete 95,000 records with limited local memory, use batch processing and delete in chunks.

    • Use batch processing to delete records in chunks

    • Delete records in descending order of their IDs to avoid index fragmentation

    • Commit the transaction after deleting each batch to avoid long-running transactions

    • Consider archiving the deleted records instead of permanently deleting them

  • Answered by AI
  • Q7. Function ‘sum’ which takes arguments, such that if both args are: int : does integer addition float : does float addition string : concatenates them Write a program in ‘C’ that does the same?
  • Ans. 

    Program in C to implement a function 'sum' that performs integer addition, float addition, and string concatenation based on the input arguments.

    • Define the function 'sum' with two arguments of type 'void *'.

    • Use 'if-else' statements to check the data type of the arguments.

    • Perform integer addition if both arguments are of type 'int'.

    • Perform float addition if both arguments are of type 'float'.

    • Concatenate the strings if b...

  • Answered by AI
  • Q8. Write SQL Query for creating tables?
  • Ans. 

    SQL query for creating tables

    • Use CREATE TABLE statement

    • Specify table name and column names with data types

    • Add constraints like primary key, foreign key, etc.

    • Example: CREATE TABLE customers (id INT PRIMARY KEY, name VARCHAR(50), email VARCHAR(50))

  • Answered by AI
  • Q9. What about NESTED TABLES?
  • Ans. 

    Nested tables are tables within tables, used to organize and store complex data structures.

    • Nested tables are commonly used in databases to store arrays of data within a single row of a table.

    • They can also be used in programming languages to create multidimensional arrays.

    • Accessing data within a nested table requires using multiple levels of indexing.

    • Nested tables can improve data organization and simplify complex data

  • Answered by AI
  • Q10. What are views?
  • Ans. 

    Views are virtual tables that display data from one or more tables in a database.

    • Views are created using SELECT statements.

    • They can be used to simplify complex queries.

    • They can also be used to restrict access to sensitive data.

    • Views do not store data themselves, but rather display data from underlying tables.

    • Changes made to the underlying tables are reflected in the view.

  • Answered by AI
  • Q11. About my projects?
  • Q12. Tell me about yourself
  • Ans. 

    I am a software developer with experience in multiple programming languages and a passion for problem-solving.

    • Proficient in Java, Python, and C++

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with Agile development methodologies

    • Strong problem-solving and analytical skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q13. You have an embedded system device. Okay? So you are given some numbers from 1-100 and unique. Now, sort these numbers?
  • Q14. Evaluate Postfix expression?
  • Ans. 

    Postfix expression can be evaluated using a stack data structure.

    • Create an empty stack

    • Scan the expression from left to right

    • If the scanned character is an operand, push it onto the stack

    • If the scanned character is an operator, pop two operands from the stack, perform the operation and push the result back

    • Repeat until the end of the expression

    • The final result is the top of the stack

  • Answered by AI
  • Q15. Where do you see yoyurself in 5 years? et
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team of developers to create innovative solutions.

    • Leading a team of developers to create innovative solutions

    • Continuing to learn and stay up-to-date with new technologies

    • Contributing to the growth and success of the company

    • Mentoring and coaching junior developers

    • Taking on more responsibilities and challenges

  • Answered by AI
  • Q16. Why Ebay?
  • Ans. 

    Ebay is a leading e-commerce platform with a global reach and a diverse range of products.

    • Ebay has a large and diverse customer base, providing opportunities to work on a variety of projects.

    • The company has a strong focus on innovation and technology, which aligns with my interests and skills.

    • Ebay offers a dynamic and fast-paced work environment, which I find exciting and challenging.

    • The company has a strong reputation...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 30 questions out of which 50% was based on java and c++, the rest from verbal and quantitative stuff.The key areas to focus on are:
· OOPS-all concepts, contructors etc
· Database-sql queries and normal basics stuff about schemas etc
· Networks- subnetting, various routing protocols, about mac address
· Probability ans Statistics
Duration: 30 minutes

Skills: Algorithm, OS, Data structure
College Name: Na

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: There were around 10 MCQ questions and 3 coding questions. Quantitative ability was tested in MCQs and programming and algorithmic skills were tested in coding questions.
Tips: Don’t try to over-optimize your algorithms if time doesn’t permit. First write a pretty decent algorithm. You will get through the written test. After that, try to optimize your algorithm only if time permits.
Total Questions: 13

Round: Technical Interview
Experience: Questions on basic data structures of Computer Science. Basic tree algorithms with coding. Some analytical questions.
Tips: In all the interviews, try to be as confident as possible. Sometimes they will just see your confidence and they will take you through that round. So be confident and be happy.

Skill Tips: CGPA > 7.5, decent algorithmic skills and coding skills, good analytical skills. No computer science in-depth knowledge is required. They didn’t consider any extra-academic involvement. Maths ability such as probability was required. Quantitative ability was required in Written Test. Proficiency with any programming language was enough. You should be able to explain your BTP project in full details. For internship, apart from project related technical knowledge, you should have an idea of the business relevance of the project. Try to prepare with people giving CAT. This will help enormously.
Skills: Coding
College Name: IIT KHARAGPUR

Interview Questionnaire 

1 Question

  • Q1. General coding-related questions

Interview Preparation Tips

Round: Technical Interview
Experience: The interview mainly focused on coding of which I had very less preparation and was out of my curriculum. I also interviewed with Samsung and got selected there.

College Name: IIT KANPUR

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms.For any software company in general, do mention all software projects you have done and languages/software packages you know.

Round: Test
Experience: The first round of the selection process was a written test which comprised of two sections. The first section had aptitude based/puzzle based problems. Questions were tricky and didn’t require any calculation. Some of the questions were
(1) Form all numbers from 1 to 10 using four 4’s and the basic arithmetic operations +,–  ,* and /(2) Pick the odd one out from a given series.(3) Complete the series (a series with the starting alphabet of days in a week was given).(4) How many knights can you place on a standard chess board so that no piece can attack any other piece?Subjective answers had to be given with proper explanation for the same.The second section was based on C/C++ programming. There were three questions. The first one required the candidate to write the output of a given program. The next question was based on simple if-else statements while the last question was based on circular queues. All questions in this section were easy if the candidate has decent enough programming skills.

Total time for both the sections was 1 hour. There was no marking scheme and short listing was done based on the overall response of the candidate. Some particular questions or parts of questions, however, were considered more important by the company, and candidates answering those questions and a few others correctly, were shortlisted for the next round.

Round: HR Interview
Experience: The first round was a 1 to 1 interview wherein the interviewer tried to put me under pressure by pointing out mistakes in my answers to written test and making me solve the questions which I had not attempted in the written test. He also asked me about my family background, why I think I should be shortlisted for the next round etc.

Round: Technical Interview
Experience: The next interview was a purely technical interview. The interviewer asked me about the programming languages I had worked on. No question was asked from languages other than those I mentioned. There were some standard questions about data structures and their implementation using C++. As I had worked on a couple of websites, the interviewer asked me questions related to HTML/CSS/PHP/MySQL/JavaScript. I was also asked to show one of the websites I had designed on the internet and the interviewer asked me a few questions about it. Except for a few, questions were very basic and easy for someone with good programming skills.

Round: HR Interview
Experience: The final interview mostly had HR questions. The interviewer talked at length about my interest in sports, my favourite sportsman and why. He also questioned me regarding the websites I had worked on, other extracurricular activities and what did I learn from them, what do I know about eBay and how would I be able to contribute to it if I am selected.
Tips: Revise programming concepts. Do not panic even if the interviewer tries to put you under pressure.

College Name: IIT ROORKEE
Motivation: eBay is a renowned company. I didn't have much idea about the job profile on offer. However I did know that it was in the field of website and software development. I also found a lot of information about the company through the company’s Wikipedia page.

Interview Preparation Tips

College Name: IIT ROORKEE

Interview Questionnaire 

1 Question

  • Q1. Why do you want to join eBay?
  • Ans. 

    I want to join eBay because of its global reach, innovative technology, and strong company culture.

    • Global reach: eBay operates in multiple countries, allowing me to work on projects with a global impact.

    • Innovative technology: eBay is known for its cutting-edge technology and continuous innovation, which excites me as a software engineer.

    • Strong company culture: eBay values diversity, collaboration, and personal growth, ...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms. eBay interviewers were not much concerned about the resume but they would surely browse through it and ask you questions from it. So it’s better to write genuine stuff rather than bluffing about things you have not actually done.

Round: Test
Experience: The first round was the written test. The test consisted of two sections one dedicated to the programming questions and the other to the logical reasoning questions. The paper was tough or so to say very unique. The programming questions were based on stacks and queues. One question was asked on circular queue. In logical section one of the questions that I remember was to derive numbers from 1 to 10 using only 4 four’s with the help of any of the mathematical operations. Other logical questions were more or less similar to this. There was also a general aptitude section which was comparatively simpler.

Round: HR Interview
Experience: This round was an H.R. interview round.He reviewed my resume and asked me some questions based on that. It was sort of a stress round as the interviewer was pushing me for answers.

Round: Technical Interview
Experience: In this they tested my programming and data structure knowledge. In data structure I was asked that, if there was a duplicate entry in a given link list then how would I find it. He also asked about the virtual functions and exception handling. He also inquired about the project that I had worked upon – I walked of a coding project in which I had used some unconventional algorithms.
Tips: Good knowledge of data structure and database management may prove helpful. They are more concerned about your knowledge. If you are good at web coding then it is always an added advantage.

College Name: IIT ROORKEE

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

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.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
eBay Interview Questions
3.8
 • 20 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

3.7

Job security

4.4

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 35 Reviews and Ratings
Accounts Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

E Commerce Specialist
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

E-Commerce Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare SELLinALL with

Shopify

4.0
Compare

Amazon

4.1
Compare

Flipkart

4.0
Compare

eBay

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