Answer:
The last 2 point in the given question is the correct answer to the given question i.e
an argument passed to the function in the correct positional order an argument wherein the number of arguments in the function call should match the definition of the function.Explanation:
The required argument are those argument that are passing to the method the in the right location order.In the required argument the number of arguments in the call method must match the definition of the function .
For example
def fun( s ): #function definition
print(s) #display s
fun('er')#calling
In this example there is function fun() in which we pass the argument 'er' we call that function from main() .The control moves to the function definition it checks the number of argument in the calling function fun() is matched with the definition of function fun() and print 'er'.
All the other option are not describing the required argument that's why this is incorrect option .
Answer:
Its the last two points
Explanation:
Which information can you apply to every page of your document with the page layout options?
Answer:
the page layout tab holds all the options that allow you to arrange your document pages Just the way you want them. you can set margins, apply themes, control of page orientation and size
Answer:
the page layout tab holds all the options that allow you to arrange your document pages Just the way you want them. you can set margins, apply themes, control of page orientation and size.
Explanation:
Dinah is using an IDE to write, modify, and save code. Which tool should she use?
When cleaning a firearm, what end of the firearm should you generally clean from?
Answer:
Explanation:
You should always clean from the breech (chamber) end. On firearms that you don't have access to the breech, you should put the cleaning rod through the muzzle to the breech. Then place the cleaning patch or brush on the end of the rod. Then PULL the rod through the barrel and out of the muzzle.
Which was the first home game console to be launched?
O A.
VCS 2600
OB. Odyssey
OC. Odyssey 100
OD.
Magnavox
O E.
VCS 5800
Answer:
B: Odyssey
Explanation:
Odyssey, by Magnavox, was the first console ever made.
Answer:
B: Odyssey
Explanation:odyssey by magnavox was the first ever console made
What can JavaScript be used for if I want to hack something I learned JavaScript but don’t know what to hack with it
Answer:
JavaScript allows users to interact with web pages.
Explanation:
Which HTML tag is formatted correctly? This is a heading This is a heading This is a title This is a paragraph
Answer:
The tags must be formatted:
<h1> This is a heading </h1>
<h1> This is a heading </h1>
<title>This is a title</title>
<p>This is a paragraph</p>
Explanation:
You always need a start tag <> and an end tag </>. Depending on what you want in the tag is up to you. If you want a title, then the tag is <title> at the start and </title> at the end.
Answer:
A, the first one
<h1>This is a heading</h1>
hope this helps :)
Ms. Jones, the art director for the game Ninja: Shadow
Warrior, prepares the game's art style guide. What phase of
game development is Ms. Jones currently in?
the pre-production phase
the alpha phase
the gold phase
the concept phase
Answer:
i think the pre-production phase. Sorry if i'm wrong
Explanation:
Google Docs, MS Word, Google Slides, MS PowerPoint, Google Sheets, MS Excel In your opinion which software in each category is easier to use?
Answer:
I my opinion Google software is easier to use.
Explanation:
It is more upgraded and it's basically like kind of the latest version of Microsoft Software
This is just my opinion, I use Google Applications for every single thing in my life
Answer:
Google Docs.
Explanation:
I chose Google Docs because, in my opinion I feel that Google Docs lets me more creative with my papers. I feel this way because in Google Docs, I am able to add pictures in wherever I want, and I am able to resize them. Not to say that any of the other platforms listed don't have these features. But, Google Docs is easier to use. I think this way because, it doesn't have a bunch of shortcuts and other things on the top which is helpful. Not having the shortcuts at the top is helpful because I happen to find myself just looking for a specific shortcut and I accidentally click the wrong one it takes forever to go back and redo what it did.
Consider the following SQL code to generate a table for storing data about a music library. CREATE TABLE playlists ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT ); CREATE TABLE songs ( id INTEGER PRIMARY KEY AUTOINCREMENT, title TEXT, artist TEXT, album TEXT, year NUMERIC, playlist_id INTEGER, FOREIGN KEY(playlist_id) REFERENCES playlists(id) ); Critique the design of this database, as by proposing and explaining at least two ways in which its design could be improved. Hint: Might songs end up with (lots of!) duplicate values in some columns?
Answer:
1. The size of the text fields not mentioned. How long is the song? 100 characters? 10000 characters?
2. Song table has the playlist id in it. It means playlist is connected to the song, not the other way
Lets say song "abc" exists in 2 play lists "alphabets" and "nursery rhymes"
The song table will look like this
01 - "abc" - "alphabets"
02 - "abc" - "nursery rhymes"
If you asked me how many songs you had in the table, I cannot answer that directly.
The best way is to have three tables
Songs table (contains information about the song)
playlist table (contains information about the playlist)
song_playlist table - that ties the song id and playlist id
Explanation:
Answer:
Explanation:
557629