Ispit-uit

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 Fiip
F
Fiip
Community Contributor
Quizzes Created: 1 | Total Attempts: 2,782
| Attempts: 2,782 | Pitanja: 75
Please wait...

Question 1 / 75
0 %
0/100
Score 0/100
1. Za ubacivane audio fajlova koristi se koji html5 tag:

Explanation

The correct answer is "audio." The HTML5 tag used for inserting audio files is the "audio" tag. This tag allows the user to embed audio content in a webpage, making it possible to play audio files directly on the website.

Submit
Please wait...
About This Quiz
Ispit-uit - Quiz

2. CSS je skracenica od:

Explanation

CSS stands for Cascading Style Sheets. It is a style sheet language used for describing the presentation of a document written in HTML or XML. It is used to define the layout, colors, fonts, and other visual aspects of a web page. The term "cascading" refers to the way CSS rules are applied, where multiple style sheets can be used and their styles can be combined and overridden to create a cascading effect.

Submit
3. Koji atribut definise tekst koji ce biti prikazan umesto slike u koliko ona ne moze biti prikazana:

Explanation

The correct answer is "alt". This attribute defines the alternative text that will be displayed instead of an image if it cannot be shown.

Submit
4. Oznaciti ispravan nacin za dodavanje tekstualnog polja unutar stranice:

Explanation

The correct answer is "input type="text". This is the correct way to add a text field within a webpage. The "input" tag is used to create an input field, and the "type" attribute specifies the type of input field, in this case "text" indicating a text field.

Submit
5. Oznaciti tacan nacin za kriranje linkova u html-u:

Explanation

tag a ide izmedju

Submit
6. <target> t  e k s t </target> Koji tag treba koristiti da bi smo dobili prikaz t  e k s t, tj. da bi tekst bio prikazan na ekranu bez izmena u pogledu praznina:

Explanation

The "pre" tag should be used to display the text "t e k s t" without any changes in terms of spaces. The "pre" tag preserves the formatting of the text, including spaces and line breaks, and displays it exactly as it appears in the HTML code.

Submit
7. CSS stil se moze primeniti i na body element, npr:<style>           body{font-size: 100% ;}</style>

Explanation

The given code snippet demonstrates the application of CSS to the body element. The style tag contains a CSS rule that sets the font size of the body element to 100%. Therefore, the statement "tacno" is correct as CSS can indeed be applied to the body element.

Submit
8. kod XML,pri zadavanju vrednosti atributa moguce je koristiti

Explanation

When entering a value for an attribute in XML, it is possible to use both single and double quotation marks. This means that both types of quotation marks can be used interchangeably when assigning a value to an attribute in XML.

Submit
9. dobro poznati portovi se nalaze u opsegu:

Explanation

The correct answer is 0-1023. This range refers to the well-known ports, which are standardized ports commonly used for specific network services. These ports are reserved for the most commonly used protocols such as HTTP (port 80), FTP (port 21), and SSH (port 22).

Submit
10. selektor korisit ID elementa,npr id="podnaslov",na sledeci nacin:

Explanation

The given answer, #podnaslov, is the correct CSS selector for selecting an element with the ID "podnaslov". In CSS, the "#" symbol is used to select elements by their ID attribute. So, by using #podnaslov, the CSS will target and apply styles to the element with the ID "podnaslov".

Submit
11. koja vrednost ce biti prikazana?  function() {                    if(true){                     var a = 5;                    }alert(a);} 

Explanation

The value that will be displayed is 5. This is because the variable "a" is declared inside the if statement, but it is still accessible outside of the if statement due to function scope. Therefore, when the alert function is called, it will display the value of "a", which is 5.

Submit
12. XML je skacenica od:

Explanation

XML stands for Extensible Markup Language. It is a markup language that is designed to store and transport data. XML allows users to define their own customized tags, making it flexible and adaptable to different types of data. It is widely used in web development, data storage, and data exchange between different systems.

