subject

Which of the following creates a new table called 'game_scores' with 2 columns 'player_name' and 'player_score'?
(a) create table game_scores (
player_name string(45),
player_score integer(10)
);
(b) new table (
player_name varchar(45),
player_score int(10)
) as game_scores;
(c) new table game_scores (
player_name varchar(45),
player_score int(10)
);
(d) create table (
player_name varchar(45),
player_score int(10)
) as game_scores;
(e) create table game_scores (
player_name varchar(45),
player_score int(10)
);

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 13:00
Which of the following statements is false? a. a class can directly inherit from class object. b. if the class you're inheriting from declares instance variables as private, the inherited class can access those instance variables directly. c. a class's instance variables are normally declared private to enforce good software engineering. d. it's often much more efficient to create a class by inheriting from a similar class than to create the class by writing every line of code the new class requires.
Answers: 3
question
Computers and Technology, 23.06.2019 15:00
To check whether your writing is clear , you can
Answers: 2
question
Computers and Technology, 23.06.2019 18:30
Where can page numbers appear? check all that apply. in the header inside tables in the footer at the bottom of columns at the top of columns
Answers: 1
question
Computers and Technology, 23.06.2019 20:00
Match the file formats with the types of multimedia they can store
Answers: 2
You know the right answer?
Which of the following creates a new table called 'game_scores' with 2 columns 'player_name' and 'pl...
Questions
Questions on the website: 13722367