Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by ShootOrder Team. If you also belong to the team, you can get access from here

ShootOrder Verified Tick

Compare button icon Compare button icon Compare
4.8

based on 11 Reviews

Filter interviews by

ShootOrder Front end Developer Interview Questions and Answers

Updated 26 Apr 2024

ShootOrder Front end Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Questions on react
  • Q2. Explain about Props
  • Q3. Explain about Redux flow
  • Ans. 

    Redux flow is a predictable state container for JavaScript apps.

    • Redux stores the entire state of the application in a single immutable object.

    • Actions are dispatched to update the state using pure functions called reducers.

    • Components can subscribe to the Redux store to access the state and re-render when it changes.

  • Answered by AI
  • Q4. Explain about Hooks
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components.

    • Hooks were introduced in React 16.8.

    • They allow you to use state and other React features without writing a class component.

    • Commonly used hooks include useState, useEffect, useContext, and useReducer.

    • Hooks must be used at the top level of a functional component.

    • Hooks can be custom created for specific use cases.

  • Answered by AI
  • Q5. Explain about use Context
  • Ans. 

    Context is a feature in React that allows data to be passed through the component tree without having to pass props down manually at every level.

    • Context provides a way to share values like themes, user data, etc. across the component tree without having to pass props down manually at every level.

    • It helps in avoiding prop drilling, where props are passed through multiple levels of components.

    • Context consists of two part...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call from HR you are selected for final discussion from 1month There is no response from HR

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was a link from hackerEarth, only aptitude question were there

Round 2 - Coding Test 

Got 1 hr to complete 2 coding questions on the complier provided by them.

Round 3 - Technical 

(1 Question)

  • Q1. Had project structure discussion previous projects design model discussion, few problem solving questions, few react technical javascript technical question was about 1.30hr long interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked me about hooks and redux

Round 2 - HR 

(1 Question)

  • Q1. What is my expectations

Interview Preparation Tips

Topics to prepare for Adglobal360 Front end Developer interview:
  • React.Js
  • Redux
Interview preparation tips for other job seekers - Worst company

I applied via LinkedIn and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They just asked simple basics of javascript and react.

Interview Preparation Tips

Interview preparation tips for other job seekers - You just need to know every basic concept of javascript and React like how to fetch data from backend and how to fetch data in json format.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Optimisation techniques/ vanilla js
  • Q2. Polyfill of promise
  • Ans. 

    Polyfill of promise is a code that adds support for promises in older browsers.

    • Polyfill is used to fill in the gaps in browser support for certain features.

    • For promises, a polyfill can be used to provide support in older browsers that do not natively support promises.

    • Popular promise polyfills include 'es6-promise' and 'bluebird'.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - HR 

