Answer:
B. C. E.
hope this helps :D
Answer:
The definition of a function must come before where the function is used.
A function can have more than one parameter.
A function can use variables as parameters.
Explanation:
You’ve been tossed into an insane asylum. What do you tell the people there to prove to them that you don’t belong inside?
An asylum is for crazy people. I'm crazy. Crazy people don't realize they're crazy. If I realize I'm crazy, then I'm not crazy. Therefore, I do not belong here.
What is the purpose of slicing?
a. To combine characters in order to form a single string
b. To combine two or more strings into one big string
c. To pull out a group of characters from a string
d. To pull out one specific character from a string
Answer:
C
Explanation:
Because a and b are talking about combining and when you slice you don't combine when you slice and when you slice something its into 2 or more parts, unlike what d says
Kris is the project manager for a large software company. Which part of project management describes the overall project in detail?
1) Analysis report
2) Resources document
3) Scope
4) Scope creep
Answer:
Scope or 3)
hope this helps
always love to be marked brainliest
The type of medium used to hide data in steganography is referred to as __________. This may be a photo, video, sound file, or Voice over IP, for example.
Answer:
:L
Explanation:
Answer:
symmetric cryptography
Explanation:
What will you see on the next line?
>>> aList = [12, 3, 5, 7, 7]
>>> aList.index(7)
1
7
3
2
Answer:
its 3, just did it on edg 2020
Explanation:
sdfdsfdsfdsfsdfsdf vote me brainliest!
The next line after >>> aList = [12, 3, 5, 7, 7], >>> aList.index(7) is 3. The correct option is c.
What is an array?A group of identical objects or pieces of data held near to one another in memory is referred to as an array. An array type is a user-defined data type that consists of an ordered collection of objects of a single data type. Ordinary array types have a set maximum number of elements they can hold and use the ordinal position as the array index.
The unordered list that is a part of the simple array is thus visible. The unordered list can be converted to an ordered list by executing the command "aList. sort()".
So, the next line will be:
>>> aList = [12, 3, 5, 7, 7]
>>> aList.index(7)
3
Therefore, the correct option is c. 3.
To learn more about array, refer to the link below:
brainly.com/question/14915529
#SPJ2
A restaurant recorded the ages of customers on two separate days. You are going to write a program to compare the number of customers in their teens (ages 13 to 19).
What is the missing line of code to count the number of customers in their teens?
customerAges = [13, 3, 11, 24, 35, 25, 15, 18, 1]
countTeens = 0
for item in customerAges:
_____:
countTeens = countTeens + 1
if 13 <= item <= 19
if 13 < item < 19
if 13 <= item[0] <= 19
if 13 < item[0] < 19
Answer:
if 13 <= item <= 19
Explanation:
Edge 2021
The missing line of code to count the number of customers in their teens is if 13 <= item <= 19. The correct option is b.
What is programming?A form of computer programming language known as procedural programming describes a number of well-planned actions and processes during the course of its development.
It includes statements, functions, and commands that are organized systematically to finish a computing task or program. Its main focus is on developing procedures.
While object-oriented programming is a type of programming where the emphasis is on generating objects as opposed to actions and data or logic. Inheritance, polymorphism, abstraction, and encapsulation are its four guiding concepts.
Therefore, the correct option is b, if 13 <= item <= 19
To learn more about programming, refer to the link:
https://brainly.com/question/14368396
#SPJ2
Soft skills are more likely to be transferable than hard skills?
True or false
Answer:
The correct answer is true.
Explanation:
Examples of Soft skills are
Communication TeamworkPositive Attitude etc.These skill can be applied to any job. That is why we have said that soft skill are transferrable.
Now let look at hard skill,
Hard skill like programming in python. Making the architecture of computer. These skill can not be transferred to a new job like authoring a book.
so, hard skills are not easily transferrable.
What kinds of circumstances would lead you to writing a function versus using a loop? please explain in simple terms
Answer:
1. You want to use parameters
2. You don't want your program to run multiple times
3. You want to call that snippet of code throughout your program
hope this helped :D
select the correct option
and thanks
Answer:
Cucumber
Explanation:
Cucumber has the largest portion. .08 kg/tray/day. The entire graph equals 100%, and the cucumbers take up 17.8% of it.
Write a program to have the computer guess at a number between 1 and 20. This program has you, the user choose a number between 1 and 20. Then I, the computer will try to my best to guess the number. Is it a 18? (y/n) n Higher or Lower (h/l) l Is it a 5?(y/n) n Higher or Lower (h/l) h Is it a 10? (y/n) y I got tour number of 10 in 3 guesses.
Answer:
This question is answered using C++ programming language.
#include<iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(){
int num, computerguess;
char response, hl;
cout<<"Choose your number: ";
cin>>num;
srand((unsigned) time(0));
int high = 20; int low = 1; int guess = 0;
computerguess = low + rand() % high;
cout<<"Is it "<<computerguess<<" ?y/n: ";
cin>>response;
while(response == 'n'){
cout<<"Higher or Lower? h/l: ";
cin>>hl;
if(hl == 'h'){ low = computerguess+1; }
else{ high = computerguess-1; }
guess++;
computerguess = low + rand() % high;
cout<<"Is it "<<computerguess<<" ?y/n: ";
cin>>response;
}
cout<<"I got your number of "<<num<<" in "<<guess+1<<" guesses.";
return 0;
}
Explanation:
This declares num (user input) and computerguess as integer
int num, computerguess;
This declares response (which could be yes (y) or no (n) and hl (which represents high or low) as char
char response, hl;
This prompts user for input
cout<<"Choose your number: ";
This gets user input
cin>>num;
This allows the computer be able to generate different random numbers at different intervals
srand((unsigned) time(0));
This declares and initializes the range (high and low) to 20 and 1 respectively. Also, the initial number of guess is declared and initialized to 0
int high = 20; int low = 1; int guess = 0;
Here, the computer take a guess
computerguess = low + rand() % high;
This asks if the computer guess is right
cout<<"Is it "<<computerguess<<" ?y/n: ";
This gets user response (y or n)
cin>>response;
The following iteration is repeated until the computer guess is right
while(response == 'n'){
This asks if computer guess is high or low
cout<<"Higher or Lower? h/l: ";
This gets user response (h or l)
cin>>hl;
If the response is higher, this line gets the lower interval of the range
if(hl == 'h'){ low = computerguess+1; }
If the response is lower, this line gets the upper interval of the range
else{ high = computerguess-1; }
This increments the number of guess by 1
guess++;
Here, the computer take a guess
computerguess = low + rand() % high;
This asks if the computer guess is right
cout<<"Is it "<<computerguess<<" ?y/n: ";
This gets user response (y or n)
cin>>response; }
This prints the statistics of the guess
cout<<"I got your number of "<<num<<" in "<<guess+1<<" guesses.";
Help with my Nintendo DS please I now it’s not school related but I need it for my little sister
Answer:Go to settings and do factory reset!
Explanation:
help pleaseee!!!!!!! will give brainliest !!!!!
How do you increase the number of CPUs in a virtual machine in order to optimize it?
Answer:
Not sure if this will help
Explanation:
increase the number of motherboards, and install compatible CPUs on each motherboard
Which visual novels do you recommend and why?
Answer:
I rec recommend Fate/Stay Night. It's honestly so good!
Explanation:
Kayla wants to know whether she should set her network up as a WAN or a LAN. What are the three questions you would ask her, and how would those questions affect your recommendation?
Answer:
I would ask her: One, how large will the business be? Two, how secure she wants/needs the connection to be. And three, how much money she is willing to spend to install and/or maintain her network.
Since Kayla is just starting her business, my recommendation would be to set up her network as a LAN. A LAN is a group of computers and network devices connected together, and most often reside in one building. Kayla's business will start small, so it is not needed to set up her network as a WAN. WAN's are usually not restricted to a geographical location, and can be expanded to cover a whole country, or even a planet. A LAN would make sense in the coverage aspect, since Kayla's business has not expanded yet.
Depending on how secure she wants her network to be, she can choose whether or not she uses WAN or LAN. WAN is less secure, as it covers a large geographical area, while LAN is more secure. LAN is more secure because it covers a smaller area. I would recommend using LAN as it is better to have a secure network as a business.
Finally, Kayla needs to address the cost of setting up and maintaining a LAN or WAN. I would recommend that Kayla uses a LAN because as a starting business, it is important to allocate money properly. LAN's usually cost less to install and maintain due to it's smaller geographical radius, so it would be best to choose to set up her network as a LAN.
Explanation:
Select the correct answer
Which filter enhances the color contrast around the edges of an image?
A. Texture filters
B.Sharpen filters
C.Blur filters
D.Noise filters
Answer: C. Blur filters
Explanation:
The unsharp mask filters or blur filters can be used for professional color correction. This will adjust the contrast of the image. Edge details and may produce a darker and lighter line on all side of the edges. This helps in creating illusion or blur image giving a sharp contrast and sharper image.
So, the color answer C. Blur filters
Answer:
B, Sharpen Filters
Explanation:
i got it right lol
What predefined match policy allows viewers to watch a claimed video but does not allow ads to display on the video
Answer:
The correct response is "Track".
Explanation:
Tracks encourage the individual that listens to that same music video to miss or ignore that same starting of almost any soundtrack at a certain moment. It might also impact an individual who accompanies a facility that implements or obeys guests.For obvious reasons, a digital ad service can track client's internet search engine behavior patterns to continue providing accurate recommendations.
Name the stringed instrument that's known for its haunting sound, wide pitch capability, and large numbers in the orchestra.
A. Harp
B. Violin
C. Viola
D. Clarinet
The subject is Music Technology.
Answer:
VIOLIN
Explanation:
The VIOLIN is the stringed instrument that's known for its haunting sound, wide pitch capability, and large numbers in the orchestra.
Describe the history of computer in Nepal.
Answer:
The first computer brought in Nepal was IBM 1401 which was brought by the government in lease for the population census of 1972 (2028 BS). Later in 1975 (2031 BS)YantrikSarinikaran Kendra (Electronic Data Processing Centre) was established which was later called as National Computer Centre ( NCC )
Answer:
The first computer brought in Nepal was IBM 1401 which was brought by the government in lease for the population census of 1972 (2028 BS). Later in 1975 (2031 BS)YantrikSarinikaran Kendra (Electronic Data Processing Centre) was established which was later called as National Computer Centre ( NCC )
Explanation:
if this answer is correct please make as brainlelist
Which is the most recent version of Microsoft Windows?
Windows 10
Windows NT
Windows Service Pack 2
Windows Longhorn
Answer:
Windows 10
Explanation:
Answer:
Windows 10
Explanation:
Windows 10 was released in 2015 while other are old
What is the other name of the horizontal column graph?
graph is also known as the horlzontal column graph.
Answer:
Side Graph mabye?
Explanation:
Answer:
A bar graph.
Explanation:
A bar graph is also known as the horizontal column graph.
) Find and write the o/p :
X=[“F”,66,”QE”,15,”S”,34]
Y=0
Z=” ”
A=0
for c in range(1,6,2)
Y+=c
Z=Z+X[c-1]+'$’
A+=X[c]
Print(x,y,z)
Answer:
The output of this question is
['F', 66, 'QE', 15, 'S', 34] 9 F$QE$S$
Explanation:
In this question the user want to print the value of X,Y and Z
Let calculate the value of X first.
As the value of X is not altered in the program to its value will be the same that is:
['F', 66, 'QE', 15, 'S', 34]
Now we will calculate the value of Y
It is written as
Y+=c
which can be written as Y=Y+c
The loop here start form 1, the it go to 3 then 5 as explained below
Range(1,6,2) is written
The first value is the start value
The second value is stop value
While the third value is how much to increment.
So first its value will be 1 then increment it by 2. It will become 3
then increment it by 2 again it will become 5. in the next step it will become 7 which is out of range
so
Y=Y+c => Y=0+1 (first loop)
Y=1+3 (second loop)
Y=4+5 (third loop)
Some y will be 9
Now let focus on the value of Z
Z= " " +X[1-1]+'$' (first loop) value of c=1
so it will become
Z=F$
Now in 2nd Loop
Z=" " + X[3-1]+'S' (2nd loop) value of c=3
it will become
Z=QE $
Now in 3rd Loop
Z=" " + X[5-1]+'S'
it will become
Z=" " S + $
so the overall answer of print will become
['F', 66, 'QE', 15, 'S', 34] 9 F$QE$S$
How does entertainment relate to coding?
Answer:
not sure if this is the type of answer you're looking for but: Entertainment can relate to coding because in TV shows and movies, there is lots of editing. Especially with cartoons. Inorder to make these, we have to use coding. This can even relate to real life plays and preformenses depending on how much technology you use to preform them.
What security concept states a user should only be given the minimum set of permissions required to perform necessary tasks
8.10 Code Practice Question 1
Write code that takes in two words from user input and stores them in the variables x and y respectively. Then, the programs the values in x and y, and print x and y).
Note: The variable names x and y are required for this question
x = input("Enter a word: ")
y = input("Enter a word: ")
x,y = y, x
print(x)
print(y)
I hope this helps
Since we need to perform some coding functions such as:
Asking for the input of a numberStoring them as individual variablesPrinting/Displaying the values independently.First thing we need to do is to declare the unknown variables as x and yNext would be to write the input this way:
x= input ("Put a word:")
y= input ("Put a second word:")
x,y = y, x
Print(x0
Print(Y)
Read more about programming here:
https://brainly.com/question/18900609
List five types of system information that can be obtained from the Windows Task Manager. How can you use this information to confirm the presence of malware on a system
Answer:
Part A;
Five types of system information that can be obtained from the Windows Task Manager includes;
1) The processes taking place
2) The performance of the system components, including the, CPU, Memory, Disk, Wi-Fi, GPU, and a live summary of the metrics of the computer
3) The App history
4) The list of startup
5) The current users of the computer
Part B;
By going through list of active processes on the Windows Task Manager, a malware can be detected as a rogue or unidentified process that may be running on the background. The name of a process may seem legit, but however, the process is not supposed to be running, such as a program which is not running or installed on the system but the process is seen running on the Windows Task Manager, that is a sign of a malware on the system
Explanation:
is it just me or do people delete other peoples questions and it shows up in my inbox staying its mine
Answer:
yessss same bru.h
Explanation:
Answer:
ive had that happen before i dont know why it happens
Categorize each memory card as based on new or old technology. PLEASE HELP.
Answer:
SD Cards and XDQ Cards are new XD Cards and CF Cards are old.
Explanation:
Hope this helps.
answer this now
and thanks
Answer:
the process of burning something
Answer:
Option D) the process of burning something
Explanation:
Combustion, or burning, is a high-temperature exothermic redox chemical reaction between a fuel and an oxidant, usually atmospheric oxygen, that produces oxidized, often gaseous products, in a mixture termed as smoke.
Two light bulbs are connected in a series circuit. You add a third bulb in a series. All three bulbs are identical. Which of the following will happen?
Answer:
The bulbs would becom dim
Explanation:
The 3rd bulb adds too much resistance that the other bulbs go dim
help plz (will give brainliest)
Answer:
The answer to this question is given below in the explanation section.
Explanation:
This is the python program in the question that is:
def sum(n1,n2):
n=n1+n2
return n
The question is: write a function CALL that displays the return value on the screen.
So, the correct program is written below:
*********************************************************************
def sum(n1,n2):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
print(sum(3,5))# call the sum function with parameter 3 and 5 , it will print 8
print(sum(4,101))
# call the sum function with parameter 4 and 101 it will print 105
********************************************************************************
you can also store the sum result into another variable, because this function return the sum. So, you can store that return value into another vairable and using the print function, to print the value of this variable such as:
*****************************************************************************
def sum(n1,n2):# it is function that define sum
n=n1+n2 # variable n that store the result of n1 and n2
return n # return the result
result= sum(6,9) # store the sum result into another variable i.e result
print(result)# print the result variable value
*****************************************************************************