Submit
13. kod elemenata koji koriste apsolutno pozicioniranje moze doci do medjusobnog preklapanja

Explanation

Elements that use absolute positioning can overlap with each other. This is because when an element is positioned absolutely, it is taken out of the normal flow of the document and positioned based on its nearest positioned ancestor. This allows elements to be placed anywhere on the page, potentially causing them to overlap with other elements if their positions are not properly managed.

Submit
14. U kom tagu se definisu informacije o dokumentu koje ga bolje opisuju:

Explanation

The tag that defines information about a document and provides a better description of it is the "meta" tag. This tag is used to provide metadata about the HTML document, such as author, keywords, and description. It helps search engines and other tools understand the content and purpose of the document.

Submit
15. Koji od navedenih svojstva moze imati sledece vrednosti: flex-start, flex-end, center, space-between, space-round?

Explanation

The correct answer is "justify-content". This property determines how the flex items are positioned along the main axis of the flex container. The values "flex-start", "flex-end", "center", "space-between", and "space-round" are all possible values for the justify-content property.

Submit
16. kom modelu je HTML dokument sa svojim sadrzajem predstavljen u obliku cvorova koji su hijerarhijski organizovani

Explanation

The given answer is correct because it states that in the DOM model, an HTML document with its content is represented as a hierarchy of nodes. The DOM (Document Object Model) is a programming interface for HTML and XML documents, which represents the structure of the document as a tree-like model where each element, attribute, and text is represented as a node. This hierarchical organization allows for easy traversal and manipulation of the document's structure and content.

Submit
17. oznaciti ispravan nacin za definisanje JavaScript niza:

Explanation

The correct answer is var colors= ["red", "green", "blue"]. This is the correct way to define a JavaScript array. The array is enclosed in square brackets and each element is separated by a comma. The elements themselves are strings, denoted by double quotation marks.

Submit
18. Stavke u vertiklanom meniju se definisu kao block elementi:

Explanation

The statement is saying that the items in the vertical menu are defined as block elements. This means that each item in the menu will take up the full width available and start on a new line. This is in contrast to inline elements, which would appear next to each other on the same line. Therefore, the correct answer is "tacno" (true).

Submit
19. ako se svojstvo background-size postavi na vrednost "contain" slika ce sacuvati "aspect ratio" tj. proporcionalnost izmedju sirine i visine:

Explanation

When the background-size property is set to "contain", it means that the image will be scaled to fit within the container while maintaining its aspect ratio. This means that the image will not be distorted or stretched, but rather resized proportionally so that both the width and height are within the container. Therefore, the statement "ako se svojstvo background-size postavi na vrednost 'contain' slika ce sacuvati 'aspect ratio' tj. proporcionalnost izmedju sirine i visine" is correct.

Submit
20. koji tag koristimo kada pisemo JavaScript kod u HTML dokumentu?

Explanation

When writing JavaScript code in an HTML document, we use the "script" tag. This tag is used to define a section of JavaScript code within an HTML document. By enclosing the JavaScript code within the "script" tags, the browser knows that it should interpret the content as JavaScript code. This allows us to add interactivity and functionality to our web pages.

Submit
21. Napisati JavaSvript tip za brojeve?

Explanation

The correct answer is "number" because in JavaScript, "number" is a data type that represents numeric values. It can be used to store and manipulate numerical data such as integers and floating-point numbers.

Submit
22. Koja vrednost vraca sledeci JavaScript boolean ("false")?

Explanation

The given JavaScript statement is evaluating the boolean value of the string "false". In JavaScript, any non-empty string is considered truthy, so the boolean value of "false" is true.

Submit
23. oznaciti relativnu jedinicu mere

Explanation

The correct answer is "em". "em" is a relative unit of measurement commonly used in typography. It is equal to the current font size, making it a flexible unit that adjusts automatically with the font size. This allows for consistent spacing and proportions within a document or webpage.

