TFINTCBSCIXM1001 AS-TFINTCBSCIXM1001-T100 Basic Technical Knowledge

Loading demo links...

Showing 1–3 of 10 questions

Question 1

"Select cust_name from cmg where cust_emp_id between 200 and 400" can give

Select an option, then click Submit answer.

  • A customer name whose cust_emp_id is 200

  • A cust_emp_id whose cust_emp_id is 400

  • A customer name whose cust_emp_id is 250

  • Two customer names whose cust_emp_id are 200 and 250 respectively

Question 2

How do you rename file "new" as file "old"?

Select an option, then click Submit answer.

  • mv new old

  • rn new old

  • cp new old

Question 3

The SQL statement to change "Hansen" into "Nilsen" in the "LastName" column in the Persons table

Select an option, then click Submit answer.

  • Modify Persons SET LastName='Hansen' INTO LastName='Nilsen

  • Update Persons SET LastName='Hansen' INTO LastName='Nilsen'

  • Update Persons SET LastName='Nilsen' where LastName='Hansen'

  • Modify Persons SET LastName='Nilsen' where LastName='Hansen'