R19CS206 - Full Stack Development, R19CS653 - Full Stack Technologies - Google Forms
R19CS206 - Full Stack Development, R19CS653 - Full Stack Technologies - Google Forms
Student Name *
722822106095
II ECE B
Quiz
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 1/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
1. What does the term "Full Stack Development" refer to? * 1 point
HTML
CSS
JavaScript
SQL
3. The purpose of the Front-end framework in Full stack development is ____. * 1 point
To manage database
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 2/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
Python
C++
JavaScript
Both A and C
Multiple
One
Only two
Zero
<video>
<source>
<track>
<slider>
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 3/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
<style>
<link>
<script>
Background-color
Color
Both a and b
9. Among the given statements, which statement defines closures in JavaScript? * 1 point
JavaScript is a function that is enclosed with references to its inner function scope
JavaScript is a function that is enclosed with the object to its inner function scope
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 4/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
10. What will be the output of the following JavaScript code snippet? * 1 point
false
true
compilation error
runtime error
Virtual DOM
Original DOM
Both A and B
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 5/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
12. Identify the one which is used to pass data to components from outside * 1 point
setState
propTypes
Props
14. Among The following options, choose the one which helps react for keeping their * 1 point
data uni-directional?
DOM
Flux
JSX
Props
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 6/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
var Helloword(props)=>
{
return(
<div> Hello World 1 </div>
<div> Hello World 2 </div>
);
}
ReactDOM.render(<Helloworld/>,mountNode)
Hello World 1
Hello World 2
Error
16. How can you set a default value for an uncontrolled form field? * 1 point
It is assigned automatically.
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 7/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
useReducer()
useMemo()
useCallback()
useContext()
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 8/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
21. __________ is a part of the standard MongoDB distribution and provides a full * 1 point
JavaScript environment.
mongod
mongodb
mongo
22. After starting the mongo shell, your session will use the ________ database by * 1 point
default.
mongo
master
test
primary
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgcI… 9/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
24. Which of the following line skips the first 5 documents in the bios collection and * 1 point
returns all remaining documents?
db.bios.find().limit( 5 )
db.bios.find().skip( 1 )
db.bios.find().skip( 5 )
db.bios.find().sort( 5 )
Secondary indexes allow applications to store a view of a portion of the collection in an efficient
data structure
Most indexes store an ordered representation of all values of a field or a group of fields
Option 5
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 10/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
26. Which of the following operation adds a new document to the users collection? * 1 point
add
insert
truncate
drop
27. Which of the following pipeline is used for aggregation in MongoDB? * 1 point
data processing
information processing
knowledge processing
28. Which of the following query selects documents in the records collection that * 1 point
match the condition { “user_id”: { $lt: 42 } }?
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 11/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
$slice
$elemMatch
$project
30. _____ can modify specific fields of an existing document or documents or replace * 1 point
modify()
update()
find()
insert()
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 12/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
32. Which of the following template engines can be used with Node.js? * 1 point
Jade
Vash
Handlebars
33. Which of the following code print the platform of operating system? * 1 point
34. Which of the following is not a benefit of using modules in Express? * 1 point
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 13/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
36. Which of the following areas, Node.js, is not advised to be used? * 1 point
37. ___________ data models allow applications to store related pieces of information * 1 point
in the same database record.
Reference
Embedded
External
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 14/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
38. To get the current number of namespaces in the mongo shell, use * 1 point
________________
db.system.namespaces.countc()
db.system.namespaces.count(*)
db.system.namespaces.count()
You cannot query for a node in the children field to find its parent node only
You can query for a node in the children field to find its parent node as well as its siblings
You can query for a node in the children field to find its siblings only
40. Use of the approximation field for the query and sort operations requires that * 1 point
applications perform _______ side post-processing.
client
server
application
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 15/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
Web applications
Microservices
Web-based tool to bootstrap Spring projects and generate project skeletons with the necessary
configurations and dependencies.
A tool for creating a Spring Boot application with a specific set of features
43. How can a Spring Boot application be packaged and distributed? * 1 point
As a JAR file
As a WAR file
As a ZIP file
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 16/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
44. Which annotation do we use to mark the class as a Service class/component? * 1 point
@Component
@Service
@Controller
@Repository
45. Which starter dependency is used to develop web applications or Restful web * 1 point
services?
spring-boot-starter-data-jpa
spring-boot-starter-web
spring-boot-starter-rest
spring-boot-starter-web-dependency
46. How can you specify the port on which a Spring Boot application runs? * 1 point
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 17/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
47. What is the default Logging implementation offered by Spring Boot? * 1 point
By using Log4j
By using Logback
By using SLF4J
48. Which annotation Spring Boot provides for Integration testing? * 1 point
@SpringBootTest annotation
@WebMvcTest annotation
@DataJpaTest annotation
49. What is the difference between PUT and PATCH in REST API? * 1 point
PUT completely update an existing resource, while PATCH modifies only the fields specified in
the request body
PUT is used to update the resource, while PATCH is used to create a resource
PUT is used to delete the resource, while PATCH is used to update the resource
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 18/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 19/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
53. Which of the following operations can we do with the NodeJS events module? * 1 point
Create
Listen for
Fire
Global
Local
Local to Object
55. ________ can be used for batch processing of data and aggregation operations. * 1 point
Hive
Oozie
MapReduce
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 20/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
56. NoSQL databases is used mainly for handling large volumes of ________ data. * 1 point
structured
semi-structured
unstructured
57. How can you read command-line arguments in a Node.js application? * 1 point
argv
process.args
arguments
process.argv
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 21/22
6/22/24, 11:50 AM R19CS206 - Full Stack Development / R19CS653 - Full Stack Technologies
59. Which Node.js method is used to delay the execution of a function? * 1 point
process.delay()
setTimeout()
wait()
sleep()
#include 'module-name'
require('module-name')
using module-name
Forms
https://docs.google.com/forms/d/1j97oD1J3pX2pFrVpFBCNqeh-qG5hDqRUie2Tsy3ngRk/edit?hr_submission=ChkIgri6qd4QEhAI1Kiru6MUEgc… 22/22