nirjesh pandey


{ City } new delhi
< Country > india
* Profession * software test engineer
User No # 74993
Total Questions Posted # 0
Total Answers Posted # 7

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 20
Users Marked my Answers as Wrong # 7
Questions / { nirjesh pandey }
Questions Answers Category Views Company eMail




Answers / { nirjesh pandey }

Question { 6519 }

Which directory is closer to the top of the file system
tree, parent directory or current directory?


Answer

Parent directory is always closer to the top of the file
system tree.

Is This Answer Correct ?    4 Yes 0 No

Question { IBM, 13472 }

1.While doing regression testing one bug raised due to
functionality dependency, what is the bug status that one?


Answer

No doubt, Pooja answered superbly..

Is This Answer Correct ?    0 Yes 0 No


Question { Accenture, 43616 }

When a bug status will be changed to "DEFERRED" , by the
developer ? What might b the situations to change the status
to deferred ? pls explain with an example .


Answer

A bug is called differed when that fuctionality will
be in the part of the next or the future versions due
insufficient requirements(According to bug life cycle).In
order not to destabilize the build with low priority issues..

Is This Answer Correct ?    3 Yes 1 No

Question { Yardi, 322345 }

how to find the second highest salary from emp table?


Answer

select salary from employee order by salary DESC LIMIT(1,1)

Is This Answer Correct ?    0 Yes 1 No

Question { Yardi, 322345 }

how to find the second highest salary from emp table?


Answer

select salary from employee order by salary DESC LIMIT(1,1);

Is This Answer Correct ?    0 Yes 1 No

Question { 7999 }

Hi,

Can any one tel me what is meant by adhoc testing


Answer

Adhoc means - things which is not planned.

Is This Answer Correct ?    5 Yes 2 No

Question { 5431 }

please explain me mail function in php


Answer

The PHP mail() Function:

The PHP mail() function is used to send emails from inside a
script.

Syntax
mail(to,subject,message,headers,parameters)

Parameter Description
to Required. Specifies the receiver / receivers of the email
subject Required. Specifies the subject of the email. Note:
This parameter cannot contain any newline characters
message Required. Defines the message to be sent. Each line
should be separated with a LF (\n). Lines should not exceed
70 characters
headers Optional. Specifies additional headers, like From,
Cc, and Bcc. The additional headers should be separated with
a CRLF (\r\n)
parameters Optional. Specifies an additional parameter to
the sendmail program

Note: For the mail functions to be available, PHP requires
an installed and working email system. The program to be
used is defined by the configuration settings in the php.ini
file. Read more in our PHP Mail reference.
PHP Simple E-Mail

The simplest way to send an email with PHP is to send a text
email.

In the example below we first declare the variables ($to,
$subject, $message, $from, $headers), then we use the
variables in the mail() function to send an e-mail:
$to = "someone@example.com";
$subject = "Test mail";
$message = "Hello! This is a simple email message.";
$from = "someonelse@example.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>

Is This Answer Correct ?    8 Yes 2 No