Skip to content

Instantly share code, notes, and snippets.

@mag002
Last active August 11, 2024 10:26
Show Gist options
  • Save mag002/9aa893fad0f97e0e69120c69077f1786 to your computer and use it in GitHub Desktop.
Save mag002/9aa893fad0f97e0e69120c69077f1786 to your computer and use it in GitHub Desktop.
Front-end Fresher/Junior/Middle Interview (with ReactJS)
#fe-fresher-interview (50%)
#fe-junior-interview (40%)
#fe-middle-interview (10%)
#Interview example (Part 3 pick randomly)
@mag002
Copy link
Author

mag002 commented Aug 6, 2021

HTML

  • <!DOCTYPE> tag?
  • Name all the Semantic HTML tags
  • What is the difference between <script defer src=”...”> and <script async src=”...”>

@mag002
Copy link
Author

mag002 commented Aug 6, 2021

CSS

  • How many ways to apply CSS to HTML?
  • Flex and Grid, Which one? Why and When?
  • What is CSS preprocessor? Name all the CSS preprocessors you know?
  • What is BEM?
  • Name all the CSS libraries/frameworks you know?
  • What is Atomic CSS?
  • Name all the CSS combinators you know.
  • Create Element below with CSS
    image_2021_08_05T10_07_50_179Z

@mag002
Copy link
Author

mag002 commented Aug 6, 2021

JS

  • var/let?
  • Pass by reference?
  • What is Scope?
  • How many ways to add an event?
  • Event Capturing and Event Bubbling?
  • What is Callback Hell? How to solve it?
  • Event loop?
  • console.log(this) <= What is this?
  • Algorithm:
const testcases = [
  {
    input: "aa",
    output: "Empty String",
  },
  {
    input: "abba",
    output: "Empty String",
  },
  {
    input: "cabba",
    output: "c",
  },
  {
    input: "cabbbbac",
    output: "Empty String",
  },
]

@mag002
Copy link
Author

mag002 commented Aug 6, 2021

ReactJS

  • What is ReactJS and why do you use it?
  • What is JSX?
  • What is Virtual DOM?
  • Prop? State?
  • Difference between Class component and Function Component?
  • What is Lifecycle?
  • Form Handling.
  • Name all the React Hooks you know
  • What is Redux and when do you use it?
  • Redux middleware?
  • Typescript?
  • Make a FilterComponent for Table:
    image
    INPUT:
    image image
    OUTPUT:
    image

@mag002
Copy link
Author

mag002 commented Aug 6, 2021

HTML, CSS Excercise

  • Estimate and make the template below: (HTML, CSS)
    image
  • Estimate and create the component below: (HTMl, CSS, JS)
    image

@mag002
Copy link
Author

mag002 commented Aug 6, 2021

Order Stuffs

  • Git flow?
  • Design? (Figma, AdobeXD, Sketch…)
  • Mock API?
  • webpack
  • NodeJS, npm, RESTfulsAPI...
  • JWT?
  • Unit Test?
  • Postman, swagger, ...

@mag002
Copy link
Author

mag002 commented Aug 11, 2024

Interview Example

Part 1: Multiple Choice Questions (MCQs)

Section 1: HTML & CSS (10 Questions)

  1. Which of the following is the correct syntax for a self-closing HTML tag?
    1. a) <div></div>
    2. b) <img>
    3. c) <a />
    4. d) <br>
  2. What does the CSS z-index property control?
    1. a) Font size
    2. b) The layering of elements
    3. c) Padding
    4. d) Text alignment
  3. Which of the following HTML elements is used to create a dropdown list?
    1. a) <select>
    2. b) <input type="dropdown">
    3. c) <textarea>
    4. d) <ul>
  4. Which CSS property is used to change the text color of an element?
    1. a) font-color
    2. b) text-color
    3. c) color
    4. d) background-color
  5. What is the default value of the position property in CSS?
    1. a) relative
    2. b) absolute
    3. c) static
    4. d) fixed

Section 2: JavaScript (10 Questions)

  1. Which of the following is a primitive data type in JavaScript?

    1. a) Array
    2. b) Object
    3. c) String
    4. d) Function
  2. What is the output of the following JavaScript code? console.log(typeof null);

    1. a) null
    2. b) object
    3. c) undefined
    4. d) string
  3. Which of the following is NOT a valid JavaScript variable name?

    1. a) \_name
    2. b) 2ndName
    3. c) name2
    4. d) $name
  4. How do you create a function in JavaScript?

    1. a) function myFunction() {}
    2. b) function:myFunction() {}
    3. c) function = myFunction() {}
    4. d) myFunction function() {}
  5. Which method is used to add elements to the end of an array in JavaScript?

    1. a) push()
    2. b) pop()
    3. c) shift()
    4. d) unshift()