Submit
24. Oznaciti ispravnu JavaScript sintaksu za menjanje sadrzaja datog html elementa:<p id="demo">This is demonstration.</p>

Explanation

The correct answer is "document.getElementById("demo")innerhtml."Hello world";" because it uses the correct method, getElementById, to select the HTML element with the id "demo". It then uses the innerHTML property to change the content of the selected element to "Hello world".

Submit
25. podrazumevana vrednost svojstva background-repeat je repeat?

Explanation

The given statement is correct. The default value for the background-repeat property is "repeat". This means that the background image will be repeated both horizontally and vertically to cover the entire element.

Submit
26. Mapiranje slike se izvodi pomocu kog atributa img taga:

Explanation

The correct answer is "usemap". When mapping an image, the "usemap" attribute of the img tag is used. This attribute specifies an image map to be used with the image. An image map allows different areas of an image to be clickable, leading to different destinations or actions. By specifying the "usemap" attribute and providing the corresponding map element, the image can be mapped and interactive regions can be defined.

Submit
27. u XML se cuva prazan prostor izmedju karaktera,sto sa html nije slucaj

Explanation

XML se koristi za čuvanje i razmenu podataka, a jedna od njegovih karakteristika je da čuva prazan prostor između karaktera. Ovo znači da se svi razmaci, tabulatori, prelazi u novi red i slično, koji se nalaze između karaktera, zadržavaju i ne gube se prilikom čuvanja XML dokumenta. Sa druge strane, u HTML-u prazan prostor između karaktera se obično zanemaruje i ne čuva se prilikom čuvanja HTML dokumenta.

Submit
28. koje svojstvo se koristi za iskljucivanje svojstva float:

Explanation

The property "clear" is used to remove the floating property from an element. This property is commonly used when there are floated elements in a container and we want to prevent subsequent elements from wrapping around them. By applying the "clear" property, we can ensure that the following elements are displayed below the floated elements rather than beside them.

Submit
29. ip protokol je protokol koji optimizuje isporuke svih paketa,pa je moguce da paketi do odredista stignu u drugacijem redosledu nego sto su poslati?

Explanation

not-available-via-ai

Submit
30. oznaciti tacan oblik XML deklaracije

Explanation

The correct answer is "?xml version="1.0"?" because it follows the correct syntax for declaring the XML version. The question mark at the beginning and end of the declaration indicate that it is a processing instruction and the version attribute is set to "1.0", which is the correct format for declaring the XML version.

Submit
31. Ko je uvek pojam responsive web design?:

Explanation

The correct answer is Ethan Marccote because he is always associated with the concept of responsive web design.

Submit
32. JavaScript kod mozemo pisati samo unutar head sekcije HTML dokumenta?

Explanation

JavaScript kod možemo pisati i unutar head sekcije i unutar body sekcije HTML dokumenta. Opcija "netacno" je tačna jer je moguće pisati JavaScript kod i unutar body sekcije, obično na kraju dokumenta prije zatvaranja body taga.

Submit
33. tag header moze biti koriscen vise puta u jednom dokumentu

Explanation

The statement "tag header moze biti koriscen vise puta u jednom dokumentu" translates to "the header tag can be used multiple times in one document." This statement is true because in HTML, the

tag is used to define the header section of a document or a section. It is not limited to being used only once in a document, and can be used multiple times to define different header sections or sections within a document.

Submit
34. Koji input atribut oznacava da web citac moze poslati podatke samo ako su oznacena polja korektno popunjena?

Explanation

The "required" input attribute in HTML indicates that the web browser can only submit data if the designated fields are correctly filled in. This attribute ensures that the user provides the necessary information before submitting the form.

Submit
35. koji ekstenziju imaju zasebni dokumenti,fajlovi,koji sadrze JavaScript

Explanation

