Hi, How to invoke QTP or any application through Command Prompt without using Vb script and batch file.... Reply me Srinivas
3 10152hi can any body give me a script for creating a modularity or keyword driven framework..i am working as a qtp tester for 2 months but still i am not exposed to framework in my company
1642Post New Excel QTP Interview Questions
List of the some best tools that can be useful for data-analysis?
1. when we r doing interface/conversion which things u will take care to improve the perfrmonce?(except bulk collect) 2. In conversion,u r loading the data using sql*loader,I dnt want to use sql*loader,& i have millions of records,Id der any way to load the data withing fraction of time considering best performance. 3. When u r doing conversion,taht using sql*loader u r loading data into staging table,u r writing control file bt I dnt want to use sql*loader,when u r creating con prog that time can we pass all values from flat file using paramere,valuset?how? 4. In flat file u got 50 records,out of 50 ,30 records are proceesed & inserted into base table,after taht clien understood that 1 item having wrong name e.g insted of ABC he given DCE, so can we delete?hw?(client permission is der) i have lot of wrong item name randomly spreaded,can we delete it?hw? 5.after doing validation hw u will follow approach to error out records?if i want to send all the error out records to client daily,whats ur approach? 6. In outbound interface is der any way to load the data(large data-millions of records) except UTL_FILE package? 7. what is parsing? 8. In technical doc.s which section will mention?except code? 9. Do u have any idea about code depository tool? 10.whats is performance tunning,DB link? 11, How u will do RMA?
What is the pic clause for the hhmmss type of data fields?
what is acid testing?
Macrophages present, which are present in the in the brain, are called as?
Which is the largest refractor telescope?
Can we handle exceptions in Struts programmatically?
What is the most powerful coding language?
What is the Command used to start the QTP
What is autowiring in spring? What are the autowiring modes?
What is difference between delivery document & scheduling?
What are the key points of data model of Cassandra?
You are the project manager for a web development project. You hold regular project status meetings and publish status reports on a timely basis. You know that communication is one of your most important functions. As such, all of the following are true except: A. Senders are responsible for sending clear, concise, complete messages. B. Receivers are responsible for understanding the message. C. Communication can be vertical or horizontal or both. D. Effective communication techniques include making eye contact, nodding, and asking clarifying questions.
Which conditional statement is the most convenient one to use in the case of multiple conditions in the vbscript language?
write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters