Answers for "what is testing"

3

what is testing

Process that checks the quality, performance  
and reliability of Software. Software testing
evaluates the quality of the application and improves
the quality. allows to get actual results instead of expected.
Posted by: Guest on January-06-2021
-2

testing

Process that checks the quality, performance  
and reliability of Software. Software testing
evaluates the quality of the application and improves
the quality. allows to get actual results instead of expected.
Posted by: Guest on January-06-2021
0

testing

function throttle( fn, time ) {
    var t = 0;
    return function() {
        var args = arguments, ctx = this;
        clearTimeout(t);

        t = setTimeout( function() {
            fn.apply( ctx, args );
        }, time );
    };
}
Posted by: Guest on May-01-2021
-2

Testing

ListView.builder(
itemCount: data == null ? 0 : (data.length > 10 ? 10 : data.length),
itemBuilder: (BuildContext context, int index) {
  if (data[index]['population'] >= 100000) {
    return new Card(
      child: Column(
        crossAxisAlignment: CrossAxisAlignment.start,
        children: [
          new Text(data[index]["name"]),
          new Text(data[index]["population"].toString()),
          new Text(data[index]["latlng"].toString()),
        ],
      ),
    );
  } else {
    return Container();
  }
Posted by: Guest on April-19-2021
-2

TESTING

my internet is so bad.
Posted by: Guest on May-20-2021
-1

what is adhoc testing

Ad-hoc testing is quite opposite to the
formal testing. It is an very informal 
testing type. In Adhoc testing, we are
randomly test the application without
following any documents and test design techniques.
This testing is primarily performed if
the knowledge of testers in the application
under test is very high. We as tester randomly
test the application without any test cases
or any business requirement document.
Posted by: Guest on January-17-2021

Browse Popular Code Answers by Language