In which section of the html page must the meta tags be included?
<head>
Name of the root element in a HTML document
html
What is the web server that we are using?
Apache server
What is the name for the type of development that deals with the unseen processes that create, store, and transfer information from the server to your browser?
Back-End Development
What is the PHP configuration file?
php.ini
Tag for a definition list
dl
Attribute in the form elements that must be equal to the "for" attribute in the label tag
id
What is the name for the type of development that involves creating all the things the user sees on the page when they interact with your site or web application.
Front-End Development
What do we call the person that uses graphic design tools like Photoshop, Illustrator, Sketch, and InDesign to create branding and graphics for the website?
Web Designer
Do we usually program with PHP on the server side or on the client side
On the server side
HTML tag to write CSS code
style
Which attribute must have the same value in the different radio buttons that are grouped together?
name
How do we call the person who is in charge of taking care of the database servers and making sure they run properly?
Database Manager
Is JSP used for programming on the server side or on the client side?
On the server side
What is the parameter that must be set to "On" in php.ini so that the server allows to upload files using a form?
file_uploads
What is the attribute of the form tag where we indicate how the values of the variables are sent to the program that will process them? What is the value of that attribute that indicates that the variables and their values will be sent in the url?
method - get
Tag that defines an input field which allows to introduce several lines of text
textarea
In a three-tier client server architecture (Tier 1: presentation, Tier 2: Business Logic, Tier 3: Data/Resource), indicate which layer corresponds to the web pages, which layer corresponds to a MySQL database and which layer correspond the business logic of the application
web pages: Tier 1, MySQL database Tier 3 and business logic of the application Tier 2
What does LAMP stand for?
Linux, Apache, MySQL, PHP
PHP statement that takes all the text that exists in the specified file and copies it into the current file. It will produce a fatal error and stop the script if the code is no correct
require
Attribute of the form tag that we must specify when uploading files
enctype
Compulsory attributes to be specified in an img tag
src and alt
Indicate a web server software that can work with JSPs
Apache Tomcat
What does XAMPP stand for?
X any operating system, A Apache, M MariaDB, P PHP, P Perl
Write the contents of the href attribute so that it invokes the page index.php sending a GET parameter with the name "option" and the value "print"
href="index.php?option=print"