Vb-Scripting Array Function – User friendly Tech help

Function Name:- ArraynnMeaning :- Used to creating Arrays(Returns Array type Variant)nnnSyntax:- Array(Arguments)n n Arguments are comma separated  n No Arguments are given 0 length array is created n n nExample:- n n Dim aNum n aNum = Array(“Helping”,”People”,”Learn”,”uftHelp.com”) n Msgbox aNum(0) ‘Returns Helping n Msgbox aNum(1) ‘Returs People n Msgbox aNum(2) ‘Returns Learn n Msgbox aNum(3)…

Install and configure PHP on ubuntu? – User friendly Tech help

“Without new experiences, something inside of us sleeps. The sleeper must awaken.” Frank HerbertFrank Herbert tnnStep1:- Open terminal window and type the below command(install php)nnsudo apt-get install php libapache2-mod-php php-mcrypt php-mysqln We have used extra parameters for configuring php to use apache server that we already installed and also to connect with mysql. So we…

Working with VAPI-XP in ALM ? – User friendly Tech help

Today we are going to discuss the basics of VAPI-XP and how to create our first VAPI-XP in ALM.nnMeaning:-VAPI-XP testing tool facilitate us to create new testing scripts using Microsoft VBScript, Microsoft JavaScript (JScript version), PerlScript, and PythonScript. Furthermore we can integrate these scipts into our application management process. Using VAPI-XP test scripts, we can…

Key Components of JAVA – User friendly Tech help

JDK, JRE and JVM are core concepts of Java programming language. As a novice in this language we should try to comprehend these concepts to visualize how it works logically.nnFor more updates do follow us on Facebook,Twitter or Google+nnnJava Development Kit (JDK) consists of tools needed to create the Java programs,like Java libraries, Java compiler(javac.exe),…

Understand Keyword Driven Framework by using UFT – (Part 1) – User friendly Tech help

Framework is to automation as beauty is to Nature. Amazing thing about our mother nature is that it brings happiness and rejuvenates our energy level, similarly framework makes our automation task more manageable and brings elegance in coding.Today we would be focusing on the fundamental architecture of the framework. We would be beginning with Keyword driven framework and…

How to create executable JAR for TestNG class using intellij and gradle? – User friendly Tech help

Problem:- How to create a executable JAR for testng class using intellij + gradle.nnTool stack :– Intellij (IDE) + Gradle (Build tool) + TestNg (Testing framework)nn Share more learn more  Fb, G+,Twitter  n GITHUB for complete code n Step1:– Create a basic java class to display “HelloBuild!”, execution using TestNG.n n public class TestBuild { @Test public…

How to optimize the performance of ng-repeat in AngularJS? – User friendly Tech help

Today we would focus on improving the performance of Angular JS code by learning the basics of ng-repeat and then how to enhance its capabilities.nnFollow us for more learning Fb,G+,Twitter.nnng-repeat :- nIt is directive which create instant of template for each item in the collection. It is identical to looping concept in any language say Java, for…

API testing interview Questions-1 ? – User friendly Tech help

n nDo follow us for more updates on  Fb,G+,Twitter.nnBasic API Testing interview questions:–nn1.What is the meaning of HTTP protocol?nn2.What are the range of methods available in HTTP? n 3.What is the difference between PUT and POST method?nn4.What are the different  HTTP status codes?nn5.Why we use 5XX error code?nn6.How we can filter the Head of the response?nn7.What…