Module Quiz: Starting the Project

11. Which Git command can be used to show the history of commits?

  • git commit
  • git history
  • git status
  • git log

12. After a project has been set up with version control, which two commands should be used together to commit files to the staging area? Select all that apply.

  • git commit
  • git push
  • git add
  • git init

13. After pushing your latest code changes to GitHub, what is usually a good idea to do next?

  • Delete the branch since you won’t need it anymore.
  • Checkout a new branch to continue working on the code.
  • Check that the changes are present on GitHub.

14. Which one of the following commands correctly creates a new React project called secret-technology?

  • npx create-react-app
  • npx secret-technology create-react-app
  • npm react-app init secret-technology
  • npx create-react-app secret-technology

15. What must be installed on your computer in order for you to use the node package manager and npm commands?

  • React
  • JavaScript
  • Node.js

16. True or False: Figma allows you to create animations to demonstrate things such as opening a drop down menu.

  • False
  • True

17. Which one of the following is true about wireframes?

  • Wireframes don’t need to contain fonts, colors, or images.
  • Wireframes need to have proper brand fonts, colors, and images.
  • Wireframes should serve as a prototype to the client so they can see what the finished product will look like.

18. When working on a React project, what troubles might you encounter if you do not have internet access?

  • Cannot use React hooks.
  • Cannot locally test your web application.
  • Cannot install npm packages.
  • Cannot save code changes.

19. Which of the following commands will create a version of your React project which can be uploaded to a web hosting service?

  • npm run production
  • npm run dist
  • npm run build
  • npm version

20. Which step of the UX design process has participants interact with a product while trying to accomplish a task from a pre-written script?

  • Prototype
  • Design the UI
  • Test and build
  • Define the problem

Leave a Reply