(10 Questions)

  • Q1. How do you handle cross-browser compatibility issues? Can you provide an example where you had to address a significant issue related to browser inconsistencies?
  • Ans. 

    I handle cross-browser compatibility by testing on multiple browsers, using polyfills, and CSS resets.

    • Test on multiple browsers to identify and fix issues

    • Use polyfills to provide missing functionality in older browsers

    • Utilize CSS resets to ensure consistent styling across browsers

    • Example: Had to fix layout issues in Internet Explorer by adjusting CSS properties

  • Answered by AI
  • Q2. Explain how you optimize the performance of a web application. What specific strategies do you use to reduce load times and improve responsiveness?
  • Ans. 

    Optimizing web application performance involves various strategies like minification, caching, lazy loading, and image optimization.

    • Minify CSS, JavaScript, and HTML files to reduce file sizes and improve load times.

    • Implement browser caching to store static resources locally and reduce server requests.

    • Utilize lazy loading to defer loading of non-essential resources until they are needed.

    • Optimize images by resizing, comp...

  • Answered by AI
  • Q3. Describe a challenging project where you had to integrate complex front-end features with a back-end system. What challenges did you face, and how did you ensure smooth integration?
  • Ans. 

    Integrated complex front-end features with a back-end system in a challenging project.

    • Developed a real-time chat feature using WebSockets to communicate with the back-end server

    • Faced challenges with data synchronization and ensuring seamless updates across all clients

    • Implemented RESTful APIs to fetch and update data from the back-end

    • Used Redux for state management to handle complex data flows

    • Performed thorough testing

  • Answered by AI
  • Q4. How do you approach designing for accessibility? Can you give an example of how you’ve ensured your applications are accessible to users with disabilities?
  • Ans. 

    I approach designing for accessibility by following best practices and guidelines to ensure all users can access and use the application.

    • I use semantic HTML to provide structure and context for screen readers

    • I ensure all interactive elements are keyboard accessible

    • I use ARIA attributes to enhance accessibility for users with disabilities

    • I conduct usability testing with users who have disabilities to gather feedback and...

  • Answered by AI
  • Q5. What are the key considerations when implementing responsive design? How do you ensure that your design adapts well across different devices and screen sizes?
  • Ans. 

    Key considerations for implementing responsive design include fluid grids, flexible images, media queries, and testing across various devices.

    • Use fluid grids to ensure content adapts to different screen sizes

    • Utilize flexible images that scale appropriately

    • Implement media queries to apply different styles based on screen size

    • Test the design across multiple devices to ensure consistent user experience

  • Answered by AI
  • Q6. Discuss a time when you had to refactor a large codebase. How did you approach the task, and what steps did you take to ensure that the code remained maintainable and scalable?
  • Ans. 

    Refactored a large codebase by breaking it down into smaller modules, improving readability and maintainability.

    • Analyzed the existing codebase to identify redundant or inefficient code

    • Broke down the code into smaller, more manageable modules

    • Implemented design patterns such as MVC or MVVM to improve code structure

    • Refactored code incrementally, testing each change to ensure functionality was not affected

    • Documented change...

  • Answered by AI
  • Q7. How do you stay updated with the latest front-end technologies and frameworks? How do you determine whether to adopt a new technology or stick with the current stack?
  • Ans. 

    I stay updated by following industry blogs, attending conferences, and experimenting with new technologies. I evaluate new technologies based on their benefits, community support, and compatibility with current stack.

    • Follow industry blogs and websites like CSS-Tricks, Smashing Magazine, and A List Apart

    • Attend conferences and meetups to learn about new technologies and best practices

    • Experiment with new technologies by b...

  • Answered by AI
  • Q8. Explain how you manage state in a complex front-end application. What tools or libraries do you use, and how do you ensure that state management does not become a bottleneck?
  • Ans. 

    State management in complex front-end applications involves using tools like Redux or Context API to centralize and manage application state efficiently.

    • Use tools like Redux or Context API to centralize and manage state

    • Implement state management patterns like Flux architecture to ensure data flow consistency

    • Optimize state updates by using selectors to prevent unnecessary re-renders

    • Use middleware like Thunk or Saga for ...

  • Answered by AI
  • Q9. Describe a situation where you had to troubleshoot a performance issue in a production environment. What steps did you take to identify and resolve the problem?
  • Ans. 

    Troubleshooting a performance issue in a production environment

    • Identified the specific area of the application causing the performance issue

    • Reviewed server logs and monitoring tools to gather data on resource usage

    • Used profiling tools to analyze code execution and identify bottlenecks

    • Optimized code by refactoring, caching, or reducing unnecessary operations

    • Implemented performance testing to ensure the issue was resolve

  • Answered by AI
  • Q10. How do you handle version control and collaboration in a team setting? Can you provide an example of how you managed code conflicts and ensured smooth team workflows?
  • Ans. 

    I use Git for version control and collaborate with team members through branches and pull requests.

    • Utilize Git for version control to track changes and collaborate with team members

    • Create separate branches for different features or bug fixes to prevent conflicts

    • Regularly pull changes from the main branch to stay up to date with the latest code

    • Resolve code conflicts by communicating with team members and carefully mergi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Embrace the Unique Culture: Moris Media positions itself as a "Digital Doctor," meaning their approach is innovative and distinct from typical digital marketing and PR agencies. Understand that the company values uniqueness and practical solutions. You'll need to be ready to tackle complex problems with creative and effective solutions.

2. Be Prepared for Challenges: At Moris Media, you will encounter a variety of challenges that will test your skills and knowledge. The environment is dynamic, and the projects can be demanding. If you thrive on overcoming obstacles and enjoy pushing your limits, you will find this role rewarding.

3. Continuous Learning is Crucial: The digital landscape is constantly evolving, and so are the tools and technologies used at Moris Media. You should be prepared to continually learn and adapt, especially with technologies like PHP and Laravel. Staying updated with the latest trends and advancements in front-end development is key to your success.

