Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

HP Load Runner Interview Questions
Questions Answers Views Company eMail

What is maximum No of Vusers that we can load using LoadRunner8.0 and how should we connect to database using loadrunner

4 10544

i have 4 systems 1-windows,1-unix,1-linux,1-solaris. 100 vusers to 25 vusers each system. script was created in windows system. then i want to know how can i do this, do i need to install LR in all the systems ? please explain whole the scenario up to...Run step by step---plz give answer only realtime...?

5 8394

we have Unix monitors in LR by default. if i want Linux and Solaris monitors....what i do.. unix is working for Linux and solaris?

1 4364

Hi i have installed LR 8.0v on my system and wanted to test siebel web application. when i tried to record the application throught siebel web protocol, the launcher tries to connect to that URL but after some time the URL gives as Page Cannot Be Displayed, the same URL when we login manually it works fine. LR is not able to connect to the Application. What could be the reason?

1 4288

How is the 90 percentile calculated? Say I am having total 2000 transactions pumped to the system and I have 1800 passed and 200 failed. So the 90 pertile is considered from the Passed transactions or (passed+failed) transactions?

4 9136

what is latency and bandwidth

1 2952

What is Latency and Bandwidth

1 2999

What is Standard deviation? How it will use in Lr?

2933

I have one Scenario login then bookcoffee then logout explain test plan for above scenario?

1550

What is SoketLevelData? And Its purpose?

2 3925

Events are generated, but the script is not generating? Why?

2 3520

Post New HP Load Runner Interview Questions


HP Load Runner Interview Questions


Un-Answered Questions

What is an er diagram?

624


What does exit () do in python?

443


How does blockchain work?

1


Does stringutils isempty check for null?

421


Explain what is plain seam?

1






Explain the difference between asp and html? Or why asp is better than html?

569


I want to use the markerfor playing a video using the jmf.Suppose my video length is of 2 hours.I want it to play ex-15 mintue or 20 mintue and should stop after assigning the time.I am providing my piece of code............please help me.... package com.jha.cdac.lila.praveen; import java.awt.BorderLayout; import java.awt.Component; import java.awt.Container; import java.awt.Dimension; import java.awt.Toolkit; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import java.io.File; import java.net.URL; import javax.media.ControllerAdapter; import javax.media.Manager; /** * * @author vinays */ import javax.media.Player; import javax.media.RealizeCompleteEvent; import javax.media.Time; import javax.swing.JFrame; public class PlayVideo extends javax.swing.JFrame{ Player player; Component center; Component south; // this code is required for playing the video file of mpeg,mp4,mp3,3gp,rm,flv, //wmf,mpv,vob,qt and the asf extension public PlayVideo() { File file = new File("Lesson1.mpg"); try { load(file); // load() } catch (Exception ex) { //Logger.getLogger(LessonNarrative.class.getName ()).log(Level.SEVERE, null, ex); System.out.println("Error while loading file............"+ex); } } //the piece of code given below is used to load the file which user want to play. public void load(final File file) //load the file throws Exception { URL url = file.toURL(); final Container contentPane = getContentPane(); if (player != null) { player.stop(); } // MediaLocator mediaLocator=new MediaLocator (file.toURL()); // DataSource dataSource=Manager.createDataSource (mediaLocator); // player=Manager.createPlayer(url); player = Manager.createRealizedPlayer(url); ControllerAdapter listener = new ControllerAdapter() { @Override public void realizeComplete( RealizeCompleteEvent event) { Component vc = player.getVisualComponent(); player.getVisualComponent(); if (vc != null) { contentPane.add(vc, BorderLayout.CENTER); center = vc; } else { if (center != null) { contentPane.remove(center); contentPane.validate(); } } Component cpc = player.getControlPanelComponent(); if (cpc != null) { contentPane.add(cpc, BorderLayout.SOUTH); south=cpc; } else { if (south != null) { contentPane.remove(south); contentPane.validate(); } } pack(); // //setTitle(file.getName()); //to get the title of Video or Audio File } }; Time tm=new Time(30.4402403); Time tm1=new Time(5.7256199); player.addControllerListener(listener); player.setMediaTime(tm1); player.setStopTime(tm); // player.setMediaTime(new Time(5.0)); //player.setStopTime(new Time(73)); player.realize(); player.start(); } public static void main(String args[]) throws ClassNotFoundException { PlayVideo pv = new PlayVideo(); JFrame f = new JFrame("Lesson1"); f.addWindowListener(new WindowAdapter() { @Override public void windowClosing(WindowEvent e) { System.exit(0); } }); f.getContentPane().add("Center", pv); f.pack(); Dimension screenSize = Toolkit.getDefaultToolkit ().getScreenSize(); int w = 420; int h = 140; pv.setLocation(screenSize.width/2 - w/2, screenSize.height/2 - h/2); pv.setSize(w, h); pv.setVisible(true); }

3851


Which all languages Apache Spark supports?

238


Explain file manager?

613


What is a 'block' in HDFS?

682


My evaluation version has expired! Are my databases toast?

528


For a flower to be complete, it must possess what four types of floral appendages?

523


Tell about Kotak bank's top management and awards?

658


Difference between load and get?

178


How to execute jQuery code after the DOM is ready?

475