Question

Answer the following questions so I can double check my work Controls the flow of execution...

Answer the following questions so I can double check my work

Controls the flow of execution based on a condition

begin...end

try...catch

goto

if...else
10 points   
QUESTION 2
Changes the database context to the specified database.

set

alter

exec

use
10 points   
QUESTION 3
Exits the innermost WHILE loop.

goto

quit

return

break
10 points   
QUESTION 4
Controls the flow of execution when an error occurs

declare

on error goto

try...catch

continue...error
10 points   
QUESTION 5
Declares a local variable.

set

declare

let

var
10 points   
QUESTION 6
Statements that must be run in their own batch.

create view

create trigger

create schema

create function

create table

create procedure
10 points   
QUESTION 7
To signal the end of a batch use the ____ command.

end

quit

stop

go
10 points   
QUESTION 8
If you create a database within a script, you have to execute the batch that contains the Create Database statement before you can execute other statements that refer to the database. True False
10 points   
QUESTION 9
If you need to store variables within a script, you can store them in:(choose all that apply)

global variables

scalar variables

temporary variables

vector variables

table variables
10 points   
QUESTION 10
Use the ____ cmd to create a variable and the ____ cmd to assign it a value.

set, declare

var, set

declare, let

declare, set
10 points   
QUESTION 11
A scalar variable can contain multiple values at the same time. True False
10 points   
QUESTION 12
The name of a variable must always begin with

a letter

var_

@

#

0 0
Add a comment Improve this question Transcribed image text
Answer #1

1.D = If and Else

we can control the FLow of Execution with the Help of the IF and ELSE conditions.

2. = Alter

The ALTER is the Command in the Database that will help to change or Modify the Content In the Database.

3.D = Break.

With the Help of the Break Statment, we can easily exit from the While Loop.

4. C = Try Catch

The Try Catch is the Method that can control the Flow of Execution when an Error occurs.

5. D = VAR

VAR is the Short Term of Variable and that helps for the Initializing of the Global Variable.

6.A = CREATE VIEW

Create View is the statement that must be run in their own batch.

7.A = END

END is the Signal command that will help to signal the end of the batch.

8.True

Yes.

If we create a database within a script, you have to execute the batch.

That contains the Create Database statement before you can execute other statements that refer to the database.

9. A and C = Global Variable and Temporary Variable

We need Global Variables and Temporary Variable to store the variable in a script.

10.B = Var and SET

Var and SET are the Commands to Create and Declare the Variables.

11.A = A letter.

The Name of the Variable can Be Begin With the letter.

Add a comment
Know the answer?
Add Answer to:
Answer the following questions so I can double check my work Controls the flow of execution...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • using sql answer the following i need to double check my answers Question 1 Controls the...

    using sql answer the following i need to double check my answers Question 1 Controls the flow of execution based on a condition begin...end try...catch goto if...else 10 points Question 2 Changes the database context to the specified database. set alter exec use 10 points Question 3 Exits the innermost WHILE loop. goto quit return break 10 points Question 4 Controls the flow of execution when an error occurs declare on error goto try...catch continue...error 10 points Question 5 Declares...

  • Answer the following and explain so I can double check my answers If you use the Management Studio to create a database, the Studio will automatically create a database file plus a ________________...

    Answer the following and explain so I can double check my answers If you use the Management Studio to create a database, the Studio will automatically create a database file plus a ______________________ file. 10 points    QUESTION 2 When you use the Management Studio to create a check constraint, you can specify whether you want the constraint enforced for insert or __________________ operations. 10 points    QUESTION 3 When you use the Management Studio to create a database, including its tables...

  • Answer the following questions I want to double check my work

    Answer the following questions I want to double check my work Q1: (8086 processor) Translate the following code segment written in high level languages into assembly code. Assume Ax contains signed number. If AX >=2 then CX=CX+1 ; Else AX-CX; End Q2: Show how this statement M JK-1 could be translated into assembly code using 8086 instruction set a) b) MIPS instruction set Assume M. J and K are memory variables In s086 assume 16-bit, we can use MOv instruction...

  • Can someone please help me with a DECLARE, SET, PRINT in sql server. my issue is variable 3 does not add up to 99999.99? I am so frustrated CHAPTER 14 - USING VARIABLES IN SCRIPTS --- Use the AP datab...

    Can someone please help me with a DECLARE, SET, PRINT in sql server. my issue is variable 3 does not add up to 99999.99? I am so frustrated CHAPTER 14 - USING VARIABLES IN SCRIPTS --- Use the AP database. Create 3 variables named anything you want. Set the first variable equal to 9876.22. Set the second variable equal to 187.69. Set the third variable equal to the sum of the first and second variables. Use a PRINT statement to...

  • answer the following so i can double check my answers. use sql knowledge Question 1 A...

    answer the following so i can double check my answers. use sql knowledge Question 1 A table may have more than on clustered index. True False 10 points Question 2 All columns in a covering index must be from the same table. True False 10 points Question 3 Clustered indexes hold the data, not pointers to the data. True False 10 points Question 4 It is a good idea to index BLOB objects. True False 10 points Question 5 A...

  • 1. This trigger is from Figure 16.2 of the text. Copy and run this trigger so it is created in th...

    1. This trigger is from Figure 16.2 of the text. Copy and run this trigger so it is created in the ap database. You can run the UPDATE below to test it. Notice two things. The error message appears as a pink screen just like a syntax error would. Also, if you then query the invoices table, the UPDATE statement did not execute. The trigger prevented the erroneous UPDATE from changing the data.                 DELIMITER // CREATE TRIGGER invoices_before_update    BEFORE UPDATE...

  • Here is the UML for the class Contact -fullName : string -phoneNum: string -emailAddress : string...

    Here is the UML for the class Contact -fullName : string -phoneNum: string -emailAddress : string +Contact()                     //default constructor sets all attribute strings to “unknown”; no other constructor +setName(string name) : void +setPhone(string pn) : void +setEmail(string em) : void +getName() : string +getPhone() : string +getEmail() : string +printContact() : void         //print out the name, phone numbers and email address Create New Project Name your project: CIS247_Lab7_YourLastName. For this exercise, you may use a header file or one file...

  • Look at this partial class definition, and then answer questions a - b below: Class Book...

    Look at this partial class definition, and then answer questions a - b below: Class Book    Private String title    Private String author    Private String publisher    Private Integer copiesSold End Class Write a constructor for this class. The constructor should accept an argument for each of the fields. Write accessor and mutator methods for each field. Look at the following pseudocode class definitions: Class Plant    Public Module message()       Display "I'm a plant."    End Module...

  • Please Explain the following question in detail so that I can understand how to solve it:...

    Please Explain the following question in detail so that I can understand how to solve it: Assume that you want to use both an input file called "myinput.txt" and an output file called "myoutput.txt" which are located in a folder called "mydata" on the g: drive. In the program below, fill in all the missing details so that you can read a series of values (one by one) from the input file into the variable "num". Continue to read values...

  • I need help writing my main method**** Computer Science 111 Introduction to Algorithms and Programming: Java...

    I need help writing my main method**** Computer Science 111 Introduction to Algorithms and Programming: Java Programming Project #4 – Classes and Objects (20 Points) You will create 3 new classes for this project, two will be chosen from the list below and one will be an entirely new class you invent.Here is the list: Shirt Shoe Wine Book Song Bicycle VideoGame Plant Car FootBall Boat Computer WebSite Movie Beer Pants TVShow MotorCycle Design First Create three (3) UML diagrams...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT