All Coursera Quiz Answers

Module Quiz: Starting the Project Quiz Answers

In this article i am gone to share Coursera Course: Front-End Developer Capstone by Meta Week 1 | Module Quiz: Starting the Project Quiz Answers with you..

Also visit:  Front-End Developer Capstone Final Graded Quiz Answers

Module Quiz: Starting the Project Quiz Answers

Question 1)
How can you add some information about your current commit while using the git commit command?

  • -m
  • –amend
  • -a
  • -i

Question 2)
What are the benefits of using a version control system like Git? Select all that apply.

  • Increases the speed of the development process.
  • Allows multiple people to work on the same project without overwriting each other’s changes.
  • Enables easy collaboration with team members.
  • Automates the testing process.
  • Helps to keep a record of all changes made to a project.

Question 3)
After pushing your latest code changes to GitHub, what is usually a good idea to do next?

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

Question 4)
Which one of the following commands correctly creates a new React project called secret-technology?

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

Question 5)
When installing dependencies in a project from the node package manager, where are the dependencies placed in your computer?

  • In the node_modules folder.
  • In the lib directory inside your computer’s home directory.
  • In the src folder.

Question 6)
True or False: To animate a drop down menu in Figma, each item in the drop down should be connected to a component using “prototype” on the right side bar.

  • True
  • False

Question 7)
Before you can begin wireframing, what is an important first step?

  • To start designing the navigation bar.
  • To decide which color palette to use.
  • Listing the clients requirements.

Question 8)
When working on a React project, what troubles might you encounter if you do not have internet access?

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

Question 9)
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

Question 10)
Part of the ideation step in the UX design process is to brainstorm solutions. Which one of the following is an important step that should be completed before ideating?

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

 

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

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

Question 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

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

  • React
  • JavaScript
  • Node.js

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

  • True
  • False

Question 15)
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.

Question 16)
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

Question 17)
Which one of the following git commands will tell you the branch you are currently on?

  • git add
  • git status
  • git commit
  • git list

Question 18)
Which one of the following describes the purpose of create-react-app?

  • To test React components.
  • Add React to an existing project.
  • Build and deploy the current react app from source.
  • Set up React in a new project.

Question 19)
Which one of the following is the purpose of a wireframe?

  • To create a basic structure for each screen in the design before things like branding, colors and images are considered.
  • To create a completed design of all the typographical elements of the web app.
  • To create a completed design for the entire website, including branding colors, and images.

Question 20)
You have just created a new React project and are thinking about project structure. Which one of the following is a good approach to this?

  • Grouping alphabetically
  • Grouping by name
  • Grouping by features
  • Grouping by file size

Question 21)
How can you make your React project publicly available online?

  • Uploading the src directory of the project to a web hosting service.
  • Uploading the build version of the project to a web hosting service.
  • Uploading a zip file of the project to a web hosting service.
  • Uploading the test directory of the project to a web hosting service.

Question 2)
Which one of the following Git commands is used to get the latest changes to source code from a remote repository?

  • git commit
  • git fetch
  • git pull
  • git remote

Question 3)
What does the git add . command do?

  • Commits all untracked files in the current directory.
  • Adds all untracked files in the home directory to the staging area.
  • Adds all untracked files in the current directory to the staging area.

Question 4)
Which package manager, if any, is needed to create a new React project?

  • pip
  • npn
  • No package manager is needed.
  • npm

Question 5)
What’s the importance of the node_modules folder for a React app built using the create-react-app npm package?

  • This folder is not important. In fact, it’s entirely optional.
  • It is used by dependencies to save all the project’s files.
  • It is used by the npm or yarn package manager to save all the dependencies of your current project.

Question 6)
True or False: To create a nice, smooth animation in Figma, you can use the Clever animate option.

  • True
  • False

Question 8)
Which one of the following is a likely cause of a problem when trying to create a new React app?

  • Your computer is too powerful.
  • The React library has been deprecated.
  • You don’t have JavaScript installed.
  • Your npm or Node.js versions are out of date.

Question 9)
To host a React project, what needs to be uploaded to your web hosting space?

  • The src directory.
  • The build version of the project.
  • A zip file of the whole project.
  • The test directory.