Company: Deloitte IITK
Difficulty: medium
Which of the below testing techniques requires the partial implementation of the code? White Box Testing Black Box Testing Grey Box Testing None of the given options A type of testing that is used to test - test cases is: Mutation Testing Equivalence Class Testing Boundary Value Testing Stress Testing Which of the query(ies) given below will display employee ename that do not end with 'S'? I) SELECT * FROM emp WHERE ename not like '%S'; II) SELECT * FROM emp WHERE ename!='S%'; III) SELECT * FROM emp WHERE ename!='_S'; IV) SELECT * FROM emp WHERE ename not like '_S'; Only (III) Only (I) Only (III) and (IV) Only (I) and (II) Consider the table given below: NAME | FRUITS | QUANTITY RAM | MANGO | 5 SAAM | APPLE | 3 KAPIL | CHERRY | 1 RAJESH | GRAPE | 2 RUPESH | MANGO | 3 SUBHAN | CHERRY | 2 DIPTI | APPLE | 1 PRASANT | APPLE | 4 Which of the below given query/queries will display fruit name and quantity in each fruit type from CUSTOMERS table? I) SELECT fruits, COUNT(*) FROM customers GROUP