The correct answer is ".js" because this file extension is commonly used for JavaScript files. JavaScript is a programming language that is primarily used for adding interactivity and dynamic features to websites. By using the ".js" file extension, it becomes easier to identify and differentiate JavaScript files from other types of files.

Submit
36. Koja svojstva fontova se koristi ukoliko zelimo da slova budu ukosena (italic?)

Explanation

The property "font-style" is used to make the letters italic.

Submit
37. koji HTML5 tag se koristi za grupisanje naslova

Explanation

The HTML5 tag "hgroup" is used for grouping multiple heading elements together. It helps in organizing and structuring the headings in a document. By using the "hgroup" tag, multiple headings can be grouped under a single parent element, making it easier to style and manipulate them as a group.

Submit
38. Koji tag koristimo da bi smo prikazali web stranicu unutar druge web stranice?

Explanation

We use the "iframe" tag to display a webpage within another webpage. The iframe tag allows us to embed content from another source, such as a different website, into our own webpage. This is commonly used when we want to include a map, a video, or any other external content on our webpage without redirecting the user to another website. The iframe tag is widely supported by all major web browsers and provides a seamless way to integrate external content into our webpage.

Submit
39. Vrednost elementa za unos podataka priikom JavaScript validacije podataka, dobija se preko kog svojstva?

Explanation

The value property is used to retrieve the value of an input element during JavaScript data validation. It allows access to the data entered by the user in the input field.

Submit
40. kako se u JavaScriptu zapisuje dogadjaj koji je izazvan kklikom na element?

Explanation

The correct answer is "onclick". In JavaScript, the "onclick" event is used to trigger a function or code when an element is clicked. By assigning the "onclick" event to an element, you can specify what action should be performed when that element is clicked.

Submit
41. imena tagova u XML nisu case-sensitive

Explanation

The given statement is incorrect. In XML, the tags are case-sensitive, meaning that the opening and closing tags must have the same case in order for the XML document to be valid. For example, and would be considered as two different tags in XML. Therefore, the correct answer is "netacno" (incorrect).

Submit
42. Da bi se animacija zauvek ponavljala, koje vrednosti je potrebno dodeliti svosjtvu animation-duration-cound?

Explanation

To make the animation repeat indefinitely, the value "infinite" needs to be assigned to the animation-duration-count property. This means that the animation will continue to play without stopping or reaching an end.

Submit
43. Koje svojstvo definise kada ce animacija startovati?

Explanation

The property "animation-delay" defines when the animation will start. It specifies the amount of time to wait before the animation begins, allowing for delayed animation effects.

Submit
44. u JavaScriptu pristup elementima objekta iz metode u objektu se obavlja uz pomoc koje kljucne reci

Explanation

The keyword "this" is used in JavaScript to access the elements of an object from within a method in the object. It refers to the current object that the method is being called on. By using "this", we can access and manipulate the properties and methods of the object within its own context.

Submit
45. oznaciti selektor koji omogucava izbor elemenata na osnovu vrednosti atributa i to tako da mu odgovaraju samo oni elementi cija vrednost atributa sadrzi navedenu vrednost kao jednu rec(odvojeno razmaknicom)

Explanation

The correct answer is [atribut~=val]. This selector allows the selection of elements based on the value of an attribute, where the attribute value contains the specified value as one word (separated by spaces). This selector is used when you want to select elements whose attribute value is a specific word among multiple words.

Submit
46. Port je ceo broj koji se sastoji od koliko bitova:

Explanation

A port is a number that is used to identify a specific process or application on a computer network. It is a 16-bit number, which means it consists of 16 bits. These bits are used to specify the source and destination ports for data communication. By using a 16-bit number, a port can have a maximum value of 65535, allowing for a large number of possible ports to be used for different purposes.

Submit
47. DTD je skracenica za:

Explanation

