Upload Button Icon Add office photos

Filter interviews by

QuinStreet UI Developer Interview Questions and Answers

Updated 16 Jan 2024

QuinStreet UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic and intermediate HTML, CSS AND JS questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. Tricky JS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round was challenging
Asked the most relevant questions in HTML, CSS and JS
2nd round- techno manager round
Interview questions started no time wasting introductions and no feedback on answers provided. Rude Interviewer

UI Developer Jobs at QuinStreet

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Attended first round interview dec 2023
  • Q2. Asked some basic js and angular question
  • Q3. What is hoisting?
  • Ans. 

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

    • Hoisting applies to both variable and function declarations.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, allowing them to be called before they are defined.

    • Hoisting does not apply to variables declared with let or const.

    • Ho...

  • Answered by AI
  • Q4. Difference between display-block and inline-block
  • Ans. 

    display-block takes up full width, while inline-block only takes up necessary width.

    • display-block elements start on a new line and take up the full width available, like <div>

    • inline-block elements do not start on a new line and only take up as much width as necessary, like <span>

    • display-block elements can have margin and padding applied on all sides, while inline-block elements only have margin and padding

  • Answered by AI
  • Q5. Parent child communication in angular
  • Ans. 

    Parent child communication in Angular is a way to pass data and trigger actions between components.

    • Use @Input decorator to pass data from parent to child component

    • Use @Output decorator and EventEmitter to emit events from child to parent component

    • Use ViewChild decorator to access child component from parent component

    • Use services to share data between unrelated components

  • Answered by AI
Round 2 - Assignment 

Provide three screenshot of matrimony app to create a angular application.

Interview Preparation Tips

Interview preparation tips for other job seekers - After completing 3rd round successfully they start salary negotiation. I was disappointed and rejected the offer.very poor organisation.

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

  • Ans. 

    Rearrange array elements based on their differences from a given integer.

    • Calculate the differences between each element and the given integer.

    • Sort the elements based on their differences while maintaining the original order for elements with the same difference.

    • Implement a function to rearrange the array elements as per the given criteria.

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    The task is to find all nodes in a binary tree that are at a distance K from a given node.

    • Traverse the binary tree to find the given node

    • From the given node, perform a depth-first search to find all nodes at distance K

    • Use a list to store the values of the nodes at distance K

    • Return the list of values in any order

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    Print a triangle pattern of numbers based on a given number 'N'.

    • Iterate through each row and print the numbers accordingly

    • Use spaces to center-align the numbers in each row

    • Increment the numbers in each row as per the pattern

  • Answered by AI
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    Web server serves static content over HTTP, while application server runs dynamic content and business logic.

    • Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.

    • Application server executes business logic, runs dynamic content, and interacts with databases.

    • Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.

    • Web server focuses on...

  • Answered by AI
  • Q3. How does the internet work?
  • Ans. 

    The internet is a global network of interconnected computers that communicate using standardized protocols.

    • The internet is made up of a vast number of interconnected networks of computers.

    • Data is transmitted over the internet using protocols such as TCP/IP.

    • Websites are hosted on servers connected to the internet, and users access them using web browsers.

    • Internet Service Providers (ISPs) provide access to the internet f...

  • Answered by AI
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the 'SELECT DISTINCT' statement to get unique salary values

    • Order the salaries in descending order using 'ORDER BY' clause

    • Use 'LIMIT' and 'OFFSET' to get the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. 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 - Coding Test 

Discussion on Oops and asked to implement linked list and then asked to modify it to fit for a binary tree.

One qsts related to algos was asked too which I don't remember

Round 3 - HR 

(1 Question)

  • Q1. Formal introduction of ourselves . Followed by few qsts on family and why IIFL

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple interview process. Focus on algos and oops concepts more.

I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data structure
  • Q2. Java concepts
  • Q3. Handson coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Get handson in any language but be confident

I applied via Company Website and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Your Personal Details, Your Qualifications?
  • Ans. This answer must be basied on you resume.
  • Answered Anonymously
  • Q2. Why IndiaMart?
  • Ans. This type of question are based on you knowledge and your experiences
  • Answered Anonymously
  • Q3. What are you skills and how you would implement them while working with us?
  • Ans. For this you need to know you Positive Point and Negative Point which are totally based on your behavior and Personality
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Natural and Original while interviewing

I applied via Referral and was interviewed in May 2021. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The interview consisted a appitude test and second round was english speaking assessment test online , if you clear both the test, they will share the documentation link

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process was easy.

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Fibonacci series, Prime function, linked lisk value access, query

Interview Preparation Tips

Interview preparation tips for other job seekers - First a test based on amcat. Followed by two technical interview. First Tech Interview basis and overview of you concept of ds and algo will ne asked. In second Tech interview indepth concept of topics such as arrays, linked list, os,algo, etc will be asked. Prepare ds and algo concept, dbms query & concept, internet basis such as protocols, methods,etc.

Best of luck

I applied via LinkedIn and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude + Coding Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical Interview with an SDE
Round 3 - Technical 

(1 Question)

  • Q1. Managerial + Technical Interview
Round 4 - HR 

(1 Question)

  • Q1. Basic HR discussion around salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Question were around OOPs, DSA and Aptitude.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Just basic DSA round

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on DSA like array and strings.
  • Q2. Computer science fundamentals questions like OOPS concepts

QuinStreet Interview FAQs

How many rounds are there in QuinStreet UI Developer interview?
QuinStreet interview process usually has 2 rounds. The most common rounds in the QuinStreet interview process are Technical and One-on-one Round.
How to prepare for QuinStreet UI Developer 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 QuinStreet. The most common topics and skills that interviewers at QuinStreet expect are Javascript, HTML, CSS, UI Development and Digital Media.
What are the top questions asked in QuinStreet UI Developer interview?

Some of the top questions asked at the QuinStreet UI Developer interview -

  1. Basic and intermediate HTML, CSS AND JS questio...read more
  2. Tricky JS questi...read more

Tell us how to improve this page.

QuinStreet UI Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

JustDial Interview Questions
3.5
 • 325 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
IIFL Finance Interview Questions
4.0
 • 245 Interviews
Sify Technologies Interview Questions
3.9
 • 121 Interviews
R.R. Donnelley Interview Questions
3.9
 • 100 Interviews
Matrimony.com Interview Questions
4.3
 • 87 Interviews
Publicis Interview Questions
3.7
 • 52 Interviews
Regalix Interview Questions
2.9
 • 44 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
View all
QuinStreet UI Developer Salary
based on 4 salaries
₹3.6 L/yr - ₹13 L/yr
28% more than the average UI Developer Salary in India
View more details
UI Developer-Remote

Pune

5-7 Yrs

Not Disclosed

Ui Developer

Pune

3-5 Yrs

Not Disclosed

Explore more jobs
Java Developer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare QuinStreet with

Info Edge

3.9
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

Network 18

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