Upload Button Icon Add office photos

Filter interviews by

Editorialist YX Interview Questions, Process, and Tips

Updated 6 Jun 2024

Top Editorialist YX Interview Questions and Answers

View all 6 questions

Editorialist YX Interview Experiences

Popular Designations

4 interviews found

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Linux commands
print all substrings and frequency of each substring
merged two sorted arrays

Round 2 - Technical 

(2 Questions)

  • Q1. Explain your automation frameowrk
  • Ans. 

    My automation framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Uses Selenium WebDriver for interacting with web elements

    • Utilizes TestNG for test case management and reporting

    • Employs data-driven approach for test data separation

    • Includes logging and reporting mechanisms for test execution

    • Supports parallel execution for faster test runs

  • Answered by AI
  • Q2. How will you automate data in files
  • Ans. 

    Automating data in files involves using tools like Selenium WebDriver or Apache POI to read/write data from/to files.

    • Use Selenium WebDriver to interact with web elements and extract data to be written to files

    • Use Apache POI library to read/write data from/to Excel files

    • Utilize scripting languages like Python or Java to automate data manipulation in files

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong coding required

Skills evaluated in this interview

Sdet Automation Test Engineer Interview Questions asked at other Companies

Q1. Wait in selenium and how to find all links present in a page xpath
View answer (2)

I applied via Recruitment Consulltant and was interviewed in Apr 2022. 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. Profiles you have worked so far
  • Ans. 

    I have worked with a diverse range of profiles in my career as a Senior Lead Recruiter.

    • IT professionals with expertise in software development, data analysis, and cybersecurity.

    • Sales and marketing professionals with experience in B2B and B2C industries.

    • Finance and accounting professionals with knowledge of financial planning and analysis, auditing, and taxation.

    • Human resources professionals with expertise in talent acq...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Do you have any experience in Report making
  • Ans. 

    Yes, I have experience in report making.

    • I have created various reports during my previous roles as a recruiter.

    • I am proficient in using tools like Microsoft Excel and Google Sheets to create reports.

    • I have experience in analyzing recruitment data and presenting it in a clear and concise manner.

    • I have created reports on metrics such as time-to-fill, source effectiveness, and candidate quality.

    • I am familiar with creating...

  • Answered by AI
  • Q2. What is the motivation of your change Reason for change
  • Ans. 

    My motivation for change is to take on new challenges and continue growing professionally.

    • Seeking opportunities for career advancement

    • Desire to work in a different industry or company

    • Willingness to learn new skills and expand knowledge

    • Need for a change in work environment or culture

    • Interest in taking on more responsibility and leadership roles

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. What you want to achieve after 5 yrs
  • Ans. 

    In 5 years, I want to have advanced to a leadership role within the company and have successfully implemented innovative recruitment strategies.

    • Advance to a leadership role within the company

    • Successfully implement innovative recruitment strategies

    • Build a high-performing recruitment team

    • Establish strong relationships with hiring managers and stakeholders

    • Contribute to the company's growth and success through effective ta

  • Answered by AI
  • Q2. You are most inclined with hiring's or Generalist
  • Ans. 

    I am most inclined with hiring's.

    • I have extensive experience in recruiting and hiring candidates.

    • I am skilled in sourcing, screening, and interviewing candidates.

    • I have a strong understanding of the hiring process and best practices.

    • I have successfully filled numerous positions in various industries.

    • I am knowledgeable about applicant tracking systems and recruitment tools.

  • Answered by AI
  • Q3. How you will make someone join our company
  • Ans. 

    I will make someone join our company by showcasing our company culture, growth opportunities, and benefits.

    • Highlight the positive aspects of our company culture, such as a supportive and collaborative work environment.

    • Emphasize the growth opportunities available within our company, such as career development programs and promotions based on performance.

    • Discuss the attractive benefits package we offer, including competi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and revised your projects you done so far

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Java program coding
Aptitude questions
Linux
Automation
MySQL queries
Elastic queries
AWS
Programming
Java

Round 3 - HR 