The correct answer is "ni jedno od ponudjenog" because none of the options provided (Do To Dance, Dynamic Type Definition, Direct Type Definition) are correct abbreviations for DTD.

Submit
48. ukoliko je velicina nekog elementa previse mala da bi prihvatila sadrzaj,moguce je specifirati kako ce se sadrzaj prilagoditi(da li ce biti skrolovan,vidljiv i van obuhvatajuceg elementa itd.) uz pomoc svojstva?

Explanation

The correct answer is "overflow". The question is asking about how to specify the behavior of content when the size of an element is too small to accommodate it. The "overflow" property allows us to control how the content will be displayed, whether it will be scrolled, visible outside the containing element, or hidden, among other options.

Submit
49. Kako se naziva poruka koja se pojavljuje kao dopunsko objasnjenje kada se kursor misa nadje iznad kontrol?

Explanation

A tooltip is a message that appears as a supplementary explanation when the mouse cursor is positioned over a control.

Submit
50. U  head elementu se navodi: 

Explanation

The correct answer is "naslov dokumenta, ključne reči" because the heading/title of a document and the keywords are typically mentioned in the head element of a webpage. The head element contains meta-information about the document, such as the title, keywords, character encoding, and other related information.

Submit
51. Po tehnologiji prenosa racunarske mreze se dele na:

Explanation

The correct answer is "mreze od tacke do tacke, difuzijske mreze." This answer is correct because it correctly identifies two types of computer network transmissions - "mreze od tacke do tacke" (point-to-point networks) and "difuzijske mreze" (broadcast networks). Point-to-point networks involve a direct connection between two devices, allowing for efficient and secure communication. Broadcast networks, on the other hand, involve the transmission of data to multiple devices simultaneously, allowing for widespread dissemination of information.

Submit
52. Koje svojstvo treba napisati umesto ??? da bi dimenzije prikaza sike u prilagodljivom dizajnu nikada ne budu vece od njihovih originalnih dimenzija tj. da ne bi doslo do narusavanja kvalitetea slike?img{        ??? : 100%;         hight: auto;}

Explanation

To ensure that the dimensions of the image display in the adaptive design are never larger than their original dimensions and to prevent any degradation in image quality, the "width" property should be used with a value of "100%". This will make the image adjust its width according to the available space while maintaining its aspect ratio.

Submit
53. MAC adresa ima koliko bitova?

Explanation

MAC adresa ima 48 bitova. MAC adresa je jedinstveni identifikator koji se koristi za identifikaciju mrežnih uređaja na Ethernet mreži. Sastoji se od 6 okteta, odnosno 48 bitova. Svaki oktet ima 8 bitova, što ukupno daje 48 bitova za celu MAC adresu.

Submit
54. Podrazumevana vrednost background-attachment?

Explanation

The default value for the background-attachment property is "scroll". This means that the background image will scroll along with the content when the user scrolls the webpage.

Submit
55. kako se u JavaScriptu zapisuje dogadjaj koji je izazvan kada se mis nadje iznad elementa ili jednog od dece elemenata?

Explanation

The correct answer is "onmouseover". In JavaScript, the "onmouseover" event is used to trigger a function when the mouse pointer moves over an element or one of its child elements. This event is commonly used to create interactive effects, such as changing the appearance of an element or displaying additional information when the mouse hovers over it.

Submit
56. oznaciti selektor koji omogucava izbor elemenata na osnovu vrednosti atributa i to tako da atribut ima navedenu vrednost ili pocinje sa tom vrednoscu

Explanation

The correct answer is [atribut ^=val]. This selector allows the selection of elements based on the value of an attribute, specifically when the attribute starts with the given value.

Submit
57. JavaScript funkcija mora biti imenovana?

Explanation

In JavaScript, it is not necessary for a function to be named. Anonymous functions, also known as function expressions, can be used where a function is defined without a name and assigned to a variable. These anonymous functions can be called using the variable name they are assigned to. Therefore, the statement "netacno" (false) is the correct answer as it states that it is not necessary for a JavaScript function to be named.