4. Take Initiative and Responsibility: This role requires not just technical expertise but also a high level of responsibility. You'll need to manage projects independently, make informed decisions, and ensure your work aligns with both client needs and company standards. Taking initiative and owning your work is essential.

5. Focus on Practical Solutions: Moris Media values practical and effective solutions. When designing and developing, focus on creating user-centric, functional, and high-performance applications. Your designs should not only look good but also provide real value and solve specific problems.

6. Adapt to a Fast-Paced Environment: Expect a fast-paced and ever-changing work environment. You’ll need to handle multiple projects and priorities simultaneously. Effective time management and the ability to adapt quickly to new challenges will be important for success.

7. Demonstrate Creativity and Innovation: Moris Media looks for individuals who are not just skilled but also highly creative. Bring innovative ideas to the table and be willing to experiment with new technologies and design approaches. Your ability to think outside the box will be highly valued.

8. Show Strong Collaboration Skills: Even though you may work independently on many tasks, collaboration with other team members is crucial. Be prepared to work closely with designers, developers, and stakeholders to ensure that projects meet the highest standards and are completed efficiently.

9. Ensure a Solid Understanding of Front-End Technologies: A strong grasp of front-end technologies, particularly PHP, Laravel, and related tools, is essential. Demonstrating proficiency in these areas will help you stand out as a candidate and ensure you can contribute effectively from day one.

10. Be Ready for Flexibility and Adaptability: Moris Media offers flexibility in terms of work hours and methods, but it also requires adaptability. If you are looking for a traditional 9-to-6 job with predictable routines, Moris Media may not be the right fit. However, if you are ready to embrace a more flexible and evolving work environment, you will find plenty of opportunities to grow and succeed.

Is Moris Media Right for You? If you are a creative, confident individual who is ready to take on challenges, continuously learn, and contribute innovative solutions, Moris Media is an excellent place for you. The company offers a unique and dynamic environment that can help you advance your career and make a significant impact in the world of front-end development.

Skills evaluated in this interview

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

Round 1 - One-on-one 
Round 2 - HR 

Interview Preparation Tips

Topics to prepare for Publicis Front end Developer interview:
  • Javascript
  • HTML
  • CSS3
Interview preparation tips for other job seekers - Anyone with good understanding of JS , experience with html and css should be able to clear the interview
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked me about hooks and redux

Round 2 - HR 

(1 Question)

  • Q1. What is my expectations

Interview Preparation Tips

Topics to prepare for Adglobal360 Front end Developer interview:
  • React.Js
  • Redux
Interview preparation tips for other job seekers - Worst company

I applied via LinkedIn and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They just asked simple basics of javascript and react.

Interview Preparation Tips

Interview preparation tips for other job seekers - You just need to know every basic concept of javascript and React like how to fetch data from backend and how to fetch data in json format.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was a link from hackerEarth, only aptitude question were there

Round 2 - Coding Test 

Got 1 hr to complete 2 coding questions on the complier provided by them.

Round 3 - Technical 

(1 Question)

  • Q1. Had project structure discussion previous projects design model discussion, few problem solving questions, few react technical javascript technical question was about 1.30hr long interview

ShootOrder Interview FAQs

How many rounds are there in ShootOrder Front end Developer interview?
ShootOrder interview process usually has 1 rounds. The most common rounds in the ShootOrder interview process are Technical.
What are the top questions asked in ShootOrder Front end Developer interview?

Some of the top questions asked at the ShootOrder Front end Developer interview -

  1. Explain about Redux f...read more
  2. Explain about use Cont...read more
  3. Explain about Ho...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 ShootOrder interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
4.0
 • 99 Interviews
3 Minds Digital Interview Questions
4.4
 • 64 Interviews
Publicis Interview Questions
3.7
 • 54 Interviews
Regalix Interview Questions
2.9
 • 43 Interviews
Denave Interview Questions
3.7
 • 39 Interviews
Xdbs Interview Questions
3.2
 • 38 Interviews
InMobi Interview Questions
3.6
 • 35 Interviews
Smollan Group Interview Questions
4.2
 • 33 Interviews
View all
Web Developer
8 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

PPC Executive
6 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Content Writer
5 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Accounts Manager
4 salaries
unlock blur

₹2 L/yr - ₹4.9 L/yr

Client Servicing Executive
4 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Explore more salaries
Compare ShootOrder with

Webenza

3.5
Compare

WATConsult

3.3
Compare

Social Beat

3.3
Compare

Techmagnate

4.0
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