(2 Questions)

  • Q1. Normal questions of HR round
  • Q2. Salary discussion. Negotiate well

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Practice programs
Get on hand experience as much as u can

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Proctored Online Test On Mettl.

  • Q1. Chocolate Problem

    Given an array/list of integer numbers 'CHOCOLATES' of size 'N', where each value of the array/list represents the number of chocolates in the packet. There are ‘M’ number...

  • Ans. Recursion

    The idea is that generate all the possible subsets of size ‘M’ and checks the minimum difference that can be possible from all subsets. 

     

    1. This problem can be solved using recursion and the idea behind this is to generate all the possible minimum differences from the given array.
    2. To store minimum difference we use a variable (say, ‘minVal’) and the initial value is ‘INFINITE’
    3. For each element we will hav...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

There were two Interviewers.
Interview started with an introduction.
Questions were asked from my projects.
Questions from Linked Lists, Trees, Graphs were asked.

  • Q1. Palindrome Linked List

    You are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false.

    For example:
    The given linked l...
  • Ans. Using Stack
    1. The idea is to traverse the Linked List from head to tail and push every encountered node data into the stack.
    2. Then we traverse the Linked List and for each node, we pop the top element from the stack and compare it with current node data of the Linked List. If they mismatch then the current linked list is not palindrome else if all elements match then the linked list is a palindrome.
    Space Complexity: O(n)Exp...
  • Answered Anonymously
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

More questions from DSA were asked.
Questions from DBMS, SQL, OS were asked in the end.

  • Q1. LRU Cache Implementation

    Design and implement a data structure for Least Recently Used (LRU) cache to support the foll...

  • Ans. Array Approach

    We will use an array of type Pair<key, value> to implement our LRU Cache where the larger the index is, the more recently the key is used. Means, the 0th index denotes the least recently used pair, and the last index denotes the most recently used pair.

     

    The key will be considered as accessed if we try to perform any operation on it. So while performing the get operation on a key, we will do a ...

  • Answered Anonymously
  • Q2. M-Coloring Problem

    You are given an undirected graph in the form of an adjacency matrix along with an integer M. You need to tell if you can color the vertices of the graph using at most M colors such that...

  • Ans. Brute Force
    • We generate all possible combinations of colors possible for coloring the given graph.
    • This can be done recursively by assigning a node each color from 1 to M and doing the same for all nodes.
    • We further check if the adjacent vertices don’t have the same color.
    • If we find such a combination of vertices, we return “YES”. Otherwise, we return “NO”.
    Space Complexity: OtherExplanation:

    O(V) where V is the number of ...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 8.5 CGPAEditorialist YX interview preparation:Topics to prepare for the interview - C++, OOPS, Data Structures, Algorithms,OS, DBMS Quantitative AptitudeTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Learn Data Structures and Algorithms. Practice atleast 300 (150 Medium + 100 Easy + 50 Hard) coding questions from Geeksforgeeks or Leetcode.
Tip 2 : Learn OOPS, OS, DBMS.
Tip 3 : Do atleast 2 projects.

Application resume tips for other job seekers

Tip 1 : Don't mention unnecessary things on resume.
Tip 2 : Be precise and use good template.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)

Editorialist YX interview questions for popular designations

 QA Engineer

 (1)

 Sdet Automation Test Engineer

 (1)

 Senior Lead Recruiter

 (1)

 Software Developer Intern

 (1)

Jobs at Editorialist YX

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me something about yourself
  • Ans. 

    I am a motivated and results-driven individual with a background in sales and business development.

    • I have a Bachelor's degree in Business Administration.

    • I have experience working in sales for 3 years.

    • I have successfully developed new business opportunities for my previous company.

    • I am proficient in market research and analysis.

    • I am a strong communicator and negotiator.

  • Answered by AI
  • Q2. What are your short-term and long-term goals?
  • Ans. 

    Short-term goal is to gain experience in business development and contribute to company growth. Long-term goal is to advance to a leadership role and drive strategic initiatives.

    • Short-term goal: Gain experience in business development through hands-on projects and client interactions.

    • Short-term goal: Contribute to company growth by identifying new business opportunities and developing relationships with potential clien...

  • Answered by AI
  • Q3. What's ur expectations
  • Ans. 

    I expect a challenging role with opportunities for growth and learning.

    • Opportunities for career advancement

    • Challenging projects to work on

    • Supportive team environment

    • Training and development programs

    • Competitive salary and benefits

  • Answered by AI
  • Q4. Tell something about your family
  • Ans. 

    I come from a close-knit family of five, with supportive parents and two siblings.

    • My parents have always encouraged me to pursue my goals and dreams.

    • I have two siblings, an older brother who works in finance and a younger sister who is studying to become a doctor.

    • We often spend weekends together, going on hikes or having family dinners.

  • Answered by AI
  • Q5. If you have any doubt ask him /her

