Pls help me pls I’m struggling

Pls Help Me Pls Im Struggling

Answers

Answer 1
you have it correct

Related Questions

how does digital and hybrid computers differ in storage​

Answers

Digital computers perform functions like mathematical, complex calculations, media streaming, etc. While hybrid computers work with the duo combination of analog (analog Quantities like the voltage, temperature) and digital (mathematical functions, complex calculations, media streaming) computers at the same time.

What happened to China and India after they modernized their workforces by providing more training and education?

A.
Their economies collapsed as they were unable to pay for their public services.

B.
They experienced civil wars between the haves and have-nots.

C.
People refused to take advantage of these programs due to anti-Western biases.

D.
Millions of people were lifted out of poverty.

Answers

The correct answer is D.

The condition for China and India after they modernized their workforces by providing more training and education is;

''Millions of people were lifted out of poverty.'' So, option D is true.

Given that;

China and India modernized their workforces by providing more training and education.

After modernizing their workforces by providing more training and education, both China and India experienced a significant improvement in their economies.

As a result, millions of people were lifted out of poverty.

This positive change was driven by increased job opportunities, higher productivity, and improved skills among the workforce.

Therefore, Option D is true.

To learn more about education visit:

https://brainly.com/question/19959157

#SPJ3

A _____ is a question about the data structured in a way that the DBMS can recognize and process. a. query b. relationship c. tuple d. product

Answers

Answer:

a

Explanation:

A query is a question about the data structured in a way that the DBMS can recognize and process.

What is relationship in DBMS?

A relationship, in the scope of databases, is known to be a kind of scenario where  two relational database tables and one table is known to have a foreign key that is said to references the primary key.

Note that A query is a question about the data structured in a way that the DBMS can recognize and process.

Learn more about query  from

https://brainly.com/question/2569440

#SPJ2

Pls help me pls I’m struggling

Answers

Answer:

Forward(30)

Explanation:

To turn right you have to say right(Angle) and then forward(steps) to go that many steps in that direction

How do I type fast?

Give me an actual answer...

Answers

Practice!
And a good keyboard I recommend mechanical key boards
But the best way to improving your WPM is definitely practice one way you can practice is playing typeracer it’s pretty fun way

Hope this helps!
Brainliest is much appreciated!

Answer:

Use all 10 fingers and remember where the keys are.

Explanation:

This may take a while to get used to, but just let your hands flow across the keyboard. There really isn't a specific way to do it, but there are websites that'll help you.

Get ready to be the Quizmaster! You are going to design your own Python game show in the style of a quiz.

Think of a genre (science, music, math, sports, video games, etc.) and create at least 10 questions. You can decide whether you want to make the questions multiple choice or not. Then go to OnlineGDB to get programming.

Your quiz program must have the following items:

It must start by asking the user what their name is and welcoming them to your quiz. It pays to be polite!
Set up a variable to keep score. It is up to you how to design the points system. Will you give them 10 points for a correct answer and 0 for an incorrect answer? Or perhaps you will be tough and take away points for an incorrect answer!
Ask your 10 quiz questions. If they get a question wrong, be sure to tell the user what the correct answer was. Then adjust the score appropriately, depending on whether their answer was right or wrong.
At the end of the program, tell the user their score.
Need an extra challenge? Try the following. These are not required.

Research how to use the lower() or upper() functions to allow the user to capitalize their answer (or not) and still receive credit as a correct answer.
Tell the user what percentage of the questions they got correct!
Make sure to click the save button. Then click Share and copy the link to your program. Paste it in a word processing document and submit it using this unit’s dropbox.

Answers

Answer:

"Are apples Magenta?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Teal?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Gray?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Green?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Cyan?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

]

Questions(Question prompts[0], "a")

Questions(Question prompts[1], "c")

Questions(Question prompts[2], "c")

Questions(Question prompts[3], "c")

Questions(Question prompts[4], "c")

Questions(Question prompts[5], "b")

Questions(Question prompts[6], "c")

Questions(Question prompts[7], "c")

Questions(Question prompts[8], "a")

Questions(Question prompts[9], "c")

Explanation:

Answer:"Are apples Magenta?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Teal?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Gray?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Green?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

"Are apples Cyan?"\n(a) yes\n(b) sometimes\n (c) no\n\n",

Explanation:

in python:
The mode of a list of numbers is the number listed most often. The median of a list of numbers is the value in the middle of the list if the list is arranged in order. For this software solution you will do the following:

Take 10 numbers as input from the user and display the number with the highest mode. If there is a tie, you will need to show all of those numbers.
Your program must create a user-defined function that takes an array of numbers as a parameter and returns the value that appears the most often in the array.
For those same 10 numbers your program must create a user-defined function that takes an array of numbers as a parameter and returns the value which is the median for those numbers.

please help!

Answers

Python can be used to implement central of tendencies such as mean, median and mode using the statistic module

The program in Python, where comments are used to explain each line is as follows:

#This imports the statistics module

import statistics

#This defines the function that calculates the mode

def calcMode(myList):

   #This prints the mode

   print(statistics.multimode(myList))

#This defines the function that calculates the median

def calcMedian(myList):

   #This prints the median

   print(statistics.median(myList))

#The main method begins here

#This initializes the list

myList = []

#The following iteration gets input for the list

for i in range(10):

   myList.append(int(input()))

#This calls the calcMode method

calcMode(myList)

#This calls the calcMedian method

calcMedian(myList)

Read more about similar programs at:

https://brainly.com/question/25026386

Which of the following programming scenarios would benefit most from the use of lists?

Answers

The programming scenarios which would benefit most from the use of lists is: B. writing a program to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score).

Computer programming involves the process of designing and developing an executable instructions (codes) or collection of data to perform a specific task.

In Computer programming, a list can be defined as an abstract data type that represents a finite number of either ordered or unordered values. Thus, a list can be used to perform the following tasks:

Store data items.Delete data items.Add data items.

A computer program that is used to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score) would benefit most from the use of lists because it comprises a set of numerical values that can be sorted in either an ordered or unordered array.

Read more on lists here: https://brainly.com/question/15092271

Write a 20 charecter poem! for points! :)

Answers

you are wonderful as you are blue you are as blue as the sky the sky is beautiful as u are too you are red as Rose's and Rose's are full of you winter time is the mood full of winter and snow

A(n) ________ is the portion of virus code that is unique to a particular computer virus. A) virus signature B) encryptio

Answers

Answer:

A) virus signature

Explanation:

Antivirus databases contain what are called signatures, a virus signature is a continuous sequence of bytes that is common for a certain malware sample.

--

Encryption is a way of scrambling data so that only authorized parties can understand the information.

Database management packages based on the _______________ model can link data elements from various tables to provide information to users.

Answers

Answer:

Database management packages based on the relational model can link data elements from various tables to provide information to users.

If you want to use the randint function, you need to include import random in your program.
A. True
B.False

Answers

Answer:

A. True

Explanation:

Because to use randint (which means random integer) you need to import random module.

Before taking the boat out for an excursion, it is always a good idea to let someone know you are leaving. Which would be the best way to accomplish this?

Answers

The best way to let someone know you are leaving on an excursion with a boat is: by filing a boat plan.

A boat plan is also referred to as a sail plan or float plan and it can be defined as a paper document that outlines a traveler's itinerary and other important information while on water.

Generally, a boat plan comprises the following important information about traveler and the trip:

NameOwner's address Telephone numberDestinationSafety equipment on boardDate and time of departureNumber of persons on board.

Ideally, it is a good idea to ensure that you inform a friend or family before taking your boat out for an excursion. Also, the best way to accomplish this is to file a boat plan.

Read more on here: https://brainly.com/question/10339634

Why is experience in their own factory setting
crucial for a manager in the manufacturing
business?

Answers

Answer:

How to Manage Manufacturing Operations Effectively

Ensure High-Quality Products. ...

Ensure High-Quality Equipment. ...

Know How To Maximize Resources. ...

Look Into Technological Advancements. ...

Check Your Customer Service. ...

Consider Reducing Waste. ...

Conclusion.

Explanation:

mightier than the waves of the sea is his love for you

Answers

cool but kinda creepy ngl

can someone pelaseee help

Answers

Answer:

Explanation:

develloppemetn de grace en option est logiquement une biologiste experimenter des annes 1256 a toulouse en france

When a number gets assigned to a variable that already has a value __________. the new number overwrites the previous value at that memory location the new number gets assigned to a neighboring memory location the computer issues an error the new value is destroyed and the old value remains

Answers

Answer: the new number overwrites the previous value at that memory location

Explanation:

When a number gets assigned to a variable that already has a value, the new number overwrites the previous value at that memory location. The correct option is A.

What is assigning value?

To "assign" a variable is to symbolically link a specific piece of data to a name. Any operations performed on this "name" (or variable) must be true for all possible values.

The assignment operator is the equals sign, which should never be used for equality, and should never be followed by the double equals sign.

To assign a value to a variable, use the simple assignment operator. The assigned value is evaluated by the assignment operation.

It is possible to chain the assignment operator to assign a single value to multiple variables.

