Whenever you create a table, MySQL stores the table definition in a file with the same name as the table. Which of the following is the extension of the table definition file?
Correct Answer:
.frm
Note: This Question is unanswered, help us to find answer for this one
Refer to the following statement:
Select CustomerName, AccountNumber from Customers where AccountNumber in(select AccountNumber from Transactions where TransactionDate=#12/12/2005#)
Which of the following is correct?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
A construction company is working on three projects: mall construction, residential construction and building business towers. A civil engineer can work only on one type of construction project but more than one civil engineer can work on one project whereas a sales person can handle any type of projects and any number of sales people can work on one project. Define the nature of the relationship between (civil engineer and projects) and (sales person and projects)?
Correct Answer:
many to one, many to many
Note: This Question is unanswered, help us to find answer for this one
You have just installed a Linux system. You have upgraded the kernel and packages to the latest versions and you have turned off all unnecessary services and daemons. What else should you do to enhance security on the system?
Correct Answer:
Change the root password
Note: This Question is unanswered, help us to find answer for this one
Refer to the statements given below and identify which of the following is correct.
Statement 1: Without any indexes, the database uses a lot of disk I/O and can effectively pollute the disk cache.
Statement 2: Some extra disk space and a bit of CPU overhead is sacrificed on each INSERT, UPDATE, and DELETE query while using indexes.
Correct Answer:
Both the statements are true
Note: This Question is unanswered, help us to find answer for this one
You want to enable SSI for a directory called '/www/mysite/htdocs/parsed'. Which of the following is the correct configuration to be added in httpd.conf?
Correct Answer:
<Directory "/www/mysite/htdocs/parsed"> Options +Includes SetOutputFilter INCLUDES </Directory>
Note: This Question is unanswered, help us to find answer for this one
You have to upload a file named "SalesFile" using the form post method mentioned below. What should be the code in line 3 to accomplish the same?
1 <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
2 Send this file:
3
4 <input type="submit" value="Send File" />
Correct Answer:
input name="SalesFile" type="file" />
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands will you use if you need to strip the extension off of a filename or get rid of the directories in a full pathname?
Correct Answer:
basename
Note: This Question is unanswered, help us to find answer for this one
Indexes are known to speed up the search but they have some limitations also. Which of the following queries take much time despite having indexes on table?
Correct Answer:
select * from pages where page_text like "%buffy%"
Note: This Question is unanswered, help us to find answer for this one
When a Unix program finishes, it leaves an exit code for the parent process that started the program. The exit code is a number. Which of the following numbers is returned if the program ran without problems?
Correct Answer:
0
Note: This Question is unanswered, help us to find answer for this one
A user is trying to set a new password for his account. He wants to use the name of the company "MNC" as his password. Why would the system not allow this password?
Correct Answer:
The minimum length of a password should be at least six characters
Note: This Question is unanswered, help us to find answer for this one
Which of the following lines of the class mentioned below should be commented to execute the code without errors?
1 class Insurance
2 {
3 function clsName()
4 {
5 echo get_class($this);
6 }
7 }
8 $cl = new Insurance();
9 $cl->clsName();
10 Insurance::clsName();
Correct Answer:
Line 10
Note: This Question is unanswered, help us to find answer for this one
State whether true or false:
By allowing the use of .htaccess files in user (or customer or client) directories, you are essentially extending a bit of your Webmaster privileges to anyone who can edit those files.
Correct Answer:
True
Note: This Question is unanswered, help us to find answer for this one
Refer to the small php script given below:
<?php
class person{
function getSal()
{
. . .
. . .
}
}
class emp extends person{
function getSal()
{
???
}
}
?>
The getSal() of emp has to behave exactly as getSal() of person. Which of the following lines of code would you use to replace the '???'
Correct Answer:
parent::getSal();
Note: This Question is unanswered, help us to find answer for this one
Which sequence will run successfully for the code given below?
<?php
function Expenses()
{
function Salary()
{
}
function Loan()
{
function Balance()
{ }
}
}
?>
Correct Answer:
Expenses();Salary();Loan();Balance();
Note: This Question is unanswered, help us to find answer for this one
You are facing a low key buffer problem. You want to increase the size of the key buffer from what it was set to at the startup. Which of the following is the correct syntax to perform this?
Correct Answer:
mysql> SET GLOBAL key_buffer=50M;
Note: This Question is unanswered, help us to find answer for this one
What should you do before beginning the installation of Linux?
Correct Answer:
Obtain a detailed hardware list
Note: This Question is unanswered, help us to find answer for this one
Which of the following is true with regard to references in PHP?
Correct Answer:
It means accessing the same variable content by a different name
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are correct with respect to the get_browser function of PHP?
Correct Answer:
It is used to extract the client's browser information
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct with regard to the statements given below?
Statement 1: If the internal network uses nonroutable IP addresses for either security or cost reasons, you can use a proxy server to provide Internet resources to hosts that normally cannot access the Internet.
Statement 2: Using a caching proxy such as Apache (with mod_perl), you can provide seemingly faster access to Internet resources to the local users.
Correct Answer:
Both the statements are true
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct with regard to the statements given below?
Statement 1: When you set up Apache on an Internet host it can respond to an HTTP request for that host.
Statement 2: Apache does not allow virtual hosts to inherit configuration from the main server, which makes the virtual host configuration quite manageable in large installations.
Correct Answer:
Statement 1 is true but statement 2 is false
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are correct with respect to PHP connections?
Correct Answer:
mysql_pconnect keeps the connection open across multiple requests
Note: This Question is unanswered, help us to find answer for this one
Based on the code given below, what will be the value of $num if mytable contains 12 records?
$result=mysql_query("DELETE from mytable");
$num=mysql_affected_rows();
Correct Answer:
0
Note: This Question is unanswered, help us to find answer for this one
The architecture of MySql sets it apart from nearly every other database server. Which of the following are correct about different layers of MySql?
Correct Answer:
The topmost layer is composed of the services that are not unique to MySQL
Note: This Question is unanswered, help us to find answer for this one
The Apache source distribution comes with a script called configure that allows you to configure the source tree before you compile and install the binaries. Which of the following is an incorrect option for the configure script?
Correct Answer:
--help-file
Note: This Question is unanswered, help us to find answer for this one
Check the structure of the following tables:
Employee
---------
Empno
Employeename
Salary
Deptno
Department
---------
Deptno
Departname
Mike wants to see the departments that have more than 100 employees. Which of the following queries returns the required result?
Correct Answer:
Select departname from department where deptno in (select deptnofrom employee group by deptno having count(*) > 100);
Note: This Question is unanswered, help us to find answer for this one
Where would you install LILO to allow a dual bootable system on a 'system' which already has Microsoft Windows NT 4.0 with an installed NTFS partition?
Correct Answer:
First sector of the boot partition
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct regarding the .htaccess file in an Apache server?
Correct Answer:
Any text editor can be used to create or make the changes to the .htaccess files
Note: This Question is unanswered, help us to find answer for this one
Which of the following subdirectory of the root directory provides system statistics through a directory-and-file interface which you can browse with standard Unix tools
Correct Answer:
proc
Note: This Question is unanswered, help us to find answer for this one
Which of the following MySQL field names are correct?
Correct Answer:
EmpNo
Note: This Question is unanswered, help us to find answer for this one
Mike Johnson is running Apache on an extremely busy server where hundreds of requests per second is a requirement. He might have to change the default hard limits set in the MPM module. Which of the following hard limits should he change?
Correct Answer:
HARD_SERVER_LIMIT
Note: This Question is unanswered, help us to find answer for this one
Which program automatically determines the number of blocks in a device and sets some reasonable defaults?
Correct Answer:
mke2fs
Note: This Question is unanswered, help us to find answer for this one
One of your PHP pages is very heavy and loading it takes about two minutes. But before it loads, a browser timeout occurs. Which of the following will help solve this problem?
Correct Answer:
set_time_limit(150);
Note: This Question is unanswered, help us to find answer for this one
Refer to the classes that are defined as follows:
abstract class BaseCls{
protected abstract function getName();
}
class ChildCls extends BaseCls{
}
Which of the following implementations of getName() is invalid in ChildCls?
Correct Answer:
private function getName(){}
Note: This Question is unanswered, help us to find answer for this one
What is the function of the 'swapon' command while installing Linux in the command line interface mode?
Correct Answer:
It activates a created swap partition
Note: This Question is unanswered, help us to find answer for this one
You have a table phone_book with 2 billion rows in it. Adding an index on last_name will require a lot of space. If the average last_name is 8 bytes long, you are looking at roughly 16 GB of space for the data portion of the index. Which of the following will help in reducing the size of index space?
Correct Answer:
Indexing only the first 4 bytes
Note: This Question is unanswered, help us to find answer for this one
Which of the following are the valid operations that MySQL performs simultaneously when a table is dropped?
Correct Answer:
It removes all the rows from the table
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct with regard to the statements given below?
Statement 1: The current implementation of the optional proxy module does not support reverse proxy or the latest HTTP 1.1 protocol.
Statement 2: Apache can be turned into a caching (forward) proxy server.
Correct Answer:
Both the statements are true
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements is incorrect with regard to PHP interfaces?
Correct Answer:
An abstract class cannot implement multiple interfaces
Note: This Question is unanswered, help us to find answer for this one
The include directive inserts the text of a document into the SSI document being processed. Which of the following statements has the correct syntax for the include directive?
Correct Answer:
include file="path"
Note: This Question is unanswered, help us to find answer for this one
Refer to the code given below and select the while condition from the following options:
$db = mysql_connect("localhost","root");
mysql_select_db("mydb",$db);
$result = mysql_query("select state_id, state_text from states");
if ($result)
{
echo "<SELECT NAME='state_id'>";
while (...condition...)
{
echo "<OPTION VALUE=\"".$myrow["state_id"]."\">".
$myrow["state_text"]." </OPTION> ";
}
echo "</SELECT>";
}
Correct Answer:
$myrow = mysql_fetch_array($result)
Note: This Question is unanswered, help us to find answer for this one
You want to open a file in the PHP application and you also want this application to issue a warning and continue execution, in case the file is not found. Which of the following idea functions would you use in this scenario?
Correct Answer:
include()
Note: This Question is unanswered, help us to find answer for this one
You have defined three variables $to, $subject, and $body to send an email. Which of the following methods would you use to send an email?
Correct Answer:
mail($to,$subject,$body)
Note: This Question is unanswered, help us to find answer for this one
How would you convert the date set in the following format into a PHP timestamp?
$date = "Monday, July 28, 2008 @ 12:15 am";
Correct Answer:
$date = str_replace("@ ","",$date);
$date = strtotime($date);
Note: This Question is unanswered, help us to find answer for this one
You are building Apache from the source distribution. Which of the following is a mandatory requirement for Apache installation?
Correct Answer:
ANSI C Compiler
Note: This Question is unanswered, help us to find answer for this one
Based on the code given below, what will be the value of, $num, if mytable contains 20 records out of which 10 have myprice=19, 5 have myprice=20 and 5 have myprice=2, before running the mysql_query?
$resultSet=mysql_query("UPDATE mytable set myprice = 20 where myprice < 20");
$num=mysql_affected_rows();
Correct Answer:
10
Note: This Question is unanswered, help us to find answer for this one
Consider the following sample code:
$x = 0xFFFE;
$y = 2;
$z = $x && $y;
What will be the value of $z?
Correct Answer:
1
Note: This Question is unanswered, help us to find answer for this one
rpm -Uvh filename- 1.2-2.i386.rpm can be used to install an RPM package. What functions does it perform?
Correct Answer:
It installs with additional information and hash marks
Note: This Question is unanswered, help us to find answer for this one
To start the MySql server in Linux, you type the following from the command line:
bin/safe_mysqld &
What does the '&' mean in the command mentioned above?
Correct Answer:
It forces Mysql to run in the background
Note: This Question is unanswered, help us to find answer for this one
Which of the following queries will correctly retrieve the ages and addresses of those students who have been studying in the school for the last 2 years?
Correct Answer:
$SQL_QUERY="select age,address from student where regdate =";
$SQL_QUERY .= "DATE_SUB(CURRENT_DATE,Interval 2 YEAR)";
Note: This Question is unanswered, help us to find answer for this one
Read the following statement:
select * from Orders where OrderID=(select OrderID from OrderItems where ItemQty>50)
Which of the following correctly defines the error in the code given above?
Correct Answer:
The sub query can return more than one row, so, = should be replaced with in
Note: This Question is unanswered, help us to find answer for this one
What do you infer from the following code?
<?php
$str = 'Dear Customer,\nThanks for your query. We will reply very soon.?\n Regards.\n CustomerService Agent';
print $str;
?>
Correct Answer:
All will be printed on one line irrespective of the "\n" characters
Note: This Question is unanswered, help us to find answer for this one
You want to set the variable "sort_buffer_size" as non global so that it applies only to the current MySQL client session. Which of the following statements is correctly defined with regard to this case?
Correct Answer:
mysql> SET SESSION sort_buffer_size=50M;
Note: This Question is unanswered, help us to find answer for this one
You want to see the block and character devices for which your system currently has drivers. Which of the following commands should you use in this scenario?
Correct Answer:
cat /proc/devices
Note: This Question is unanswered, help us to find answer for this one
What will happen if the following code is executed?
$resultSet = mysql_query("SELECT fname, lname FROM customers")
for ($nIndex = 0; $nIndex < mysql_num_rows($resultSet) ; $nIndex++)
{
if (!mysql_data_seek($resultSet, $nIndex))
{
echo "Cannot seek to row $nIndex\n";
continue;
}
if(!($row = mysql_fetch_object($resultSet)))
continue;
echo "$row->fname $row->lname<br />\n";
}
Correct Answer:
The fnames and lnames of all the customers will be printed
Note: This Question is unanswered, help us to find answer for this one
What is the condition indicated if only the LI appears while attempting to boot a Linux system with LILO?
Correct Answer:
Secondary boot loader has been loaded
Note: This Question is unanswered, help us to find answer for this one
When Apache receives a URL request, it processes the request by serving the file to the client (the Web browser). It provides you with a flexible mechanism for rewriting the requested URL to a new one using custom URL rewrite rules. Which of the following is an incorrect server variable for URL Rewrite rules?
Correct Answer:
REMOTE_FORWARD
Note: This Question is unanswered, help us to find answer for this one
Sometimes it is necessary to create a temporary file to collect output for use by a later command. While creating such a file, you must make sure that the filename is unique enough so that no other programs accidentally write on the temporary file. Which of the following are correct with regard to creation of temporary files?
Correct Answer:
mktemp command can be used to create temporary filenames
Note: This Question is unanswered, help us to find answer for this one
'Perfect Services' provides financial services worldwide. You want to display data from the table pers for joining_date from #1/1/2005# to #31/12/2005# and the job should either be of an analyst, a clerk or a salesman. Which of the following is correct?
Correct Answer:
select * from Pers where joining_date between #1/1/2005# and #31/12/2005# and (job=Analyst or clerk or salesman)
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are incorrect regarding referential integrity?
Correct Answer:
A foreign key can refer to a primary key
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true?
Statement 1: mysql_fetch_object - Returns an object with properties that correspond to the fetched row, or FALSE if there are no more rows
Statement 2: mysql_fetch_row - Returns a positive MySQL result resource to the query result, or FALSE on error.
Correct Answer:
Only Statement 1 is true
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct regarding Linux devices?
Correct Answer:
The character devices work with data streams
Note: This Question is unanswered, help us to find answer for this one
Which of the following helps to keep an eye on the existing number of objects of a given class without introducing a non-class member variable?
Correct Answer:
Addition of a static member variable that gets incremented in each constructor and decremented in the destructor
Note: This Question is unanswered, help us to find answer for this one
What will be the output of the following code?
$var1="a";
$$var1="b";
echo "$var1 $a";
Correct Answer:
a b
Note: This Question is unanswered, help us to find answer for this one
Which of the following can be used to implement data validation while creating a table in MySql?
Correct Answer:
Default value of a column
Null constraint
Note: This question has more than 1 correct answers
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct with regard to indexes in MySql?
Correct Answer:
With clustered indexes, the primary key and the record itself are "clustered" together
Note: This Question is unanswered, help us to find answer for this one
Which of the following is introduced in PHP5?
Correct Answer:
__construct and __destruct
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the correct way to check whether the cookie is set or not before retrieving the value from "LoginCookie"?
Correct Answer:
isset($_COOKIE['LoginCookie'])
Note: This Question is unanswered, help us to find answer for this one
John Mark, an administrator, wants to set the Web server so that it will not show a directory listing if a user requests a page which is a directory. Which modification should he set up in the httpd.conf?
Correct Answer:
Remove indexes from configuration file
Note: This Question is unanswered, help us to find answer for this one
Food Cart Accounting System (FOCAS) is maintaining products in the products table, and wants to see the products which are 50 or more than 50 short of the minimum stock limit. The structure of the Products table is:
ProductID
ProductName
CurrentStock
MinimumStock
Two possible queries are:
Query 1:select * from products where currentStock>MinimumStock+50
Query 2:select * from products where currentStock-50>MinimumStock
Which of the following is correct?
Correct Answer:
Both the queries are true
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct with regard to PHP functions?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
What will be the output of the following code?
$Rent = 250;
function Expenses($Other)
{
$Rent = 250 + $Other;
return $Rent;
}
Expenses(50);
echo $Rent;
Correct Answer:
250
Note: This Question is unanswered, help us to find answer for this one
Which permission setting allows a user to run an executable with the permission of the owner of that file?
Correct Answer:
SUID
Note: This Question is unanswered, help us to find answer for this one
Which of the following ways of creation of a virtual web site is not supported by Apache?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following are correct with regard to the sbin subdirectory of the root directory in Linux?
Correct Answer:
All of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements are true with regard to comparisons in PHP5?
Correct Answer:
With the "= =" operator, two object instances are equal if they have the same attributes and values, and are instances of the same class
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the standard authentication module, which implements Basic HTTP authentication?
Correct Answer:
mod_auth
Note: This Question is unanswered, help us to find answer for this one
Read the following code snippet:
1. for filename in *; do
2. if [ -f $filename ]; then
3. ls -l $filename
4. file $filename
5. else
6. echo $filename is not a regular file.
7. fi
8. done
What does '-f' in line 2 mean?
Correct Answer:
It tests all the items in the current working directory
Note: This Question is unanswered, help us to find answer for this one
During heavy INSERT, UPDATE, and DELETE activity, indexes slow down the performance. Which of the following setting controls this behavior?
Correct Answer:
delay_key_write
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct for specifying the default value?
Correct Answer:
function GetDiscount($Type = "Special") { . . . }
Note: This Question is unanswered, help us to find answer for this one
You have an HTML file called mypage.html and you want to store meta headers of this html page. Which of the following directives specifies the filename extension for metainformation files?
Correct Answer:
MetaSuffix
Note: This Question is unanswered, help us to find answer for this one
The Manager and Office classes are as follows:
<?php
class Manager{
function printName() {
echo "Manager";
}
}
class Office{
function getManager() {
return new Manager();
}
}
$ofc = new Office();
???
?>
Which of the following should replace '???' to obtain the value of printName() function?
Correct Answer:
$ofc->getManager()->printName();
Note: This Question is unanswered, help us to find answer for this one
Which of the following is correct regarding the statements given below?
Statement 1: Before the server can send the page to the browser it must send the http headers.
Statement 2: session_start() is used to send some headers.
Correct Answer:
Statement 1 is false but statement 2 is true
Note: This Question is unanswered, help us to find answer for this one
Which of the following special variables of a shell script holds the number of arguments passed onto the script?
Correct Answer:
$@
Note: This Question is unanswered, help us to find answer for this one
Refer to the following declarations of the php variables:
$company = 'ABS Ltd';
$$company = ', Sydney';
?>
Which of the following is not a correct way of printing 'ABS Ltd , Sydney'?
Correct Answer:
echo "$company ${$company}";
Note: This Question is unanswered, help us to find answer for this one
'Perfect Services' provides financial services worldwide. You want to display data from the table pers for joining_date from #1/1/2005# to #31/12/2005# and the job should either be of an analyst, a clerk or a salesman. Which of the following is correct?
Correct Answer:
None of the above
Note: This Question is unanswered, help us to find answer for this one
Which of the following can be used to implement data validation while creating a table in MySql?
Correct Answer:
Checking constraint with specified values
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
53
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
2000
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
/etc/sysconfig/httpd
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
24 min
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
apropos
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
chmod 1645 file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
.cshrc
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
chattr
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
0
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
USR
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
ldd
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
arch
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
./mysqladmin -u root -p shutdown
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
PHP [Garbage Collector]
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
STRING
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
error message will appear
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Syntax OK
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
configtest
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
/etc/hosts.allow
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
(both are correct)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
httpd.conf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
1970 to 2069
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
A hard link does not become disconnected from the underlying file if the file is moved
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
no [it's the Oracle's type]
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both env and printenv
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Both graceful and restart
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Nothing
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Truncate_priv
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will create a new database TEST
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
use AddType directive in httpd.conf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
a text file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
0
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
There is no limit (hardware limit)
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
when the browser is closed or after a span of user inactivity
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
cron
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of these
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will write the first 5 lines of test.txt to the screen
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
httpd restart
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
FLUSH PRIVILEGES
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
ServerName
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
cookie
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
a record from the hosts file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
apps
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
localhost
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Linux + Apache+MySQL +PHP
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Hypertext Transfer Protocol
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
phpmyadmin
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
httpd.conf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
php_mysql
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
yes [WAMP, WIMP (for Windows), MAMP (Mac OS), BAMP (BSD)]
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
SQL
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
operating system
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
<VirtualHost>...</VirtualHost>
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
using a .htaccess file
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
it's a database server
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the options are valid
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Will make a copy of file1 in the current working directory and call it file2
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
chgrp
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
It will drop TEST database
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
session_start()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
/etc/hosts
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
"/"
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
chown
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
All of the options are valid
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
/etc/httpd/conf/httpd.conf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
Current directory
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
phpinfo()
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
kill
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
This will list all files in the current directory starting with list
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
conf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
'This is the "quoted" message'
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
df
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
wrong password
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
/etc/my.cnf
Note: This Question is unanswered, help us to find answer for this one
Correct Answer:
it's flexible, productive, widespread and low cost (all components can be downloaded for free from Internet)
Note: This Question is unanswered, help us to find answer for this one
LAMP MCQs | Topic-wise