Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

narayan


{ City }
< Country > india
* Profession *
User No # 37516
Total Questions Posted # 0
Total Answers Posted # 3

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

Users Marked my Answers as Correct # 17
Users Marked my Answers as Wrong # 8
Questions / { narayan }
Questions Answers Category Views Company eMail




Answers / { narayan }

Question { Semantic Space, 58546 }

What are default add-ins in qtp?


Answer

Yes, it takes Windows add in

Is This Answer Correct ?    8 Yes 6 No

Question { 5706 }

hi
i want how to know how to explain the load runner process
please explain iam having the interivew


Answer

Load testing typically consists of five phases:
1) Planning 2)Script creation 3)Scenario definition 4)
Scenario execution and 5) Results Analysis.
> Plan Load Test - Define your performance testing
requirements, for example, number of concurrent users,
typical business processes, and required response times.
> Create Vuser Scripts - Capture the end-user activities
into automated scripts.
> Define a Scenario - Use the LoadRunner Controller to set
up the load test environment.
> Run a Scenario - Drive, manage, and monitor the load test
from the LoadRunner Controller.
> Analyze the Results - Use LoadRunner Analysis to create
graphs and reports and evaluate the performance.

"Extract from LoadRunner Tutorial - 9.5"

Is This Answer Correct ?    5 Yes 2 No


Question { HCL, 11427 }

write a script to display mirror image of a entered value
and also check whether Palindrome


Answer

print("Enter the no. to check for Palindrome : ");
$no = ;
chop($no);

$i = 0;

# Store into a array
while($no != 0)
{
@array[$i] = $no % 10;
$no = int($no / 10);
$i++;
}

$i--;
$j=0;
$flag = "true";

# Check for Palindrome
while( ($flag eq "true" )&& ( $j < @array/2) ){
if (@array[$j] != @array[$i])
{
$flag = "false"
}
$i--;
$j++;
}

# Print the result
if( $flag eq "true")
{
print("It is a Palindrome\n");
}
else
{
print("It is NOT a Palindrome\n");
}

Is This Answer Correct ?    4 Yes 0 No