Interview Preparation Tips

Interview preparation tips for other job seekers - An internship can be beneficial.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - No such interview was Taken 

(2 Questions)

  • Q1. No question was asked
  • Q2. No. Question was asked in the interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Tips for Working at Marpu Foundation
Understanding Marpu's Mission:

Align Your Values: Ensure your personal values align with Marpu's mission of social impact and sustainability.
Embrace the Culture: Be prepared for a fast-paced, dynamic work environment with a strong emphasis on teamwork and collaboration.
Skillset and Qualities:

Passion for Social Good: A genuine passion for making a positive difference is essential.
Strong Interpersonal Skills: Effective communication and the ability to build relationships with diverse individuals are crucial.
Adaptability: The ability to adapt to changing circumstances and embrace new challenges is key.
Problem-Solving Skills: Creative problem-solving abilities are necessary to address complex social issues.
Cross-Cultural Competence: Understanding and respecting different cultures is important, especially when working with diverse communities.
How to Get Involved:

Check the Official Website: Regularly visit Marpu's website for job openings and volunteer opportunities.
Network: Connect with Marpu's staff, volunteers, and alumni on platforms like LinkedIn.
Volunteer: Volunteering can be a great way to gain experience and build relationships within the organization.
Internships: Explore internship opportunities to gain hands-on experience and learn from experienced professionals.
Direct Applications: Send a well-crafted cover letter and resume to the relevant department, highlighting your skills and passion for their work.
Remember:

Be Patient: The hiring process for NGOs can be competitive, so be patient and persistent.
Stay Informed: Keep up-to-date with Marpu's latest initiatives and projects.
Show Initiative: Proactively seek out opportunities to contribute and demonstrate your commitment.
By following these tips and aligning your skills and passion with Marpu's mission, you can increase your chances of securing a fulfilling role at this impactful organization.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is data entry?
  • Ans. 

    Data entry is the process of entering, updating, or verifying data in a computer system.

    • Entering data accurately and efficiently

    • Updating existing data with new information

    • Verifying data for accuracy and completeness

  • Answered by AI
  • Q2. What is your experience with data entry?
  • Ans. 

    I have over 3 years of experience in data entry, including entering, verifying, and updating data in various databases.

    • Proficient in using Microsoft Excel and other data entry software

    • Accurate and efficient in typing and data entry tasks

    • Experience in maintaining confidentiality and data integrity

    • Handled large volumes of data entry tasks with tight deadlines

  • Answered by AI
  • Q3. What is difference between c and c++ ?
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a procedural programming language, focusing on functions and procedures.

    • C++ is an object-oriented programming language, allowing for classes, objects, and inheritance.

    • C does not support classes and objects, while C++ does.

    • C++ has features like polymorphism, encapsulation, and inheritance which are not present in C.

    • C++ is an...

  • Answered by AI
  • Q4. How you work msword
  • Ans. 

    I am proficient in using MS Word for data entry tasks.

    • I am skilled in formatting text, tables, and images in MS Word.

    • I can create and edit documents, including reports, letters, and spreadsheets.

    • I am familiar with using templates and styles to maintain consistency in documents.

    • I am experienced in using features like spell check, track changes, and mail merge.

    • I am efficient in using keyboard shortcuts to speed up data e

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Data Entry Data Entry Operator interview:
  • Data Entry
  • C
  • HTML

Apprentice Interview Questions & Answers

