Temas Flashcards

1
Q

What does HTML stand for?

A

HyperText Markup Language

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Which HTML tag is used to create a hyperlink?

A

<a></a>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the purpose of the <head> tag in HTML?

A

To contain meta-information about the document

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

True or False: Git is a version control system.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What command is used to initialize a new Git repository?

A

git init

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Fill in the blank: In Git, the command ‘git _______’ is used to stage changes.

A

add

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the primary function of a CMS?

A

To manage and publish content on the web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What does POO stand for in programming?

A

Programación Orientada a Objetos (Object-Oriented Programming)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is a class in object-oriented programming?

A

A blueprint for creating objects

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What does ORM stand for?

A

Object-Relational Mapping

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

True or False: Django is a Python web framework.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the purpose of Django’s ‘manage.py’?

A

To manage Django projects and apps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a template in Django?

A

A text file that defines the structure of an HTML page

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Fill in the blank: In Django, an _______ is a web application that is part of a larger project.

A

app

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the main purpose of an API?

A

To allow different software applications to communicate with each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does MongoDB use to store data?

A

Documents in a flexible, JSON-like format

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

True or False: JWT stands for JSON Web Token.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the main use of JWT?

A

To securely transmit information between parties as a JSON object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

Which command is used to commit changes in Git?

A

git commit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What is the purpose of the <body> tag in HTML?

A

To contain the content of the webpage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Fill in the blank: In Django, the _______ file is used for database configuration.

A

settings.py

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What does the ‘git clone’ command do?

A

Creates a copy of a remote repository on your local machine

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What is a primary key in a database?

A

A unique identifier for a record in a table

24
Q

True or False: HTML is a programming language.