Submit
58. Atributi taga frame su:

Explanation

The given attributes are src, marginheigh, and marginwidth. These attributes are commonly used in the frame tag to specify the source URL of the content to be displayed within the frame, the height of the frame's margin, and the width of the frame's margin respectively.

Submit
59. prilagodljivi dizajn se zasniva na koriscenju tehnika:

Explanation

The correct answer includes three techniques: media queries, scalable images, and fluid grids. Media queries are used to apply different styles or layouts based on the characteristics of the device or screen size. Scalable images allow images to be resized without losing quality. Fluid grids are used to create flexible layouts that adapt to different screen sizes. These techniques are all part of responsive web design, which aims to create websites that can adapt and provide an optimal user experience across different devices and screen sizes.

Submit
60. skracenica NAT je:

Explanation

NAT stands for Network Address Translation. It is a technique used in computer networking to translate one IP address into another. NAT is commonly used in home and office networks to allow multiple devices to share a single public IP address. It helps in conserving IP addresses and provides an additional layer of security by hiding the internal network structure from external sources.

Submit
61. podrazumevana vrednost svojstva position je absolute?

Explanation

The correct answer is "netacno" (incorrect). The default value for the "position" property is "static," not "absolute." The "position" property in CSS determines how an element is positioned on a web page. By default, elements are positioned statically, meaning they follow the normal flow of the document. However, when the "position" property is set to "absolute," the element is positioned relative to its nearest positioned ancestor, if any, or to the initial containing block otherwise. So, the statement that the default value for the "position" property is "absolute" is incorrect.

Submit
62. Prilikom sracenog definisanja fonta, upotreba svojstva font, minimalni sadrzaj mora imati:

Explanation

When defining a font in a concise manner, the minimum content must include the font-size and font-family properties. These properties determine the size and type of font to be used. The font-style and font-variant properties are not necessary for the minimum content, as they respectively define the style (e.g. italic) and variant (e.g. small caps) of the font.

Submit
63. Koje svojsvo fontova se koristi za podesavanje podebljanosto slova?

Explanation

The correct answer is "font-weight." Font-weight is a CSS property that is used to adjust the thickness or boldness of the text. It allows the user to specify different levels of boldness, ranging from normal to bold. By using the font-weight property, one can easily adjust the weight of the font and make the text appear bolder or lighter as desired.

Submit
64. Oznaciti atribute ol taga:

Explanation

The correct answer is start, type, reversed. These attributes are commonly used in the ol (ordered list) tag in HTML. The "start" attribute specifies the starting value of the list, the "type" attribute specifies the numbering type (such as decimal or roman numerals), and the "reversed" attribute reverses the numbering order.

Submit
65. Kako se DTD XML-u fajlu?

Explanation

DTD (Document Type Definition) in an XML file can be included in three different ways: as part of the XML document itself, as a separate document alongside the XML document, or not included at all. In this case, the correct answer is that the DTD is part of the XML document, with part of it being in a separate document and part of it within the XML document itself.

Submit
66. pomocu atrbuta cellspacing taga table definise se 

Explanation

The cellspacing attribute of the table tag is used to define the distance between the content of a cell and its border. However, none of the options provided correctly describe the purpose of the cellspacing attribute.

Submit
67. Oznaciti ispravan nacin da dodavanje opadajuce liste unutar stranice:

Explanation

na pocetku i kraju dodati

Submit
68. u OSI modelu,koji sloj upravlja saobracajem,npr moze omoguciti istovremeni prenos u oba smera ili samo u jednom(i tada odredjuje ko ma pravo za prenos)

Explanation

The physical layer of the OSI model is responsible for managing traffic and enabling the transmission of data between devices. It deals with the physical aspects of communication, such as the transmission medium, electrical signals, and connectors. It does not determine the direction of data transmission or the rights for transmission. Instead, it focuses on the physical transmission of bits from one device to another.

