Upload Button Icon Add office photos

Filter interviews by

ScreenRoot Interview Questions and Answers

Updated 22 Jun 2021

ScreenRoot Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. What are the failures/ difficulties you faced and how were you able to cope up with them?
  • Q2. How did you become more than just a JD at your current organisation?
  • Q3. How will you validate the ideas/ suggestions of the client vs what the users want?
  • Ans. 

    I will conduct user research to understand their needs and preferences, and compare them with the client's ideas.

    • Conduct user research through surveys, interviews, and usability testing

    • Analyze data to identify patterns and trends

    • Compare user feedback with the client's ideas

    • Prioritize features based on user needs and business goals

    • Communicate findings and recommendations to the client

  • Answered by AI

Lead Program Manager Interview Questions asked at other Companies

Q1. How will you validate the ideas/ suggestions of the client vs what the users want?
View answer (1)

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Array and Java related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was rude and the Interviewer was fixated on one topic. He was rejecting candidates left and right.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

1st round is coding assessment round based on graph and hashmaps

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 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 

(1 Question)

  • Q1. Python, SQL, tableau
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic python , previous job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Recruiter is not at all professional. HR sent interview invite for another job role and took interview for another role.
No feedback provided after final round. Seen my message in WhatsApp then also can't say that you are not selected.
Anyways, my interview had gone good but i don't know what they need.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Removed duplicate in array
  • Ans. 

    Remove duplicate strings in an array

    • Use a Set data structure to store unique strings

    • Iterate through the array and add each string to the Set

    • Convert the Set back to an array to get the final result

  • Answered by AI
  • Q2. Find unique value
  • Ans. 

    Find the unique value in an array of strings

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

    • Return the element with frequency 1 as the unique value

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test with reasonings

Round 2 - Coding Test 

DSA related coding probleme

Round 3 - Technical 

(4 Questions)

  • Q1. Questions regarding Sql, c, html css and basic coding optimisation
  • Q2. What is join in sql?
  • Ans. 

    Join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables based on a related column

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q3. How many types of join?
  • Ans. 

    There are four types of joins in SQL: INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table, and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table, and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q4. Html page starts with which tag?
  • Ans. 

    Html page starts with the <html> tag.

    • Html page starts with the <html> tag.

    • The <html> tag defines the root of an HTML document.

    • All other HTML elements must be nested inside the <html> tag.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Simple discussion about yourself and future in organization

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. PHP baisc questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(6 Questions)

  • Q1. What's charecteristics of oops?
  • Ans. 

    Characteristics of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Ability to create new classes based on existing classes.

    • Polymorphism: Ability to use a single interface for different data types or classes.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. Diffrence between dynamic and object?
  • Ans. 

    Dynamic refers to runtime behavior while object refers to a specific instance of a class.

    • Dynamic behavior is determined at runtime, while objects are instances of classes

    • Dynamic programming languages allow for dynamic behavior, while objects are static entities

    • Examples: In Python, dynamic behavior can be seen with dynamic typing, while objects are created using classes and instantiated as objects

  • Answered by AI
  • Q3. What is finilize and compose.
  • Ans. 

    finalize and compose are methods used in software development to manage resources and create complex objects.

    • finalize is a method in Java used for cleanup operations before an object is garbage collected

    • compose is a design pattern where objects are combined to create a more complex object

    • finalize is discouraged to be used in modern Java due to unpredictability

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

    Indexes are data structures that improve the speed of data retrieval operations in databases.

    • Indexes are used to quickly locate data without having to search every row in a database table.

    • They are created on columns in a database table to speed up the data retrieval process.

    • Examples of indexes include primary keys, unique keys, and non-unique keys.

  • Answered by AI
  • Q5. How to delete duplicate records from sql.
  • Ans. 

    Use a SQL query with a GROUP BY clause to delete duplicate records.

    • Use a SELECT statement with a GROUP BY clause to identify the duplicate records.

    • Use the DELETE statement with a subquery to delete the duplicate records.

    • Make sure to keep the record with the lowest ID or timestamp if needed.

  • Answered by AI
  • Q6. What is the difference between views and temp table?
  • Ans. 

    Views are virtual tables generated from a query, while temp tables are physical tables stored in tempdb for temporary use.

    • Views are saved queries that act as virtual tables, while temp tables are physical tables stored in tempdb.

    • Views are not stored physically on disk, while temp tables are stored in tempdb.

    • Views are used for simplifying complex queries and providing security, while temp tables are used for storing tem...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always go to interview with basics of programming

I applied via LinkedIn and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduction, What was your previous job role and Questions regarding that
  • Q2. Basic programming loops like do-while,for
Round 2 - Technical 

(2 Questions)

  • Q1. Introduction, How was your experience in previous organization?
  • Q2. A coding problem related to sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and simply say no when you don't know any answer.

I applied via LinkedIn and was interviewed in Feb 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. Introduction, Basic programming loops like for,do-while etc
  • Q2. What was your previous job role and questions regarding to that job and projects you have done
Round 3 - Technical 

(2 Questions)

  • Q1. Introduction ,why you left your previous organization,what was your experience in the previous organization
  • Q2. A coding problem related to sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know the answer just simply say I don't know this,will try to learn.

ScreenRoot Interview FAQs

How to prepare for ScreenRoot 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 ScreenRoot. The most common topics and skills that interviewers at ScreenRoot expect are UX, B2B Sales, Sales, Ad Sales and Corporate Sales.

Tell us how to improve this page.

ScreenRoot Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.6k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
CleverTap Interview Questions
3.6
 • 15 Interviews
Pepper Square Interview Questions
2.3
 • 2 Interviews
Think Design Interview Questions
3.7
 • 1 Interview
View all

ScreenRoot Reviews and Ratings

based on 22 reviews

4.1/5

Rating in categories

4.2

Skill development

3.2

Work-life balance

3.2

Salary

3.7

Job security

3.5

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 22 Reviews and Ratings
UX Designer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI Designer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

UI/UX Designer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare ScreenRoot with

FrogIdeas

2.5
Compare

Think Design

3.7
Compare

Lollypop Ux Ui Design Studio

3.1
Compare

Robosoft Technologies

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