Internet Tehnologije 1

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Stefke
S
Stefke
Community Contributor
Quizzes Created: 1 | Total Attempts: 2,183
| Attempts: 2,188
SettingsSettings
Please wait...
  • 1/90 Pitanja

    21.Najpopularniji jezik za razvoj veb aplikacija danas je:

    • C#
    • CGI
    • PHP
Please wait...
Internet Tehnologije 1 - Quiz


Quiz Preview

  • 2. 

    Oznaka strong predstavlja:

    • Blaze naglasavanje I tekst oznacen njome se podrazumevano prikazuje kurzivom

    • Posebno naglasavanje teksta I tekst oznacen njome se prikazuje podebljanim slovima

    Correct Answer
    A. Posebno naglasavanje teksta I tekst oznacen njome se prikazuje podebljanim slovima
    Explanation
    The correct answer is that the "strong" tag represents special emphasis on text, and the text marked with it is displayed in bold.

    Rate this question:

  • 3. 

    Trenutno aktuelna verzija HTML standarda je :

    • 2

    • 4

    • 5

    • 2

    • 3

    Correct Answer
    A. 5
    Explanation
    The correct answer is 5 because it is the current version of the HTML standard.

    Rate this question:

  • 4. 

    Skracenica HTML oznacava

    • HyperTransfer Markup Language

    • HyperText Markup Language

    • HighTech Markup Language

    Correct Answer
    A. HyperText Markup Language
    Explanation
    HTML stands for HyperText Markup Language. It is a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on web pages. The term "HyperText" refers to the ability to link and access information through hyperlinks, while "Markup Language" refers to the use of tags to define the structure and presentation of the content. Therefore, the correct answer is HyperText Markup Language.

    Rate this question:

  • 5. 

    Sam html element unutar HTML dokumenta sastoji se iz dva osnovna dela:

    • Tela(body)

    • Zaglavlja(head)

    • Deklaracije tipa dokumenta (Document type declaration, DTD)

    • Linkova ka povezanim CSS I JS fajlovima

    Correct Answer(s)
    A. Tela(body)
    A. Zaglavlja(head)
    Explanation
    The correct answer is that an HTML element within an HTML document consists of two basic parts: the body and the head. The body contains the content that is displayed on the webpage, such as text, images, and links. The head contains meta-information about the webpage, such as the title, character encoding, and links to related CSS and JavaScript files. The declaration of the document type (DTD) is not a part of the HTML element itself, but rather a statement at the beginning of the HTML document that specifies the version of HTML being used.

    Rate this question:

  • 6. 

    Oznaka za dodavanje pasusa u HTML document je:

    • Paragraph

    • Pasus

    • P

    Correct Answer
    A. P
    Explanation
    The correct answer is "p". In HTML, the "p" tag is used to define a paragraph. It is a block-level element that creates a new paragraph and adds spacing before and after the content within the tag. By using the "p" tag, you can structure your text into paragraphs, making it easier to read and understand.

    Rate this question:

  • 7. 

    Pristup sesijskoj memoriji u pHP jeziku vrsi se pomocu:

    • Funkcije session_read($var)

    • Sve definisane promenljive se odmah nalaze u sesijskoj memoriji

    • Promenljive $_SESSION

    Correct Answer
    A. Promenljive $_SESSION
    Explanation
    The correct answer is "promenljive $_SESSION". In PHP, session variables are stored in the $_SESSION superglobal array. This array allows you to access and manipulate session data throughout the duration of a user's session on your website. By using $_SESSION, you can store and retrieve session variables easily.

    Rate this question:

  • 8. 

    Za kodovanje teksta u HTML dokumentima danas je preporuceno koriscenje standard:

    • Unicode

    • ASCII

    • Heksadecimalno

    Correct Answer
    A. Unicode
    Explanation
    Unicode is the recommended standard for encoding text in HTML documents today. It allows for the representation of all characters from various writing systems around the world, making it suitable for multilingual content. ASCII is a limited character encoding system that only represents a small subset of characters used in the English language. Hexadecimal is a numbering system used to represent numbers, but it is not a standard for encoding text in HTML documents.

    Rate this question:

  • 9. 

    Za koriscenje sesijske memorije u pHP jeziku potrebno je:

    • Pozvati funkciju session_start() na pocetku izvrsavanja

    • Instalirati Merncached ekstenziju

    • Kreirati virtualni fajl-sistem u radnoj memoriji

    Correct Answer
    A. Pozvati funkciju session_start() na pocetku izvrsavanja
    Explanation
    To use session memory in PHP language, it is necessary to call the function session_start() at the beginning of execution. This function initializes a new session or resumes an existing session, allowing the use of session variables to store and retrieve data across multiple pages or requests.

    Rate this question:

  • 10. 

    Osnovni atribut HTML oznake img je :

    • Src

    • Alt

    • Title

    • Source

    Correct Answer
    A. Src
    Explanation
    The basic attribute of the HTML tag "img" is "src". This attribute is used to specify the source or location of the image file that should be displayed on the webpage. It is necessary to include the "src" attribute in the "img" tag in order for the image to be properly displayed on the webpage.

    Rate this question:

  • 11. 

    21.Za kodovanje teksta u HTML dokumentima danas je preporuceno koriscenje standard:

    • ASCII

    • Heksadecimalno

    • Unicode

    Correct Answer
    A. Unicode
    Explanation
    Unicode is the recommended standard for encoding text in HTML documents today. Unicode is a character encoding system that supports a wide range of characters from different writing systems around the world. It allows for the representation of characters in various languages, including those with different scripts and symbols. This ensures that text can be displayed accurately and consistently across different platforms and devices, regardless of the language used. Using Unicode allows for greater inclusivity and accessibility in web content.

    Rate this question:

  • 12. 

    U slucaju da je unutar tabele u HTML dokumentu potrebno prosiriti prostiranje celije na vise mesta vertikalno, za to se koristi atribut:

    • Rowspan

    • Merge

    • Merge-v

    Correct Answer
    A. Rowspan
    Explanation
    The correct answer is "rowspan". In HTML tables, the "rowspan" attribute is used to specify how many rows a cell should span vertically. This attribute allows a cell to occupy multiple rows in the table, effectively merging and expanding its vertical space.

    Rate this question:

  • 13. 

    Za dodavanej stavki u numerisane I nenumerisane liste u HTML dokumentima koriste se oznake:

    • Item

    • Li

    • List-item

    Correct Answer
    A. Li
    Explanation
    In HTML documents, the tags used for adding items to numbered and unordered lists are "li" tags. These tags represent list items and are used to create individual items within a list.

    Rate this question:

  • 14. 

    Sam pHP programski jezik se pojavio:

    • 1985

    • 1995

    • 2000

    Correct Answer
    A. 1995
    Explanation
    The correct answer is 1995 because that is the year when the PHP programming language was first introduced. It was created by Rasmus Lerdorf and initially stood for "Personal Home Page," but later became known as "PHP: Hypertext Preprocessor." This server-side scripting language quickly gained popularity for its ability to generate dynamic web pages and has since become one of the most widely used programming languages for web development.

    Rate this question:

  • 15. 

    Pristup sesijskoj memoriji u php jeziku vrsi se pomocu:

    • Funkcije sessions_read($var)

    • Sve definisane promenljive se odmah nalaze u sesijskoj memoriji

    • Promenljive $_SESSION

    Correct Answer
    A. Promenljive $_SESSION
    Explanation
    The correct answer is "promenljive $_SESSION". In PHP, accessing session memory is done using the $_SESSION variable. This variable allows you to store and retrieve data across multiple pages or requests within a session. It provides a way to maintain state and store user-specific information.

    Rate this question:

  • 16. 

    Oznaka za definisanje tabele u HTML dokumentima je:

    • Dodavanje tabela u HTML dokumente nije moguce

    • Table

    • T

    Correct Answer
    A. Table
    Explanation
    The correct answer is "table". In HTML documents, the "table" tag is used to define a table. It is used to create a structure for organizing and displaying tabular data on a webpage.

    Rate this question:

  • 17. 

    Oznaka em predstavlja:

    • Posebno naglasavanje I tekst oznacen njime se prikazuje podebljanim slovima

    • Blaze naglasavanje I tekst oznacen njome se podrazumevano prikazuje kurzivom

    Correct Answer
    A. Blaze naglasavanje I tekst oznacen njome se podrazumevano prikazuje kurzivom
    Explanation
    The correct answer is "blaze naglasavanje I tekst oznacen njome se podrazumevano prikazuje kurzivom". This means that the "em" tag is used for emphasizing text and it is displayed in italics by default.

    Rate this question:

  • 18. 

    U pHP jeziku tip I vrednost promenljive se tokom izvrsavanja mogu menjati

    • Tacno

    • Zavisi od verzije php

    • Netacno

    Correct Answer
    A. Tacno
    Explanation
    In the PHP language, the type and value of a variable can be changed during execution. This means that a variable can initially hold a string value and later be assigned an integer value, for example. This flexibility allows for dynamic and adaptable programming in PHP.

    Rate this question:

  • 19. 

    Oznaka za umetanje grafickog sadrzaja u hipertekstualne dokumente je

    • Img

    • Graph

    • Image

    • Grapich

    Correct Answer
    A. Img
    Explanation
    The correct answer is "img". In HTML, the "img" tag is used to insert graphical content, such as images, into hypertext documents. This tag is followed by attributes that specify the source of the image, its dimensions, and other properties.

    Rate this question:

  • 20. 

    Najjednostavnija sintaksa za definisanje nizova u pHP jeziku je:

    • $boje = ‘crvena’,’plava’,’bela’;

    • $boje=[‘crvena’,’plava’,’bela’];

    • $boje=array(‘crvena’,’plava’,’bela’);

    Correct Answer
    A. $boje=[‘crvena’,’plava’,’bela’];
    Explanation
    The correct answer is $boje=[‘crvena’,’plava’,’bela’]; because it uses the correct syntax for defining an array in PHP. The square brackets [] are used to enclose the elements of the array, and each element is separated by a comma. The elements in this array are strings, indicated by the use of single quotes around each element.

    Rate this question:

  • 21. 

    21.Osnovna jedinica za organizaciju teksta u HTML dokumentu je:

    • Red

    • Poglavlje

    • Paragraf(pasus)

    Correct Answer
    A. Paragraf(pasus)
    Explanation
    The correct answer is "paragraf (pasus)." In HTML, the basic unit for organizing text is a paragraph. A paragraph is used to group related sentences or content together. It is represented by the tag in HTML and is commonly used to structure and format text on a webpage.

    Rate this question:

  • 22. 

    Deklaracija tipa dokumenata (Document type Declaration, DTD) kod 5. Verzije HTML-a je:

    • A

    • B

    • C

    • D

    Correct Answer
    A. D
    Explanation
    The correct answer is "d" because the Document Type Declaration (DTD) in HTML5 is used to define the structure and rules for an HTML document. It specifies the version of HTML being used and provides instructions on how the document should be interpreted by browsers. The DTD helps ensure that the HTML document is valid and can be rendered correctly by different browsers.

    Rate this question:

  • 23. 

    1.Ispravni nacini za prikaz novog reda u HTML dokumentima su:

    • Prekid tekuceg paragrafa I pocetak novog

    • Koriscenjem oznake

    • Unosenjem veceg broja razmaka za popunjavanje prethodnog reda

    • Unosenjem novog reda u izvorni tekst HTML dokumenta

    Correct Answer(s)
    A. Prekid tekuceg paragrafa I pocetak novog
    A. Koriscenjem oznake
    Explanation
    The correct answer is "prekid tekuceg paragrafa I pocetak novog" and "koriscenjem oznake". These are both valid ways to create a new line in HTML documents. The first option involves ending the current paragraph and starting a new one, while the second option involves using the tag to create a line break. Both methods are commonly used in HTML to create new lines and separate content.

    Rate this question:

  • 24. 

    Ispravni nacini za prikaz novog reda u HTML dokumentima su:

    • Prekid tekuceg paragrafa I pocetak novog

    • Koriscenjem oznake

    • Unosenjem veceg broja razmaka za popunjavanje prethodnog reda

    • Unosenjem novog reda u izvorni tekst HTML dokumenta

    Correct Answer(s)
    A. Prekid tekuceg paragrafa I pocetak novog
    A. Koriscenjem oznake
    Explanation
    The correct answer is "prekid tekuceg paragrafa I pocetak novog" and "koriscenjem oznake". These are valid ways to create a new line in HTML documents. The first option suggests using a paragraph break to start a new line, while the second option suggests using the tag to insert a line break directly into the content. Both methods will result in a new line being displayed in the HTML document.

    Rate this question:

  • 25. 

    U slucaju da je unutar tabele u HTML dokumentu potrebno prostiranje jedne celije prosiriti na vise narednih horizontalnih polja za celije, za to se koristi atribut:

    • Merge

    • Colspan

    • Multiple

    Correct Answer
    A. Colspan
    Explanation
    The correct answer is "colspan". In HTML, the "colspan" attribute is used to specify the number of columns that a cell should span horizontally in a table. This attribute allows a single cell to extend across multiple adjacent cells in the same row. By setting the value of "colspan" to a number greater than 1, the cell will merge with the specified number of cells to create a wider cell.

    Rate this question:

  • 26. 

    Ukoliko zelimo da u HTML dokumentu pokazemo sadrzaj: Ako je 3>2, onda je I 2<3 koristimo sledeci html kod:

    • Option 1

    • Option 2

    • Option 3

    Correct Answer
    A. Option 1
    Explanation
    The correct answer is Option 1 because the given HTML code is missing the necessary syntax to display the content "Ako je 3>2, onda je I 2

    Rate this question:

  • 27. 

    Which one do you like?

    • Option 1

    • Option 2

    • Option 3

    Correct Answer
    A. Option 1
  • 28. 

    Za dobijanje kontrole kojom se bira jedna od vise ponudjenih stavni u formularima HTML dokumenanta moguce je koristiti sledeci element

    • Option 1

    • Option 2

    • Option 3

    Correct Answer
    A. Option 3
    Explanation
    The correct answer is Option 3. This is because the question is asking for the element that can be used to select one of the multiple options in HTML forms. Option 3 is the only option that suggests the presence of an HTML element that can achieve this functionality.

    Rate this question:

  • 29. 

    1.Jedan nacin da se informacija o nastaloj gresci pri izvrsavanju pHP funkcije ili iskaza ne prikaze niti zabelezi u fajlu jeste:

    • Uokvirivanje koda zagradama { i }

    • Komentovanje reda u kome se nalazi greska

    • Koriscenje operatora “@”

    Correct Answer
    A. Koriscenje operatora “@”
    Explanation
    The correct answer is "koriscenje operatora “@”" because using the "@" operator before a function or statement in PHP suppresses any error messages or warnings that would normally be displayed. This can be useful in certain situations where you want to ignore errors or handle them in a different way. However, it is generally not recommended to use the "@" operator as it can make debugging and troubleshooting more difficult.

    Rate this question:

  • 30. 

    HTML jezik poseduje predefinisane oznake za koliko nivoa zaglavlja

    • 6

    • 1

    • Nijedan

    Correct Answer
    A. 6
    Explanation
    HTML jezik poseduje predefinisane oznake za 6 nivoa zaglavlja. Ovo znači da se u HTML-u može koristiti 6 različitih oznaka za označavanje naslova ili zaglavlja na stranici. Ove oznake se obično koriste za organizaciju i strukturiranje sadržaja na web stranici, pri čemu se naslovi obično koriste za označavanje važnih delova sadržaja.

    Rate this question:

  • 31. 

    21.Kod poredjenja dve promenljive u pHP jeziku, ukoliko zelimo da poredimo I njihov tip koristicemo:

    • Jedan znak jednakosti

    • Tri znaka jednakosti

    • Dva znaka jednakosti

    Correct Answer
    A. Tri znaka jednakosti
    Explanation
    In PHP, when comparing two variables and we want to compare their type as well, we use three equal signs (===). This is called the "identical" operator. It checks if the values of the two variables are equal and if their types are also the same.

    Rate this question:

  • 32. 

    21.Poseban tip promenljivih u pHP jeziku u kojima se cuvaju uspostavljene veze ka bazi podataka, fajlovima I slicno, nazivaju se:

    • Nizovi elemenata

    • Resursi

    • Objekti kao instance klasa

    • Celobrojna I decimalna vrednost

    • Niz simbola

    • Logicka vrednost

    Correct Answer
    A. Resursi
    Explanation
    In PHP, a special type of variable that is used to store established connections to databases, files, and similar resources is called "resursi". This type of variable is used to hold references to external resources that are needed for the execution of a PHP script. These resources can include database connections, file handles, network sockets, and more. By using "resursi" variables, PHP can manage and manipulate these external resources efficiently and effectively.

    Rate this question:

  • 33. 

    Za dodeljivanje tekstualne oznake kontrolama u formularima HTML dokumenata koristi se oznaka:

    • Caption

    • Label

    • Legend

    Correct Answer
    A. Label
    Explanation
    The correct answer is "label". In HTML forms, the "label" tag is used to assign a textual label to form controls such as input fields, checkboxes, and radio buttons. This label helps in providing a description or name for the associated control, making it more accessible and user-friendly. It also allows users to click on the label to select the associated control, improving the overall usability of the form.

    Rate this question:

  • 34. 

    Dva osnovna (korena) elementa koje HTML document mora da sadrzi su:

    • Veza ka CSS definiciji prikaza

    • Html element

    • Informacija o nacinu kodovanja

    • Deklaracija njegovog tipa

    • Link ka susednom dokumentu

    Correct Answer(s)
    A. Html element
    A. Deklaracija njegovog tipa
    Explanation
    An HTML document must contain an HTML element, which serves as the root element of the document. This element encapsulates the entire content of the document. Additionally, the document must include a declaration of its type, which specifies that it is an HTML document. These two elements are essential for creating a valid HTML document.

    Rate this question:

  • 35. 

    Pristup je kod koga klijent server salje standardan zahtev odredjenim sadrzajem, a taj zahtev se obradjuje odgovarajucom programskom procedurom na serveru, naziva se:

    • Programska isporuka sadrzaja

    • Dinamicko kreiranje sadrzaja

    • Staticko kreiranje sadrzaja

    Correct Answer
    A. Dinamicko kreiranje sadrzaja
    Explanation
    The correct answer is "dinamicko kreiranje sadrzaja". This term refers to the approach where the server processes a standard request from the client and generates the content dynamically using a corresponding programming procedure. Unlike static content creation, where the content is pre-defined and does not change based on the request, dynamic content creation allows for personalized and real-time generation of content based on the specific request.

    Rate this question:

  • 36. 

    Dva osnovna metoda HTTP protokola za slanje sadrzaja HTML formulara su:

    • SUBMIT

    • GET

    • SEND

    • POST

    Correct Answer(s)
    A. GET
    A. POST
    Explanation
    The correct answer is GET and POST. These are the two basic methods used in the HTTP protocol for sending the content of an HTML form. The GET method is used to retrieve data from the server, while the POST method is used to send data to the server for processing. Both methods have their own advantages and use cases, and they are commonly used in web development to handle form submissions.

    Rate this question:

  • 37. 

    Za kreiranje hiper-veza u HTML dokumentima koristi se oznaka :

    • A

    • Link

    • Hyperlink

    Correct Answer
    A. A
    Explanation
    The correct answer is "a". In HTML documents, the anchor tag () is used to create hyperlinks. It is used to define a hyperlink, which allows users to navigate to another webpage or a specific section within the same webpage. By specifying the URL or the destination page within the href attribute of the anchor tag, a hyperlink is created.

    Rate this question:

  • 38. 

    Za dodavanje nenumerisanjih listi u HTML dokumente koristi se oznaka:

    • Ul

    • List

    • Ol

    Correct Answer
    A. Ul
    Explanation
    The correct answer is "ul". In HTML, the "ul" tag is used to create an unordered list. This tag is used to group related items together without any specific order or sequence. The "ul" tag is commonly used in conjunction with "li" tags, which represent individual list items within the unordered list.

    Rate this question:

  • 39. 

    Za unos lozinke putem formulara u HTML dokumentima koristi se sledeca kombinacija oznake I atributa:

    • Option 1

    • Option 2

    • Option 3

    • Option 4

    Correct Answer
    A. Option 2
    Explanation
    The correct answer is Option 2 because in HTML documents, the combination of the form tag and the input tag with the type attribute set to "password" is used for password input. This allows users to enter sensitive information in a secure manner, as the characters entered are masked or hidden from view.

    Rate this question:

  • 40. 

    Za povezivanje HTML dokumenta sa sastavnim resursima samog dokumenta (slike, CSS definicije, javaScript dokumenti I sl.) prvenstveno se koriste:

    • Linkovi na nivou fajl-sistema

    • Instrukcije u telu dokumenta

    • Instrukcije u zaglavlju dokumenta

    Correct Answer
    A. Instrukcije u zaglavlju dokumenta
    Explanation
    The correct answer is "instrukcije u zaglavlju dokumenta" because to connect an HTML document with its constituent resources (images, CSS definitions, JavaScript documents, etc.), the instructions are primarily placed in the document's header. This is typically done using the element to specify the external CSS file or the element to specify the external JavaScript file. This allows the browser to load and apply these resources before rendering the rest of the document's content.

    Rate this question:

  • 41. 

    . Sablonizatori su softverske komponente koje omogucavaju da se :

    • Definicija logike aplikacije cuva odvojeno od definicije prikaza

    • Veb aplikacija brzo razvije po vec ustaljenom modelu(sablonu) Ovo je najverovatnije, jer stvarno nemam pojma sta je sablonizator, ne znam sta su ovo preveli, mislim da je template engine.

    • U novim veb aplikacijama koriste vec razvijene biblioteke

    Correct Answer
    A. Veb aplikacija brzo razvije po vec ustaljenom modelu(sablonu) Ovo je najverovatnije, jer stvarno nemam pojma sta je sablonizator, ne znam sta su ovo preveli, mislim da je template engine.
    Explanation
    A template engine, or a "sablonizator" in this context, is a software component that allows the separation of application logic from the presentation. It enables the rapid development of web applications based on established templates or models. This answer suggests that using a template engine allows for the quick development of web applications based on established templates or models, which aligns with the explanation of what a template engine does.

    Rate this question:

  • 42. 

    Deklaracija tipa dokumenta(Document Type Declaration, DTD) sluzi da veb brauzeru klijenta pruzi informaciju:

    • Da je u pitanju tekstualni dokument

    • Kom tipu/verziji HTML je rec

    • Sa kog internet domena je ucitan document

    Correct Answer
    A. Kom tipu/verziji HTML je rec
    Explanation
    The correct answer is that the Document Type Declaration (DTD) provides information to the client's web browser about the type/version of HTML being used in the document.

    Rate this question:

  • 43. 

    21.Primer HTML elementa koji u sebi moze da sadrzi druge elemente je

    • Br

    • Hr

    • Ul

    Correct Answer
    A. Ul
    Explanation
    The correct answer is "ul" because the "ul" element in HTML represents an unordered list. This means that it can contain other elements such as list items ("li") within it. The "br" element represents a line break, the "hr" element represents a horizontal rule, and they cannot contain other elements. Therefore, the "ul" element is the only option that fits the description.

    Rate this question:

  • 44. 

    21.Sledeci pHP kod:$ime = “Petar”;$pp = “ime”;Echo $$pp; ce ispisati 

    • Pp

    • Petar

    • Ime

    Correct Answer
    A. Petar
    Explanation
    The given PHP code assigns the string "Petar" to the variable $ime and the string "ime" to the variable $pp. The expression $$pp is a variable variable, which means that it takes the value of the variable whose name is stored in $pp. In this case, the value of $pp is "ime", so $$pp is equivalent to $ime. Therefore, when the code is executed, it will output "Petar".

    Rate this question:

  • 45. 

    21.Dva osnovna (korena) elementa koje HTML document mora da sadrzi su:

    • Veza ka CSS definiciji prikaza

    • Html element

    • Informacija o nacinu kodovanja

    • Deklaracija njegovog tipa

    • Link ka susednom dokumentu

    Correct Answer(s)
    A. Html element
    A. Deklaracija njegovog tipa
    Explanation
    The correct answer is "html element, deklaracija njegovog tipa". An HTML document must contain the "html" element, which serves as the root element of the document. It encapsulates all other elements within it. Additionally, the document must include the "deklaracija njegovog tipa" (doctype declaration), which specifies the version of HTML being used and helps the browser interpret the document correctly. These two elements are essential for a valid HTML document.

    Rate this question:

  • 46. 

    Razlika izmedju naredbi include() I require() u pHP jeziku ogleda se u tome:

    • Funkcije su identicne

    • Da li ce trazeni fajl biti odmah ili kasnije ukljucen u izvrsavanje

    • Da li ce program nastaviti izvrsavanje ako nema trazenog fajla

    Correct Answer
    A. Da li ce program nastaviti izvrsavanje ako nema trazenog fajla
    Explanation
    The difference between the include() and require() statements in PHP is that require() will cause a fatal error and stop the execution of the program if the requested file is not found, while include() will only produce a warning and allow the program to continue running.

    Rate this question:

  • 47. 

    Za dobijanje kontrole kojom se u formularu HTML dokumenta unosi vise redova teksta koristi se oznaka:

    • Option 1

    • Option 2

    • Option 3

    Correct Answer
    A. Option 2
    Explanation
    The correct answer is Option 2. Option 2 is not provided in the question, so it is not possible to provide an explanation for the correct answer.

    Rate this question:

  • 48. 

    1.Primer komentara u HTML dokumentu je :

    • A

    • B

    • C

    • D

    • E

    Correct Answer
    A. C
    Explanation
    The correct answer is "c". The first comment in an HTML document is indicated by the opening tag . Comments are used to add notes or explanations to the code that are not visible on the webpage.

    Rate this question:

  • 49. 

    Oznaka za eksponentni tekst je:

    • Sub

    • Sup

    • Em

    • Strong

    Correct Answer
    A. Sup
    Explanation
    The correct answer is "sup" because the "sup" tag is used in HTML to represent superscript text, which is a smaller font size and positioned above the baseline. This is commonly used for mathematical equations, footnotes, and citations.

    Rate this question:

Quiz Review Timeline (Updated): Mar 22, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 22, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Jun 03, 2017
    Quiz Created by
    Stefke
Back to Top Back to top
Advertisement
×

Wait!
Here's an interesting quiz for you.

We have other quizzes matching your interest.