Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Technology Questions
In PHP, what determines the maximum size of an uploaded file and how can you increase this limit?
In PHP with MySQL, how can you find the number of rows in a result set returned by a SELECT query?
In PHP, what is the functionality of the md5() function and when is it typically used?
In PHP form handling, what are the main differences between the GET and POST HTTP methods when submitting a form?
In PHP web applications, what is a session and why is it used?
In PHP, how can you destroy a single session variable and how can you destroy the entire session?
In PHP, what is the difference between include(), include_once(), require(), and require_once()?
In PHP regular expressions, how can you extract the domain abc.com from the string https://info@abc.com?
In PHP, what major types of runtime and compile time errors can be generated by the engine?
In PHP, what is the functionality of strstr() and how does stristr() differ from it?
In PHP using the old mysql extension, what are the differences between mysql_fetch_array(), mysql_fetch_object(), and mysql_fetch_row()?
In PHP, which functions are commonly used for hashing and encryption of data?
In PHP, how do you set a cookie from the server to the client browser?
In PHP, how can you calculate the number of days between two given dates?
In PHP file uploads, how do you move an uploaded file from its temporary location to the final destination on the server?
In PHP, what is the $_FILES superglobal array and what information does it contain for each uploaded file?
In object-oriented PHP programming, what are constructors and destructors, and what roles do they play in the lifecycle of an object?
In a standard PHP installation, what is the main PHP configuration file commonly called?
In PHP, what is a filter and what is the purpose of the PHP filter extension when handling external input?
In a typical Apache HTTP Server installation, what is the main Apache configuration file usually called?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79