Section 3: ReactJS (10 Questions)

  1. What is a React component?
    1. a) A function that returns HTML
    2. b) A JavaScript function or class that returns JSX
    3. c) A CSS class
    4. d) An HTML tag
  2. Which method in a React class component is used to handle side effects, like fetching data?
    1. a) componentWillMount
    2. b) componentDidUpdate
    3. c) componentDidMount
    4. d) render
  3. What is the purpose of the key prop in React?
    1. a) To uniquely identify elements in a list
    2. b) To trigger re-renders
    3. c) To handle events
    4. d) To style components
  4. Which of the following hooks is used to manage state in a functional component?
    1. a) useState
    2. b) useEffect
    3. c) useRef
    4. d) useContext
  5. What is JSX in React?
    1. a) A syntax extension that looks similar to HTML
    2. b) A CSS preprocessor
    3. c) A JavaScript library
    4. d) A JSON format

Part 2: Essay Questions

Section 1: HTML/CSS

  1. Explain the difference between block-level and inline-level elements in HTML. Provide examples of each.
  2. Describe the CSS box model. How does the box-sizing property affect element sizing?

Section 2: JavaScript

  1. What is the difference between == and === in JavaScript? Provide examples of when to use each.
  2. Explain closures in JavaScript. How do they work, and why are they useful? Provide an example.

Section 3: ReactJS

  1. Describe the virtual DOM and how it differs from the real DOM. Why is the virtual DOM important in ReactJS?
  2. Explain how props and state are used in ReactJS. How do they differ? Provide examples.

Part 3: Hands-On Coding Tasks

Create a Comprehensive ReactJS Application:

Part 1: Build a Weather Forecast Application

  • Objective: Develop a ReactJS application that displays weather information based on user input.
  • Requirements:
    • Component Structure: Break down the application into multiple components (e.g., WeatherSearch, WeatherDisplay, WeatherDetails).
    • State Management: Use useState and useEffect hooks to manage the application’s state.
    • Features:
      • Allow users to search for a city’s weather.
      • Fetch weather data from a public API (e.g., OpenWeatherMap API).
      • Display current weather information (temperature, humidity, wind speed, etc.).
      • Show a 5-day weather forecast.
      • Persist the last searched city using local storage.
    • Styling: Use CSS or a CSS-in-JS library (e.g., styled-components) to style the application.
    • Bonus: Implement a dark/light mode toggle.

Part 2: Create a Recipe Finder Application

  • Objective: Build a ReactJS application that helps users find and save recipes.
  • Requirements:
    • Recipe Search: Allow users to search for recipes by ingredient or recipe name.
    • API Integration: Fetch recipe data from a public API (e.g., Edamam Recipe API).
    • Recipe Display: Display a list of recipes with images, ingredients, and preparation instructions.
    • Favorite Recipes: Implement functionality to save favorite recipes to local storage.
    • Recipe Details: Create a detailed view for each recipe that includes nutritional information.
    • Responsive Design: Ensure the application is fully responsive on different devices.

Part 3: Implement a Blogging Platform

  • Objective: Create a basic blogging platform where users can create, edit, and delete posts.
  • Requirements:
    • Component Structure: Organize the application into components such as BlogList, BlogPost, CreatePost, and EditPost.
    • State Management: Use useState and useReducer hooks for managing posts.
    • Features:
      • Users can create new blog posts with a title, content, and tags.
      • Posts are displayed in a list format, with options to edit or delete each post.
      • Implement a search function to filter posts by title or tags.
      • Use local storage to persist blog posts.
    • Routing: Set up routing to navigate between different sections of the application (e.g., Home, Create Post, Edit Post).
    • Form Validation: Add form validation to ensure that posts contain a title and content.

Part 4: E-commerce Product Catalog

  • Objective: Develop a product catalog for a fictional e-commerce website.
  • Requirements:
    • Product Display: Fetch and display a list of products from a public API (e.g., Fake Store API).
    • Product Details: Create a detailed view for each product, displaying information like price, description, and reviews.
    • Search and Filter: Implement search and filter options to allow users to find products by category, price range, or rating.
    • Shopping Cart: Create a simple shopping cart that allows users to add and remove products, and calculate the total price.
    • Routing: Use React Router to navigate between the product list, product details, and cart views.
    • Bonus: Implement pagination for the product list.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment