WorksheetsFull-Stack Concepts
Total questions: 10
Worksheet time: 5mins
React is a framework built on top of what language?
JavaScript
HTML
Python
HTTP
Which of the following is a front-end technology?
SQLite
Django
React
NodeJS
Which tool allows a developer to test the back-end HTTP requests without a front-end?
React
Postman
Git
npm
In GitHub, what is a fork?
A set of changes pushed to the main repository
A copy of a repository that you manage
A local version of a repository
A dining utensil
How can you add your changes to the main GitHub repository after pushing them to your fork?
clone them
branch them
delete them
use a pull request
Which HTTP method creates new data objects?
GET
POST
PUT
CREATE
The front-end sends _______ requests to the back-end
JSON
Serialized
HTTP
JavaScript
Where should data be stored for a full-stack application?
React app
Django server
SQL Database
HTTP REST API
On the back-end, what does a serializer do?
Converts data into a sendable format
Sends data through an HTTP request
Converts JSON data into a JavaScript object
Determines the type of data
On the front-end, which JavaScript function makes HTTP requests to connect with the back-end?
get
this.state
fetch
http