When a variable receives a new value, the previous value is overwritten.

Thus, the correct option is A.

For more details regarding assigning value, visit:

https://brainly.com/question/28587274

#SPJ2

Why was slavery more common in South Carolina than in North Carolina?
Check all of the boxes that apply.

Answers

Answer:

South Carolina, more south the more farms and agriculture so more farms mean's more workers needed.

Explanation:

almost every school or university has a or council or organization that works towards provision of providing education training and consultation

Answers

Answer:

In education, the term stakeholder typically refers to anyone who is invested in the welfare and success of a school and its students, including administrators, teachers, staff members, students, parents, families, community members, local business leaders, and elected officials such as school board members, city ...

Explanation:

This is an image of the ...........................Topology.

if answer Correct i will mark the first person brainly.​

Answers

Answer:

Mesh

Explanation:

A small network that consists of devices connected by Bluetooth, such as a smartphone and a computer, is referred to as a ________.

Answers

Answer:

I think is technologies

Which of these problems is correct if the numbers are binary numbers?Group of answer choices1 + 1 = 21 + 1 = 100 + 0 = 11 + 0 = 10

Answers

Answer:

The last one is correct.  

Explanation:

once multiple layers are selected which keyboard shortcut merges them

Answers

Considering the computer system analysis, when the multiple layers are selected, the keyboard shortcut that merges them is "Ctrl+E for (Windows) or Command+E for (Macbook)."

What Keyboard Shortcut?

Keyboard Shortcut combines keyboard keys to ensure software programs perform specific functions.

Keyboard Shortcuts can be made by a Computer manufacturer as part of the standard functionality of the operating system or application program or made explicitly by the user in a scripting language.

Keyboard Shortcut is different in both Windows and Macbook Operating systems.

Hence, in this case, it is concluded the correct answer is "Ctrl+E for (Window) / Command+E for (Macbook)."

Learn more about Keyboard shortcuts here: https://brainly.com/question/14447287

Who is your favorite Funtime Anamatronic?

Answers

Answer:

ur mom

Explanation:

jk it's prb something like foxy


Which type of list should be used if the items in the list need to be in a specific order?

Answers

Answer:

chronological

Explanation:

if your list is in chronological order that means it will be in the exact specific order in which you need it to be

Fill in the blank: With ticket ________, you are able to edit ticket properties according to which team owns the ticket.

Answers

Answer: records customization

Explanation:

Drag each label to the correct location on the image.
Identify the parts of the URL.
World Wide Web
server name
resource ID
protocol
domain name

Answers

Answer:

1) Resource ID

2) Server Name

3) Domain Name

4) World Wide Web

5) Protocol

The correct location is Resource ID, Server Name, Domain Name, World Wide Web, Protocol respectively.

What is a website?

The Online Etymology Dictionary states that in 1994, the word "website" first appeared in the English language.

It combines "Web," used in the meaning of the Internet, with "Site." The study of word origins and how their meanings changed over time is known as etymology. The web address of every website begins with "http://".

The website may be one of many various forms, such as an e-commerce website, a social media website, or a blog website. Each website serves a unique purpose, but they all have the feature of having numerous linked web pages.

Resource ID, Server Name, Domain Name, World Wide Web, and Protocol are the right locations, accordingly.

Thus, this is the correct answers for the given situation.

For more details regarding a website, visit:

https://brainly.com/question/29777063

#SPJ2

about how many smart devices are active today coinbase

Answers

Considering the latest information released by Statisticà, the number of active smart devices in the world today is 21.5 billion.

What is Smart Device?

Smart Device are generally known as electronic devices, that have the capacity to connect with other device or networks through wireless servers like Bluetooth, Zigbée, NFC, Wi-Fi, LiFi, 5G, etc.

Examples of Smart Devices

Smart devices generally include the following:

SmartphonesSmart cars Smart doorbellsSmart refrigeratorsTabletsPCSmart watches, etc.

Hence, in this case, it is concluded that the correct answer is 21.5 billion.

Learn more about Smart Device here: https://brainly.com/question/24803254

Read each question below. Then, using the drop-down menus, decide if it represents the purpose, construction, or support aspect of choosing a website host.
Will the website be built by a programmer at a company?
What type of content will be on the website?
Will the website be used to share family pictures or as a professional site for posting news?
Will customers be making secure transactions on the website?
How extensive of a control panel, or location of login and website control, will be needed?

Answers

Answer:

ConstructionPurposePurposeSupportConstruction

Explanation:

Will the website be built by a programmer at a company? construction

What type of content will be on the website?  purpose

Will the website be used to share family pictures or as a professional site for posting news?  purpose

