answersLogoWhite

0

Yes....String Test=application Integration test=assembly test.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How will you create a string in c plus plus?

#include <string> #include <iostream> using namespace::std; ... string str = "This is a test"; cout << str << endl; str = "This is also a test"; cout << str << endl; Gives you ... This is a test This is also a test


Test also known as fecal occult blood test?

Chromium


Test also known as the fecal occult blood test?

Hemoccult


What are the release dates for Crash Test Kids - 2013 Kids Test Silly String - 1.16?

Crash Test Kids - 2013 Kids Test Silly String - 1.16 was released on: USA:8 July 2013


How do you know there is valve damage on a 1999 Dodge Neon when timing belt breaks?

Remove the rocker assembly and pressure test the cylinders.Remove the rocker assembly and pressure test the cylinders.


What is a knowledge test at the dmv?

A test of your memorized knowledge, also known as the written test. You answer questions on paper and then they are graded.


What other name does the prothrombin time test go by?

The test is also known as the pro time or PT test.


An exfoliative biopsy of the cervix and surronding tissues is known as?

Papanicolaou test also known as pap smear test


What are the release dates for Crash Test Kids - 2013 Kids Test Silly String 1-16?

Crash Test Kids - 2013 Kids Test Silly String 1-16 was released on: USA: 8 July 2013


Program for palindrome in php?

You could use a function like this:function isPalindrome($string) {$string = strtolower($string);return (strrev($string) == $string) ? true : false;}and then to check a palindrome call an if statement like so:if(isPalindrome($test)) {echo $test.' is a palindrome';}else {echo $test.' is not a palindrome';}


What diagnostic procedure is also known as a stress test?

treadmill


What is the method of constructor overloading?

The first thing to note about constructor overloading is that Java creates a no argument constructor for you if and only if you have not typed a constructor yourself. Every class has a constructor even abstract ones (default no argument constructor). Abstract constructors are always executed. To overload a constructor you can do the following: class Test { String name; Test(String n) { name = n; System.out.println("Constructing Test Object named: " + name); } } In the case above we are overloading the default no argument constructor with a constructor that takes a String parameter. You can write you own no argument constructor as follows: class Test { Test() { System.out.println("Constructing Test Object"); } } To override our own no argument constructor we do this: class Test { Test() { // our no argument constructor System.out.println("Constructing Test Object"); } String name; Test(String n) { // overloading our no argument constructor with this // constructor that take a String parameter name = n; System.out.println("Constructing Test Object named: " + name); } }