Kolokvijum Pitanja - Veb Programiranje

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/40

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:50 PM on 6/10/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

41 Terms

1
New cards
Q: HTTP 503 code means?
Server trenutno nije dostupan (Server currently unavailable)
2
New cards
Q: HTTP 403 code means?
Zabranjen pristup (Forbidden access)
3
New cards
Q: HTTP 404 code means?
Stranica nije pronadjena (Page not found)
4
New cards
Q: HTTP 500 code means?
Interna greska na serveru (Internal server error)
5
New cards
Q: HTTP 301 code means?
Adresa trajno promenjena (Permanently moved)
6
New cards
Q: Valid PHP multi-word variable names?
$univerzitet_singidunum and $univerzitetSingidunum
7
New cards
Q: PHP web application requirements?
"Sve navedeno: PHP
8
New cards
Q: Apache config: change DocumentRoot for?
Changing web documents location
9
New cards
Q: Apache config: change ServerRoot for?
Changing Apache installation location
10
New cards
Q: PHP config file name?
php.ini
11
New cards
Q: $x=2; $y='3'; Result of $x + $y?
5 (PHP auto-converts string '3' to number)
12
New cards
Q: $x=2; $y='3'; Result of $x . $y?
23 (string concatenation: '2' + '3')
13
New cards
Q: Valid PHP array creation?
"$niz=['audi'
14
New cards
Q: GET routing advantages?
"Navigacija
15
New cards
Q: Apache comment/deactivate line with?
# (hash/pound sign)
16
New cards
Q: PHP hosting support?
Podrzava vecina hosting kompanija (Most hosting companies support it)
17
New cards
Q: Open file for reading only?
"fopen('file.txt'
18
New cards
Q: Rename file 'loger.txt' to 'log.txt'?
"rename('loger.txt'
19
New cards
Q: Receiving form data: security rule?
"Sve navedeno: validate type/content
20
New cards
Q: Virtual domain files to modify?
"httpd.conf
21
New cards
Q: PHP function/class/keyword names case sensitive?
Case-insensitive (case insensitive)
22
New cards
Q: Valid variable names (multiple)?
$beograd_011 and $_011beograd
23
New cards
"Q: $x=2 (variable)
Y=3 (constant). $x+Y equals?"
24
New cards
Q: What is HTTP protocol?
"Sve navedeno: mrezni protokol
25
New cards
Q: Web application composition?
"Backend: PHP
26
New cards
Q: PHP serves for?
"Sve navedeno: kreiranje HTML koda
27
New cards
Q: PHP can run with which web servers?
"PHP moze da radi sa svim ponudjenim (Apache
28
New cards
Q: Form method for URL parameters?
...
29
New cards
Q: HTML tag for drop-down list?
30
New cards
Q: HTML tag for multi-line text?
31
New cards
Q: Read POST form data in PHP?
$_POST (case-sensitive superglobal)
32
New cards
Q: Companies using PHP?
"Svi navedeni: Yahoo
33
New cards
Q: Computers exchanging data must use?
Iste protokole (Same protocols)
34
New cards
Q: Router in web applications is?
Proces upotrebe URL adresa za aktivaciju funkcionalnosti
35
New cards
Q: XAMPP component for virtual domains?
Apache
36
New cards
Q: Save $text to file 'clanak.txt'?
"file_put_contents('./clanak.txt'
37
New cards
Q: HTTP request contains?
"Zaglavlje
38
New cards
Q: print '$x $y' outputs?
$x $y (single quotes = literal text)
39
New cards
Q: HTTP request nature described by?
"Tip zahteva (GET/POST)
40
New cards
Q: .htaccess file purpose?
"Sve navedeno: error 404 page
41
New cards
Q: $x += $y means?
$x = $x + $y