When should you stop testing?
When the allocated time has run out
When all planned tests have been executed
It is dependant on the risks for the item under test
When there are no more faults
What is the output? SELECT SUBSTRING('123456', 0, 3)
123
12
123456
456
Impact Analysis is used the most by which of the following?
Unit Testing
Maintenance Testing
Non-Functional Systems Testing
User Acceptance Testing
What would be the output of the code below in SQL Server 2005 and earlier versions? declare @d date select @d = '09/09/2008' select @d
09/09/2008
09-09-2008 00:00:00:000
Error Message
None of the above
What is the output? declare @d decimal select @d = 3.564636 select @d
4
3.56
3.564636
3
What is the output? DECLARE @val CHAR(20) SET @val = ' SQL is cool ' select LEN(@val)
20
14
13
what is the len of @c? declare @c varchar(8000) set @c = N'hello' + replicate('-',8000) print len(@c) print @c
8000
4000
4005
5
In SOA do we need to build systems from scratch?
True
False
Are web-services SOA ?