Bootcamp Questions And Correct Answer with
Rational (100% verified answer) Q & A 2026
/Instant download PDF
1. Which language is primarily used to structure web page content?
A. CSS
B. JavaScript
C. HTML
D. Python
Correct Answer: C. HTML
Rationale: HTML (HyperText Markup Language) provides the structure and layout
of web pages.
2. What is the main purpose of CSS in web development?
A. Database management
B. Styling web pages
C. Server communication
D. Creating APIs
Correct Answer: B. Styling web pages
Rationale: CSS controls colors, fonts, spacing, layouts, and responsiveness of web
pages.
3. Which JavaScript keyword declares a block-scoped variable?
A. var
B. define
C. let
D. constable
Correct Answer: C. let
Rationale: The let keyword creates variables limited to block scope.
, 4. Which HTML tag is used to create a hyperlink?
A. <img>
B. <a>
C. <link>
D. <href>
Correct Answer: B. <a>
Rationale: The anchor tag creates clickable hyperlinks.
5. What does API stand for?
A. Application Programming Interface
B. Automated Program Integration
C. Application Process Integration
D. Advanced Programming Internet
Correct Answer: A. Application Programming Interface
Rationale: APIs allow software applications to communicate with each other.
6. Which HTTP method is commonly used to retrieve data?
A. POST
B. GET
C. DELETE
D. PATCH
Correct Answer: B. GET
Rationale: GET requests are used to fetch resources from servers.
7. Which database is classified as NoSQL?
A. MySQL
B. PostgreSQL
C. MongoDB
D. Oracle
Correct Answer: C. MongoDB
Rationale: MongoDB stores data in flexible document-based collections.
, 8. Which symbol is used for comments in JavaScript?
A. <!-- -->
B. //
C. ##
D. **
Correct Answer: B. //
Rationale: Single-line comments in JavaScript begin with //.
9. What is the purpose of Git?
A. Web hosting
B. Graphic design
C. Version control
D. Database storage
Correct Answer: C. Version control
Rationale: Git tracks changes and supports collaboration in software projects.
10.Which command uploads local Git commits to GitHub?
A. git push
B. git pull
C. git clone
D. git fetch
Correct Answer: A. git push
Rationale: git push sends local repository changes to a remote repository.
11.Which HTML element displays the largest heading?
A. <head>
B. <h6>
C. <heading>
D. <h1>
Correct Answer: D. <h1>
Rationale: <h1> represents the highest-level heading.