Submit
69. Tip JavaScript promenjljive x se moze prikazati primenom koje metode?

Explanation

The typeof() method is used to determine the type of a JavaScript variable. It returns a string indicating the type of the variable, such as "number", "string", "boolean", "object", etc. Therefore, the typeof() method can be used to display the type of the variable x.

Submit
70. Koja funkcija interpretita prosledjeni string kao JavaScript kod?

Explanation

The function "eval" in JavaScript is used to interpret or execute the code that is passed to it as a string. It takes the string as an argument and evaluates it as JavaScript code. This can be useful in situations where dynamic code execution is required, but it should be used with caution as it can also pose security risks if not handled properly.

Submit
71. kod XML dokumenta, prostor imena vazi samo za element u kome je deklarisan?

Explanation

The given correct answer is "netacno" which means "false" in English. This suggests that the statement "kod XML dokumenta, prostor imena vazi samo za element u kome je deklarisan" is not true. In XML, namespaces can be declared at various levels including the document level, element level, or even at the attribute level. Therefore, the scope of a namespace declaration is not limited to just the element in which it is declared.

Submit
72. Koja JavaScript metoda omogucava preuzimanje kontrole nad odredjenim elemnetom html dokumenta, koje indetifikuje omocu atributa id?

Explanation

The correct answer is getElementById(). This JavaScript method allows you to take control over a specific element in an HTML document by identifying it using the id attribute. With this method, you can access and manipulate the properties and content of the element.

Submit
73. da bi se koristile CSS3 tranzicije potrebno je  prvo definisati kljucne frejmove za tranziciju

Explanation

To use CSS3 transitions, it is not necessary to first define keyframes for the transition. Transitions can be applied directly to elements without the need for keyframes. Therefore, the given answer "netacno" (false) is correct.

Submit
74. Kojim svojstvom se osigurava da su u padding i border ukljuceni u ukupnu sirinu i visinu elemnta?

Explanation

The "border-box" property ensures that the padding and border of an element are included in the total width and height of the element. This means that the specified width and height values will include the size of the padding and border, making it easier to calculate and control the overall size of the element.

Submit
75. Provera tipa neke JavaScript promenljive se izvodi primenom koje metode?

Explanation

The correct answer is "instanceof". This method is used to determine whether an object belongs to a certain class or has a specific prototype in JavaScript. It returns true if the object is an instance of the specified class or prototype, and false otherwise.

Submit
View My Results

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

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

  • Current Version
  • Mar 21, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Feb 21, 2017
    Quiz Created by
    Fiip
Cancel
  • All
    All (75)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