HyScaler user image Radharani Rath

posted on 25 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

4 easy level questions will be asked basically from arrays and strings.

Round 2 - Assignment 

Assignment will be given after clearing coding round. In my case ELearning Platform project was given and 7 days time was given to complete.

Round 3 - One-on-one 

(4 Questions)

  • Q1. DBMS questions like ACID properties, database transaction. Etc
  • Q2. Project related questions
  • Q3. Basic and conceptual questions of frameworks you know
  • Q4. Basic coding questions like armstrong number, palendromic sequence, recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give focus on conceptual and theory questions of your known framework
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Quantitative reasoning

Round 2 - One-on-one 

(5 Questions)

  • Q1. About yourself and past experiences.
  • Q2. Managerial round
  • Q3. About company information
  • Q4. About yourself and extracurricular activities
  • Q5. See yourself in the next 5 yrs

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell us about yourself
  • Q2. Showcase some of you projects
  • Ans. 

    I have worked on projects involving website redesign, mobile app design, and user research.

    • Redesigned company website to improve user experience and increase conversion rates

    • Designed mobile app interface for seamless navigation and intuitive user interactions

    • Conducted user research to gather feedback and make data-driven design decisions

  • Answered by AI
  • Q3. What are your favourite apps and why do you like them
  • Ans. 

    My favorite apps are Instagram for its user-friendly interface and engaging content, Spotify for its personalized music recommendations, and Google Maps for its accurate navigation features.

    • Instagram - user-friendly interface, engaging content

    • Spotify - personalized music recommendations

    • Google Maps - accurate navigation features

  • Answered by AI
  • Q4. What roles are you interested in?
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a seasoned UI/UX designer leading a team of designers, working on innovative projects, and continuously learning and growing in the field.

    • Leading a team of designers

    • Working on innovative projects

    • Continuously learning and growing in the field

  • Answered by AI

Editorialist YX Interview FAQs

How many rounds are there in Editorialist YX interview?
Editorialist YX interview process usually has 3 rounds. The most common rounds in the Editorialist YX interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Editorialist YX 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 Editorialist YX. The most common topics and skills that interviewers at Editorialist YX expect are E-commerce, Java, Accessories, Medical Insurance and MySQL.
What are the top questions asked in Editorialist YX interview?

Some of the top questions asked at the Editorialist YX interview -

  1. How will you automate data in fi...read more
  2. explain your automation frameo...read more
  3. Normal questions of HR ro...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Myntra Interview Questions
4.0
 • 210 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Shoppers Stop Interview Questions
4.1
 • 107 Interviews
JioMart Interview Questions
3.9
 • 92 Interviews
Lifestyle Interview Questions
4.3
 • 62 Interviews
Cogoport Interview Questions
2.8
 • 52 Interviews
Exotic Learning Interview Questions
4.5
 • 43 Interviews
View all

Editorialist YX Reviews and Ratings

based on 16 reviews

2.6/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

3.0

Salary

3.0

Job security

2.6

Company culture

2.5

Promotions

2.6

Work satisfaction

Explore 16 Reviews and Ratings
Catalog Analyst-Intern ( remote)

Kolkata,

Mumbai

+5

0-2 Yrs

Not Disclosed

Senior Campaign Manager

New Delhi

5-8 Yrs

Not Disclosed

Senior Automation Engineer (SDET)

Kolkata,

Mumbai

+5

4-5 Yrs

Not Disclosed

Explore more jobs
QA Lead
8 salaries
unlock blur

₹19 L/yr - ₹25 L/yr

Operations Associate
7 salaries
unlock blur

₹5 L/yr - ₹7.2 L/yr

Senior Software Developer
4 salaries
unlock blur

₹22 L/yr - ₹53 L/yr

Senior Associate Operations
4 salaries
unlock blur

₹6.8 L/yr - ₹7.7 L/yr

Software Engineer
3 salaries
unlock blur

₹15 L/yr - ₹20 L/yr

Explore more salaries
Compare Editorialist YX with

Myntra

4.0
Compare

Koovs

4.2
Compare

Vogue

4.3
Compare

Elle India

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