Sunday, June 23, 2013
Explain the various File Operations
Posted by
Sunflower
at
6/23/2013 10:30:00 AM
0
comments
Labels: Abstract, Attribute, Contents, Create, Current, Delete, File Operations, files, Input, Location, Operating System, Operations, OS, Output, Pointer, Process, Re-position, Read, Truncate, Write
![]() | Subscribe by Email |
|
Tuesday, April 30, 2013
What is hard disk and what is its purpose?
Hard Disk and its Purpose
Posted by
Sunflower
at
4/30/2013 08:48:00 PM
0
comments
Labels: Access, Benefits, Capacity, Characteristics, Data, Discs, Disk Drive, Drives, files, Hard Disk Drives, HDD, Information, Operating System, Performance, Random, Read, Storage, Store, System, Write
![]() | Subscribe by Email |
|
Tuesday, September 25, 2012
What is the difference between functions and actions in QTP?
What are functions in QTP?
- Sub routines,
- Modules
- VBScript functions and so on.
- For creating a new function you can select new
function library from the file menu. This cause a new tab to open up in
the quick test professional window. You can even opt for multiple tests in
the same file.
- Next you need to save the function with extension
“.qfl” and associate the appropriate library with that particular function.
“Associate function library” option can be accessed from file menu.
- Now
the third step is to invoke the function using the usual simple function
call. Quite advanced or sophisticated functions can be generated using
DCOM and COM.
What are actions in QTP?
Differences between Functions and Actions in QTP
Posted by
Sunflower
at
9/25/2012 03:39:00 PM
0
comments
Labels: Actions, Argument, Automated Software Testing, Automation, Code, Data, Differences, files, Functions, Library, QTP, Quick Test Professional, Read, Resources, Test cases, Testing tools, User-defined, Users, Write
![]() | Subscribe by Email |
|
Wednesday, September 12, 2012
How will you call from one action to another action in QTP?
How to call from one action to another action?
- Either
you take the data from the data sheet of the action and import it as a
editable or local copy,
- Or
you take the data from the original action but here the data is read only
type.
Step by step procedure of how a call to an action can be inserted?
- Go
to insert menu, the select the “call to existing action” option and you
will be provided with a list of actions. From that select “insert call to
existing action” or you can also right click on any of the steps. The go
for the action button and then click on “insert call to existing” option. Now
a action properties dialog box pops up.
- There
is a browse button called “from test” and can be used to find the test
that holds the action to be called. All the reusable actions in the test
that you select are displayed in this action box.
- From
the action that is displayed select the action that is to be called and
its type as well as description both are displayed if available. This type
and description help you further in proper identification of the action
that you wish to be called. You can
even set other properties of the actions by going to the “setting general
action properties”.
- Now
you are done with setting the properties, decide on where the function has
to be inserted. For inserting the function you are provided with two
options namely:
- Now
the last step is to just clock on the OK button and you have your action
inserted. This action can be moved to any other desired location by just
dragging it to that position.
Posted by
Sunflower
at
9/12/2012 12:23:00 PM
0
comments
Labels: Action, Automated, Automated Testing Tools, Automation, Call, Data, Data Table, Dialog box, External, Local tests, Modifications, Objects, QTP, Quick Test Professional, Read, Repository, Reusable, Steps, Tests, Tools
![]() | Subscribe by Email |
|
Thursday, December 17, 2009
CPU Caching
The cache on your CPU has become a very important part of today's computing. The cache is a very high speed and very expensive piece of memory, which is used to speed up the memory retrieval process. Without the cache memory every time the CPU requested data it would send a request to the main memory which would then be sent back across the memory bus to the CPU. This is a slow process in computing terms. The idea of the cache is that this extremely fast memory would store and data that is frequently accessed and also if possible the data that is around it.
CPU's however use a 2 level cache system. The level 1 cache is the fastest and smallest memory, level 2 cache is larger and slightly slower but still smaller and faster than the main memory. The main problem with having too much cache memory is that the CPU will always check the cache memory before the main system memory.
Read cache is used to store copies of data and instructions that are retrieved from main memory or mass storage. If the central processing unit (CPU) needs to access the same data or instructions again, it can use the copy in read cache. This is much faster the going back to main memory or mass storage again. Write cache is a temporary store for data that needs to be written to main memory or mass storage. The CPU can move the data into cache very quickly, and then continue executing instructions. The data is subsequently moved to its permanent location by the cache controller, a process that takes more time because main memory and mass storage devices are much slower to access than cache memory.
Posted by
Sunflower
at
12/17/2009 08:13:00 PM
0
comments
Labels: Cache, Caching Memory, CPU, Data, Read, Store
![]() | Subscribe by Email |
|