Is the address bus unidirectional?
The address bus is unidirectional because the address information is always given by the Micro Processor to address a memory location of an input / output devices. Read more »
The address bus is unidirectional because the address information is always given by the Micro Processor to address a memory location of an input / output devices. Read more »
Static RAM: No refreshing, 6 to 8 MOS transistors are required to form one memory cell, Information stored as voltage level in a flip flop. Dynamic RAM: Refreshed... Read more »
GUI Map editor displays the content of a GUI Map. We can invoke GUI Map Editor from the Tools Menu in WinRunner. The GUI Map Editor displays the various GUI Map... Read more »
The GUI map is actually the sum of one or more GUI map files. There are two modes for organizing GUI map files. Global GUI Map file: a single GUI Map file for the... Read more »
If the object does not have a name then the logical name could be the attached text. Read more »
WinRunner fails to identify an object in a GUI due to various reasons. The object is not a standard windows object. If the browser used is not compatible with... Read more »
TestDirector is Mercury Interactive software test management tool. It helps quality assurance personnel plan and organize the testing process. With TestDirector... Read more »
WinRunner testing process involves six main stages 1. Create GUI Map File so that WinRunner can recognize the GUI objects in the application being tested 2. Create... Read more »
The following example illustrates this It creates a function called square with argument x and returns x multiplied by itself. var square = new Function (”x”,”return... Read more »
Continue statement continues the current loop (if label not specified) in a new iteration whereas break statement exits the current loop. Read more »
The delete operator is used to delete all the variables and objects used in the program ,but it does not delete variables declared with var keyword. Read more »
Undeclared variables are those that are not declared in the program (do not exist at all),trying to read their values gives runtime error.But if undeclared variables... Read more »
No.Javascript does not have block level scope,all the variables declared inside a function possess the same level of scope unlike c,c++,java. Read more »
It is perfectly legal to assign a number to a variable and then assign a string to the same variable as follows example i = 10; i = “string”; This is... Read more »
(i)Undefined value cannot be explicitly stated that is there is no keyword called undefined whereas null value has keyword called null. (ii)typeof undefined variable... Read more »