Company: Deloitte IITK
Difficulty: medium
Which of the below testing techniques requires the partial implementation of the code?
A type of testing that is used to test - test cases is:
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';
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 BY fruits; II) SELECT DISTINCT fruits, COUNT(*) FROM customers; III) SELECT UNIQUE fruits, COUNT(*) FROM customers;
A government agency must ensure that classified data stored in the cloud remains confidential, even if unauthorized access occurs. Which data protection measure should they implement to meet this requirement?
Which of the following statements is true about the SAN? I. Reduced capital expenditures II. Decreased IT staff efficiency III. Higher system and application availability IV. Highly scalable, flexible storage architecture
A type of testing that is used to test - test cases is:
Consider the below div element: This is a div contents!!! Which of the code given below will re-construct the div make div content to 50px.
A financial institution needs to ensure that all its branch locations can securely transmit sensitive financial data over the internet to the central office without risking interception. Which protocol would be most appropriate for this requirement?
Which one of the statement given in options is true about the program given below? public enum Stages { CHILD, YOUTH, OLD; public char STAGES() { char level = '\u0000'; switch (this) { case CHILD: level = 'C'; break; case YOUTH: level = 'Y'; break; case OLD: level = 'O'; break; } return level; } } public static void main(String args[]) { System.out.println(CHILD.STAGES()); }