Q1) What is the difference between Derived Role & Copy Role? Can't we just do a copy instead of deriving it when both have the same characterstics or inputs or functions??
2 16390can i see how many records does a vsam file have without browsing or without using file-aid? and same for ps file?
3 9620You want a automation tool to be used for your project. How will you convince the client for the same. Please give me specific answer.
2 5698Post New Tech Mahindra Interview Questions
hi, i applied for AIRPORTS AUTHORITY OF INDIA for the post of AIR TRAFFIC CONTROLLER(ATC)..so plz send me the sample questions to my id...88arun@gmail.com
How To Use Amazon Sqs?
Can you configure two diff free goods items for one single item?
What are the 10 characteristics of data quality?
Is data structures and algorithms important?
Does formatting remove bad sectors?
What is public role in sql server?
What is chkdsk used for?
For which criteria in workflow “time dependent workflow action” cannot be created?
explain the percentage approved
In .NET how can you solve the DLL Hell problem?
Name the device which converts sound energy into mechanical energy?
How to iterate through two lists in parallel?
How to export job and execute outside from talend studio
I used the below code to open QTP through VBscript?But i can unable to Invoke QTP...PLZ help me with the correct code to invoke QTP through VBS with description of the code aswell. Dim qtApp 'As QuickTest.Application 'Declare the Application object variable Dim qtTest 'As QuickTest.Test 'Declare a Test object variable Dim qtResultsOpt 'Declare a Run Results Options object variable Set qtApp = CreateObject("QuickTest.Application") 'Create the Application object qtApp.Launch 'Start QuickTest qtApp.Visible = False 'Make the QuickTest application visible qtApp.Open "C:\form", True 'Open the test in read-only mode 'set run settings for the test Set qtTest = qtApp.Test qtTest.Run 'Run the test 'WScript.StdOut.Write "Status is: " & qtTest.LastRunResults.Status 'Check the results of the test run qtTest.Close 'Close the test qtApp.quit 'Close QuickTest Pro Set qtResultsOpt = Nothing 'Release the Run Results Options object Set qtTest = Nothing 'Release the Test object Set qtApp = Nothing 'Release the Application object