Will customers be making secure transactions on the website? support

How extensive of a control panel, or location of login and website control, will be needed?  Construction

__________________________________________________

A company is looking for an employee to install new computers and integrate them into its existing network. Which computer field most likely include this job ?
A. Network systems administrator
B. Information security analysis
C. Computer support
D. Application Development

Answers

A. Network systems administrator

Answer:

A. Network systems administrator

Explanation:

trust me i just did it 1.3.2

Other Questions
[tex]\huge\sf\underline {Please \: help \:}[/tex]What is a magic square? It's Sunday, and I really need to complete my homework ASAP, please help me! If 0.45 mole oxygen gas occupies a volume of 1.5 L, what volumes will 2.0 moles of oxygen gas occupy at the same temperature and pressure?please don't send YouT8ube link i need a solution A container 2/3 gallon of apple juice. If four people from the cross-country Tracy team share the juice equally how much juice will each team member get? graph the functionf (x) = |x + 2| - 5 I WILL GIVE BRAINELST How did Mongol rule help transform Confucianism? A .The new civil service exam was based on classical Confucianism B .The new civil service exam was based on Neo-Confucianism C.Yuan laws required all peasants to follow Confucianism. D .Yuan leaders ordered the execution of all Confucian scholars. Which of these are symbols in the passage? Check all that apply. Blood ghosts lioness streets Caesar. How does meiosis most benefit a species?It decreases the number of chromosomes.It increases genetic variation.It increases the number of chromosomes.It increases mutations. why was the scientific method so valuable to scientist during this time era pomis)Which of the following sentences contains a comma error? (5 points)We left early for the airport, but a terrible accident delayed us,OBefore the game started the team, warmed up to energizing musicAfter being infected with a virus, the computer hard drive crashed.OoOur tiny canoe was overwhelmed by the sudden, intense storm. Woodbury Middle School has 270 girls and Valley Middle School has 206 girls. Which school hasa greater percentage of girls? Determine the percentage for each school. Bianca calculated the height of the equilateral triangle with side lengths of 10.tangent (30) = StartFraction 5 Over h EndFraction An equilateral triangle with side lengths of 10 is shown. A bisector is drawn to split the side into 2 equal parts and splits the angle into 2 30 degree segments.Then, she used the formula for area of a triangle to approximate its area, as shown below.A = one-half b h. = one-half (10) (8.7). = 43.5 units squared.Calculate the area of the equilateral triangle using the formula for area of a regular polygon, and compare it to Biancas answer.The apothem, rounded to the nearest tenth, is units.The perimeter of the equilateral triangle is units.Therefore, the area of the equilateral triangle is , or approximately 43.5 units2.The calculated areas are . what disorder seems to hold an association with bipolar disorder? Question No. 1 Marks = = 5 +5 +2 = 12 The driver of a 2.0 103 kg red car traveling on the highway at 45m/s slams on his brakes to avoid striking a second yellow car in front of him, which had come to rest because of blocking ahead as shown in above Fig. After the brakes are applied, a constant friction force of 7.5 103 N acts on the car. Ignore air resistance.(a) Determine the least distance should the brakes be applied to avoid a collision with the other vehicle? (b) If the distance between the vehicles is initially only 40.0 m, at what speed would the collision occur?(c) Write your conclusive observations on the result obtained from this numerical. i.e. the importance of Physics in daily life.Question No. 2 Marks = 8Consider an automobile moving at v mph that skids d feet after its brakes lock. Calculate how far it would skid if it was moving at 2v and the brakes were locked. Research* (The Great Gatsby) Select the correct texts in the passage.Which two details are most important to include in a summary of the excerpt?excerpt from Around the World in Eighty Days The power ratings of several motors are listed in the table. A 2 column table with 3 rows. The first column is labeled motor with entries, brand X, brand Y, brand Z. The second column is labeled Power in watts with entries 7460, 7650, 7580. An advertising agency writes marketing material for a new motor (Brand W) that has a power rating of 7,640 W. Which statement comparing the motors can they truthfully use? Brand W motor can finish any job faster than Brand Y motor can. Theres not a more powerful motor available. Brand W motor does more work each second than Brand X or Brand Z. Every second, Brand W motor does 7,640 N of your toughest work. Which of the following groups attempted insurgency against the newly independent Philippine government? Christians Hindus Muslims Buddhists. Each mobile bags sold by Ravis marble company contains 4 purple marbles for every 7 orange marbles if the bag is 56 orange marbles how many purple marbles does it contain Which of these is nearest in meaning to the word presume as it is used in the passage above. HELPME IM IN MATH AND NEED HELPP