Za ubacivane audio fajlova koristi se koji html5 tag:
CSS je skracenica od:
Koji atribut definise tekst koji ce biti prikazan umesto slike u...
Oznaciti ispravan nacin za dodavanje tekstualnog polja unutar...
Oznaciti tacan nacin za kriranje linkova u html-u:
<target> t  e k s t </target> Koji tag treba...
CSS stil se moze primeniti i na body element, npr:<style> ...
Kod XML,pri zadavanju vrednosti atributa moguce je koristiti
Dobro poznati portovi se nalaze u opsegu:
Selektor korisit ID elementa,npr id="podnaslov",na sledeci...
Koja vrednost ce biti prikazana?  function() {  ...
XML je skacenica od:
Kod elemenata koji koriste apsolutno pozicioniranje moze doci do...
U kom tagu se definisu informacije o dokumentu koje ga bolje opisuju:
Koji od navedenih svojstva moze imati sledece vrednosti: flex-start,...
Kom modelu je HTML dokument sa svojim sadrzajem predstavljen u obliku...
Oznaciti ispravan nacin za definisanje JavaScript niza:
Stavke u vertiklanom meniju se definisu kao block elementi:
Ako se svojstvo background-size postavi na vrednost...
Koji tag koristimo kada pisemo JavaScript kod u HTML dokumentu?
Napisati JavaSvript tip za brojeve?
Koja vrednost vraca sledeci JavaScript boolean ("false")?
Oznaciti relativnu jedinicu mere
Oznaciti ispravnu JavaScript sintaksu za menjanje sadrzaja datog html...
Podrazumevana vrednost svojstva background-repeat je repeat?
Mapiranje slike se izvodi pomocu kog atributa img taga:
U XML se cuva prazan prostor izmedju karaktera,sto sa html nije slucaj
Koje svojstvo se koristi za iskljucivanje svojstva float:
Ip protokol je protokol koji optimizuje isporuke svih paketa,pa je...
Oznaciti tacan oblik XML deklaracije
Ko je uvek pojam responsive web design?:
JavaScript kod mozemo pisati samo unutar head sekcije HTML dokumenta?
Tag header moze biti koriscen vise puta u jednom dokumentu
Koji input atribut oznacava da web citac moze poslati podatke samo ako...
Koji ekstenziju imaju zasebni dokumenti,fajlovi,koji sadrze JavaScript
Koja svojstva fontova se koristi ukoliko zelimo da slova budu ukosena...
Koji HTML5 tag se koristi za grupisanje naslova
Koji tag koristimo da bi smo prikazali web stranicu unutar druge web...
Vrednost elementa za unos podataka priikom JavaScript validacije...
Kako se u JavaScriptu zapisuje dogadjaj koji je izazvan kklikom na...
Imena tagova u XML nisu case-sensitive
Da bi se animacija zauvek ponavljala, koje vrednosti je potrebno...
Koje svojstvo definise kada ce animacija startovati?
U JavaScriptu pristup elementima objekta iz metode u objektu se...
Oznaciti selektor koji omogucava izbor elemenata na osnovu vrednosti...
Port je ceo broj koji se sastoji od koliko bitova:
DTD je skracenica za:
Ukoliko je velicina nekog elementa previse mala da bi prihvatila...
Kako se naziva poruka koja se pojavljuje kao dopunsko objasnjenje kada...
U  head elementu se navodi: 
Po tehnologiji prenosa racunarske mreze se dele na:
Koje svojstvo treba napisati umesto ??? da bi dimenzije prikaza sike u...
MAC adresa ima koliko bitova?
Podrazumevana vrednost background-attachment?
Kako se u JavaScriptu zapisuje dogadjaj koji je izazvan kada se mis...
Oznaciti selektor koji omogucava izbor elemenata na osnovu vrednosti...
JavaScript funkcija mora biti imenovana?
Atributi taga frame su:
Prilagodljivi dizajn se zasniva na koriscenju tehnika:
Skracenica NAT je:
Podrazumevana vrednost svojstva position je absolute?
Prilikom sracenog definisanja fonta, upotreba svojstva font, minimalni...
Koje svojsvo fontova se koristi za podesavanje podebljanosto slova?
Oznaciti atribute ol taga:
Kako se DTD XML-u fajlu?
Pomocu atrbuta cellspacing taga table definise se 
Oznaciti ispravan nacin da dodavanje opadajuce liste unutar stranice:
U OSI modelu,koji sloj upravlja saobracajem,npr moze omoguciti...
Tip JavaScript promenjljive x se moze prikazati primenom koje metode?
Koja funkcija interpretita prosledjeni string kao JavaScript kod?
Kod XML dokumenta, prostor imena vazi samo za element u kome je...
Koja JavaScript metoda omogucava preuzimanje kontrole nad odredjenim...
Da bi se koristile CSS3 tranzicije potrebno je  prvo definisati...
Kojim svojstvom se osigurava da su u padding i border ukljuceni u...
Provera tipa neke JavaScript promenljive se izvodi primenom koje...
Alert!

Advertisement