Which of the following keywords will you use to set the default timezone?
Each correct answer represents a complete solution. Choose all that apply.
Which of the following OOPS design patterns is used to encapsulate a data source so that accessing the data source components becomes hidden within the class that implements the pattern?
Which of the following is the method that is used to check whether the version required for running the application exists or not?
Which of the following keywords will you use to set the default timezone?
Each correct answer represents a complete solution. Choose all that apply.
You have a table created as follows:
create table foo (c1 int, c2 char(30), c3 int, c4 char(10))
If column c1 is unique, which of the following indexes would optimize the statement given below?
Select distinct (c1), c3 from foo where c1=10
Which of the following functions can you use to mitigate a command injection attack?
Each correct answer represents a complete solution. Choose all that apply.
You have a table created as follows:
create table foo (c1 int, c2 char(30), c3 int, c4 char(10))
If column c1 is unique, which of the following indexes would optimize the statement given below?
Select distinct (c1), c3 from foo where c1=10
Consider the following script:
This is a test script.
echo 'This is some sample text';
?>
Which of the following tags is used in the php script?
You want to set the form method in post and action to /uc/zend.php when you are using the Zend_Form class. Which of the following code snippets will you use to accomplish the task?
Which of the following classes will you use to store objects and values in the application space?