25
What is the function of the
tag in HTML?
To create an interactive form for user input
26
What is the purpose of a migration in Django?
To apply changes to the database schema
27
What command is used to create a new Django app?
python manage.py startapp
28
Fill in the blank: In Git, 'git _______' is used to view the commit history.
log
29
What is the role of a view in Django?
To handle the logic for a web request and return a response
30
Which HTML element is used to define an unordered list?
31
What does the acronym REST stand for in web services?
Representational State Transfer
32
What is the purpose of the 'requirements.txt' file in a Django project?
To list the dependencies required for the project
33
True or False: MongoDB is a relational database.
False
34
What is the primary benefit of using JWT for authentication?
It allows stateless authentication, reducing server load
35
What command is used to push changes to a remote Git repository?
git push
36
What does the tag do in HTML?
Displays an image on a webpage
37
What is the purpose of serializers in Django REST framework?
To convert complex data types to native Python data types
38
Fill in the blank: In Django, the _______ is used to define URL patterns.
urls.py
39
What is the difference between a class and an object?
A class is a blueprint, while an object is an instance of a class.
40
True or False: Git branches allow you to work on different versions of a project.
True
41
What is a foreign key in a database?
A field in one table that links to the primary key of another table
42
What does the 'git fetch' command do?
Retrieves changes from a remote repository without merging them
43
What is the purpose of Django's admin interface?
To provide a web-based interface for managing site content
44
Fill in the blank: In HTML, the _______ attribute specifies an image's alternative text.
alt
45
What is the purpose of the 'context' in Django templates?
To pass data from views to templates
46
Which command is used to create a new branch in Git?
git branch
47
What is the significance of the 'self' parameter in Python class methods?
It refers to the instance of the class.
48
True or False: MongoDB uses SQL for querying data.
False
49
What is the main advantage of using a template engine like Django's?
It separates presentation from business logic.
50
Fill in the blank: In Git, 'git _______' is used to remove files from the staging area.
reset
51
What does the 'views.py' file typically contain in a Django app?
The business logic and view functions for the app
52
What is the main function of a RESTful API?
To expose resources over HTTP.
53
What is the purpose of the tag in HTML? </div> </div> <div class='card-face answer'> <div class='answer-content'> To define the title of the document shown in the browser's title bar </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":54,"qSoundUrl":null,"resources":{"deckId":18537306,"packId":22796822,"cardId":584097673},"returnTo":"/packs/22796822/subscribe"}' id='card-584097673'> <div class='header'> 54 </div> <div class='card-face question'> <div class='question-content'> True or False: JWTs are always stored in cookies. </div> </div> <div class='card-face answer'> <div class='answer-content'> False </div> </div> </div> <div class='flashcard-row thin-card is-blurrable' data='{"aSoundUrl":null,"cardIsBlurrable":true,"number":55,"qSoundUrl":null,"resources":{"deckId":18537306,"packId":22796822,"cardId":584097674},"returnTo":"/packs/22796822/subscribe"}' id='card-584097674'> <div class='header'> 55 </div> <div class='card-face question'> <div class='question-content'> What is the purpose of the <script> tag in HTML? </div> </div> <div class='card-face answer'> <div class='answer-content'> To include JavaScript code in a webpage </div> </div> </div> </div> </div> </div> <div class='flashcards-sidebar'> <div class='sidebar-header'> <div class='react-component' id='flashcards-search-bar'> <div class='placeholder market-search-bar' id='flashcards-search-bar-placeholder'></div> </div> </div> <div class='sidebar-content'> <p class='deck-subject-heading'> <a class="decks-in-subject-link" href="/packs/ingenieroa-web-parcial-1-22796822"><span class="pack-name">Ingenieroa Web Parcial 1</span> (4 decks) </a></p> <ul class='deck-list-items'> <a class='deck-link selected' href='/flashcards/temas-18537306/packs/22796822'> <li class='deck-list-item'>Temas</li> </a> <a class='deck-link ' href='/flashcards/git-18538196/packs/22796822'> <li class='deck-list-item'>Git</li> </a> <a class='deck-link ' href='/flashcards/poo-18538199/packs/22796822'> <li class='deck-list-item'>Poo</li> </a> <a class='deck-link ' href='/flashcards/general-18538535/packs/22796822'> <li class='deck-list-item'>General</li> </a> </ul> </div> </div> </div> <div id='tooltip-controller'></div> <div data='{"packId":22796822,"source":"spaced-repetition-modal","subject":"Ingenieroa Web Parcial 1","resources":{"deckId":18537306,"packId":22796822},"returnTo":"/packs/22796822/subscribe"}' id='spaced-repetition-modal-controller'></div> <div id='banner-controller'></div> <div id='dialog-modal-controller'></div> <div class='band band-footer'> <div class='footer-main'> <ul class='sections'> <li class='section key-links'> <p class='section-heading'> Key Links </p> <ul class='options-list'> <li class='option'> <a id="footer-pricing-link" class="option-link" href="/pricing?paywall=upgrade">Pricing</a> </li> <li class='option'> <a class="option-link" href="/companies">Corporate Training</a> </li> <li class='option'> <a class="option-link" href="/teachers">Teachers & Schools</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://itunes.apple.com/us/app/brainscape-smart-flashcards/id442415567?mt=8">iOS App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="nofollow noopener noreferrer" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal">Android App</a> </li> <li class='option'> <a class="option-link" target="_blank" rel="noopener" href="https://www.brainscape.com/faq">Help Center</a> </li> </ul> </li> <li class='section subjects'> <p class='section-heading'> Subjects </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/subjects/medical-nursing">Medical & Nursing</a> </li> <li class='option'> <a class="option-link" href="/subjects/law">Law Education</a> </li> <li class='option'> <a class="option-link" href="/subjects/foreign-languages">Foreign Languages</a> </li> <li class='option'> <a class="option-link" href="/subjects-directory/a">All Subjects A-Z</a> </li> <li class='option certified-classes'> <a class="option-link" href="/learn">All Certified Classes</a> </li> </ul> </li> <li class='section company'> <p class='section-heading'> Company </p> <ul class='options-list'> <li class='option'> <a class="option-link" href="/about">About Us</a> </li> <li class='option'> <a target="_blank" class="option-link" rel="nofollow noopener noreferrer" href="https://brainscape.zendesk.com/hc/en-us/articles/115002370011-Can-I-earn-money-from-my-flashcards-">Earn Money!</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy">Academy</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://brainscapeshop.myspreadshop.com/all">Swag Shop</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/contact">Contact</a> </li> <li class='option'> <a target="_blank" rel="nofollow noopener" class="option-link" href="/terms">Terms</a> </li> <li class='option'> <a target="_blank" class="option-link" href="https://www.brainscape.com/academy/brainscape-podcasts/">Podcasts</a> </li> <li class='option'> <a target="_blank" class="option-link" href="/careers">Careers</a> </li> </ul> </li> <li class='section find-us'> <p class='section-heading'> Find Us </p> <ul class='social-media-list'> <li class='option twitter-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://twitter.com/Brainscape"><img data-src="/pks/images/shared/twitterx-af917e8b474ed7c95a19.svg" alt="twitter badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option linkedin-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.linkedin.com/company/brainscape/"><img data-src="/pks/images/shared/linkedin-2f15819658f768056cef.svg" alt="linkedin badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option facebook-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.facebook.com/Brainscape"><img data-src="/pks/images/shared/facebook-1598a44227eabc411188.svg" alt="facebook badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option youtube-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.youtube.com/c/BrainscapeNY"><img data-src="/pks/images/shared/youtube-7f2994b2dc1891582524.svg" alt="youtube badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option pinterest-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.pinterest.com/brainscape/"><img data-src="/pks/images/shared/pinterest-04f51aa292161075437b.svg" alt="pinterest badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option tiktok-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.tiktok.com/@brainscapeu"><img data-src="/pks/images/shared/tiktok-644cf4608bd73fbbb24f.svg" alt="tiktok badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> <li class='option insta-badge group'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://www.instagram.com/brainscape/"><img data-src="/pks/images/shared/insta-210cc2d059ae807961d2.svg" alt="insta badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="24" height="24" /></a> </li> </ul> <div class='get-the-app'> <div class='qr-code'> <img data-src="https://www.brainscape.com/assets/cms/public-views/shared/shortio-from-homepage.png" alt="QR code" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="130" height="130" /> </div> <div class='app-badges'> <div class='badge apple-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://apps.apple.com/us/app/brainscape-smart-flashcards/id442415567"><img data-src="/pks/images/shared/apple-badge-b6e4f380fb879821d601.svg" alt="apple badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> <div class='badge android-badge'> <a rel="nofollow noopener noreferrer" target="_blank" class="option-link" href="https://play.google.com/store/apps/details?id=com.brainscape.mobile.portal&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1"><img data-src="/pks/images/shared/android-badge-a2251833dc7f6ca8879c.svg" alt="android badge" class="lazy-load" src="/pks/images/shared/placeholder-2f8e0834f3c4456dc1cc.jpg" width="124" height="50" /></a> </div> </div> </div> </li> </ul> </div> <div class='footer-blurb'> Brainscape helps you reach your goals faster, through stronger study habits. <br> © 2025 Bold Learning Solutions. <a class="option-link" href="/terms">Terms and Conditions</a> </div> </div> <script> if (typeof window.__REACT_DEVTOOLS_GLOBAL_HOOK__ === 'object') { __REACT_DEVTOOLS_GLOBAL_HOOK__.inject = function() {}; } </script> <script> window.addEventListener('load', () => { setTimeout(() => { const script = document.createElement('script'); script.src = "/pks/js/public-flashcards-page-9140413b5150ce9700f9.js"; script.defer = true; document.body.appendChild(script); }, 0); }); </script> <script src="https://appleid.cdn-apple.com/appleauth/static/jsapi/appleid/1/en_US/appleid.auth.js" defer="defer"></script> <script> document.addEventListener("mainSharedready", () => { GaHelper.setGaDimension("dimension1","No"); }); </script> <script type='application/ld+json'> {"@context":"https://schema.org/","@type":"Quiz","about":{"@type":"Thing","name":"Temas"},"hasPart":[{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does HTML stand for?","acceptedAnswer":{"@type":"Answer","text":"HyperText Markup Language"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which HTML tag is used to create a hyperlink?","acceptedAnswer":{"@type":"Answer","text":""}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of the tag in HTML?","acceptedAnswer":{"@type":"Answer","text":"To contain meta-information about the document"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: Git is a version control system.","acceptedAnswer":{"@type":"Answer","text":"True"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What command is used to initialize a new Git repository?","acceptedAnswer":{"@type":"Answer","text":"git init"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Fill in the blank: In Git, the command 'git _______' is used to stage changes.","acceptedAnswer":{"@type":"Answer","text":"add"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the primary function of a CMS?","acceptedAnswer":{"@type":"Answer","text":"To manage and publish content on the web"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does POO stand for in programming?","acceptedAnswer":{"@type":"Answer","text":"Programación Orientada a Objetos (Object-Oriented Programming)"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is a class in object-oriented programming?","acceptedAnswer":{"@type":"Answer","text":"A blueprint for creating objects"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does ORM stand for?","acceptedAnswer":{"@type":"Answer","text":"Object-Relational Mapping"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: Django is a Python web framework.","acceptedAnswer":{"@type":"Answer","text":"True"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of Django's 'manage.py'?","acceptedAnswer":{"@type":"Answer","text":"To manage Django projects and apps"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is a template in Django?","acceptedAnswer":{"@type":"Answer","text":"A text file that defines the structure of an HTML page"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Fill in the blank: In Django, an _______ is a web application that is part of a larger project.","acceptedAnswer":{"@type":"Answer","text":"app"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the main purpose of an API?","acceptedAnswer":{"@type":"Answer","text":"To allow different software applications to communicate with each other"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does MongoDB use to store data?","acceptedAnswer":{"@type":"Answer","text":"Documents in a flexible, JSON-like format"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"True or False: JWT stands for JSON Web Token.","acceptedAnswer":{"@type":"Answer","text":"True"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the main use of JWT?","acceptedAnswer":{"@type":"Answer","text":"To securely transmit information between parties as a JSON object"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Which command is used to commit changes in Git?","acceptedAnswer":{"@type":"Answer","text":"git commit"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What is the purpose of the tag in HTML?","acceptedAnswer":{"@type":"Answer","text":"To contain the content of the webpage"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"Fill in the blank: In Django, the _______ file is used for database configuration.","acceptedAnswer":{"@type":"Answer","text":"settings.py"}},{"@context":"https://schema.org/","@type":"Question","eduQuestionType":"Flashcard","text":"What does the 'git clone' command do?","acceptedAnswer":{"@type":"Answer","text":"Creates a copy of a remote repository on your local machine"}}],"educationalAlignment":[{"@type":"AlignmentObject","alignmentType":"educationalSubject","targetName":"Temas"}]} </script> </body> </html>