Upload Button Icon Add office photos
Engaged Employer

i

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

Astroyogi Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 55 Reviews

Filter interviews by

Astroyogi Web Developer Interview Questions and Answers

Updated 8 Mar 2022

Astroyogi Web Developer Interview Experiences

1 interview found

Web Developer Interview Questions & Answers

user image single kutty

posted on 8 Mar 2022

Round 1 - HR 

(8 Questions)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and adaptability. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, adaptability

    • Weaknesses: time management, public speaking

  • Answered by AI
  • Q2. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior web developer leading a team, working on complex projects, and continuously learning and growing in my career.

    • Leading a team of web developers

    • Working on complex projects

    • Continuously learning and growing in my career

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working with new technologies and staying up-to-date with industry trends.

    • Want to work in a more collaborative and innovative environment.

    • Seeking better career growth and advancement opportunities.

    • Desire to work on larger and more impactful projects.

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. 

    You should hire me because I have a strong background in web development and a proven track record of delivering high-quality projects.

    • I have a solid understanding of HTML, CSS, and JavaScript, as well as experience with popular frameworks like React and Angular.

    • I have successfully completed several web development projects, including building responsive websites and implementing complex features.

    • I am highly skilled in...

  • Answered by AI
  • Q5. Share details of your previous job.
  • Ans. 

    I worked as a Web Developer at XYZ Company.

    • Developed and maintained websites using HTML, CSS, and JavaScript.

    • Collaborated with designers and project managers to create user-friendly interfaces.

    • Implemented responsive design to ensure optimal viewing experience across different devices.

    • Optimized website performance by optimizing code and images.

    • Integrated third-party APIs and plugins to enhance website functionality.

    • Trou...

  • Answered by AI
  • Q6. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from different countries and professions.

    • My parents are from different countries, which has exposed me to different cultures and perspectives.

    • My father is a doctor and my mother is an architect, which has influenced my interest in both technology and design.

    • I have relatives who work in various fields such as engineering, business, and education, providing ...

  • Answered by AI
  • Q7. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am more interested in the overall package and growth opportunities than just the salary.

    • I am confident that my skills and experience will be valued appropriately.

    • I am looking for a fair and competitive compensation based on market standards.

    • I am open to discussing benefits and b

  • Answered by AI
  • Q8. I'm currently searching job please help me with the

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm currently searching job I was searching

Interview questions from similar companies

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Past experience
  • Q2. How much da u know
Round 2 - Technical 

(2 Questions)

  • Q1. Merge sort in js
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges the sorted halves.

    • Divide the array into two halves recursively

    • Sort each half using merge sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Hoising based question

Skills evaluated in this interview

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 Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good and nice and it was well organized.

Round 2 - HR 

(1 Question)

  • Q1. What was ur experience?
  • Ans. 

    I have over 5 years of experience in front end development, working on various projects and technologies.

    • Developed responsive websites using HTML, CSS, and JavaScript

    • Worked with frameworks like React and Angular to build interactive user interfaces

    • Optimized website performance and implemented SEO best practices

    • Collaborated with designers and backend developers to deliver high-quality products

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

It had some coding questions related to graph.

  • Q1. Dijkstra's shortest path

    You have been given an undirected graph of ‘V’ vertices (labelled from 0 to V-1) and ‘E’ edges. Each edge connecting two nodes u and v has a weight denoting the distance between th...

  • Ans. 

    The question is about finding the shortest path distance from a source node to all vertices in an undirected graph.

    • The graph is represented by the number of vertices and edges, followed by the edges and their distances.

    • The task is to find the shortest path distance from the source node (0) to all other nodes.

    • If a node is disconnected from the source node, print the maximum positive integer value (2147483647).

    • Implement ...

  • Answered by AI
  • Q2. Check If Path Exists

    You are given a directed and unweighted graph of 'V' vertices and 'E' edges. All edges are given in a 2-dimensional array ‘Edges’ in which ‘Edges[i][0]’ and ‘Edges[i][1...

  • Ans. 

    The task is to check if there exists a path from a given source vertex to a destination vertex in a directed and unweighted graph.

    • Read the number of test cases.

    • For each test case, read the number of vertices and edges.

    • Read the edges of the graph.

    • Read the source and destination vertices.

    • Implement a graph traversal algorithm (e.g., BFS or DFS) to check if a path exists from the source to the destination.

    • Print 'true' if a

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Hard

The round was really tough only 1 coding question was asked

  • Q1. Encode N-ary tree to binary tree

    You have been given an N-ary tree ‘N’ nodes with node ‘1’ as head of the tree. Encode the above N-ary tree into a binary tree such that if only the encoded binary tree was ...

  • Ans. 

    The task is to encode an N-ary tree into a binary tree and then decode the binary tree back into the original N-ary tree.

    • Encode the N-ary tree by representing each node as a binary tree node with its first child as the left child and subsequent children as the right child.

    • To decode the binary tree, traverse the binary tree and for each node, create a new N-ary tree node with its left child as the first child and subseq...

  • Answered by AI
  • Q2. Technical Questions

    What are the different lifecycle methods in React?

     Explain Strict Mode in React.

    How to prevent re-renders in React?

  • Ans. 

    Lifecycle methods in React, Strict Mode, and preventing re-renders.

    • Lifecycle methods in React include componentDidMount, componentDidUpdate, componentWillUnmount, etc.

    • Strict Mode is a tool for highlighting potential problems in React components.

    • To prevent re-renders in React, use shouldComponentUpdate or React.memo.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Bharati Vidyapeeth's College of Engineering. Eligibility criteriaPassouts 2020/2021JUSPAY interview preparation:Topics to prepare for the interview - Strings, Arrays, Sorting algorithms, Linked List, Loops, Sliding windows, Graphs, Trees, OOPS, DSA, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 2 projects
Tip 2 : Complete competitive programming
Tip 3 : Practice more interview Questions particular to the company applying to

Application resume tips for other job seekers

Tip 1 : Don't lie on resume
Tip 2 : Try to wrap resume in one page

Final outcome of the interviewRejected

Skills evaluated in this interview

Astroyogi Interview FAQs

How many rounds are there in Astroyogi Web Developer interview?
Astroyogi interview process usually has 1 rounds. The most common rounds in the Astroyogi interview process are HR.

Tell us how to improve this page.

UI/UX Designer
9 salaries
unlock blur

₹5.5 L/yr - ₹12.5 L/yr

Product Manager
8 salaries
unlock blur

₹14 L/yr - ₹38 L/yr

Senior Android Application Developer
7 salaries
unlock blur

₹4.1 L/yr - ₹10.2 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹16 L/yr - ₹19.2 L/yr

Customer Care Executive
6 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Astroyogi with

Tech Mahindra

3.6
Compare

HCLTech

3.5
Compare

TCS

3.7
Compare

Wipro

3.7
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