Can someone help me please

Can Someone Help Me Please

Answers

Answer 1

Answer: I'd say A is the correct answer.

Answer 2
A is correct bro I’m pretty sure

Related Questions

Which of the following is the best definition of the
word aptitude?
personal interest
potential skill level

success factor
actual skill level

Answers

Answer: For the definition of aptitude the answer is B-potential skill level . For the definition of ability the answer is D -actual skill level

Explanation: I did the assessment:)!

The best definition of the word aptitude will be actual skill level. Then the correct option is D.

What do you mean by the word aptitude?

A component of the ability to perform a certain sort of task at a specific level is aptitude. Exceptional aptitude may be deemed to possess the skill. The capacity to carry out particular tasks, whether physical or cerebral but rather whether developed or underdeveloped, is referred to as aptitude. When compared to talents and abilities, which are acquired via training, the ability is frequently contrasted.

Both capability and IQ are terms that refer to a person's mental capacity. Unlike the basic concept of intelligence (IQ), aptitude frequently refers to any of a variety of diverse traits that can exist independently of one another, such as the ability for programming language, military flying, or air traffic control.

The term "aptitude" is best defined as real skill level. Then the correct option is D.

More about the word aptitude link is given below.

https://brainly.com/question/20372641

#SPJ2

On a webpage, a _____ provides supplemental material such as social networking feeds and ads. Group of answer choices footer sidebar header navigation bar

Answers

Answer:

sidebar

Explanation:

The part of the webpage that is being described in this question is known as a sidebar. These are the far left/right sides of the webpage and are usually used for networking feeds, ads, related information, major points of the main page, biographical info, as well as persuasive information. This section of the webpage serves two main purposes to provide the viewer with advertisements and to encourage the reader to read the more detailed main article.

Using the drop-down menus, correctly match the name of the person with the computer-programming
innovation
In 1975,
founded Microsoft, which released Altair BASIC, the first
programming language for personal computers.
found the first computer bug in 1947, and invented the concept of a compiler in
1952
v led a team at IBM that developed FORTRAN and its compiler in 1957
developed C++ programming language, and published the reference guide
in 1987
released the Python programming language.

Answers

Answer:

1. Bill Gates and Paul Allen

2. Grace Murray Hopper

3. John Backus

4. Bjarne Stroustrup

5. Guido van Rossum

The part of a screen that holds its own document or message.
a) Pointers
b) Menu
d) Icons
c) Windows

Answers

The icons is the answer

The part of a screen that holds its own document or message is called; Icons

Icons

The correct answer here is Icons. This is because In computing, an icon is defined as a pictogram or ideogram that is usually displayed on a computer screen to aid the user in navigating a computer system.

Now, the icons are easily comprehensible symbols of a software tool, function, or a data file, that can be accessible on the system and is just like a traffic sign.

The icons can serve as an electronic hyperlink or even file shortcut to access a program or even data. The user can activate an icon using a mouse or even voice commands

Read more about Icons at; https://brainly.com/question/1968358

If the 5th term of an A.P is 7 and the first term is 2.Find the common difference.​

Answers

Answer:

5/4

Explanation:

a=2

a5=7

a+(5-1)d=7

2+4d=7

4d=5

d=5/4

Which business filing process puts documents or data in the order by date? a. Linear
b. Reverse chronological
c. Nonlinear
d. Chronological

Answers

Answer:

d. Chronological

Explanation:

Chronological can be defined as an arrangement of data, items or documents in the order in which they occurred or happened (in time), from the earliest to the most recent or latest.

Hence, chronological order is a business filing process which puts documents or data in the order by date.

For instance, the arrangement of documents in a shelf from January to December.

Which of the following is not a method for opening Word software? right clicking on the desktop and selecting "view" selecting the Start button and navigating through all programs selecting the Start button and navigating to the most recently used programs using an icon on the desktop

Answers

Answer:

right clicking on the desktop and selecting "view"

Explanation:

A word software enables us to create, edit  two or more documents at the same time and print documents, to write text, store it electronically, display it on a screen and modify it by entering commands, and then print it.

It enables you to draw graphs, and possibly even convert videos into a document.

Word software cannot be opened by right-clicking on the desktop and selecting "view".

Answer:

right clicking on the desktop and selecting "view" selecting the Start button

Explanation:

Word pad is a word processing software included with all versions of MS- Windows starting from Windows 95 to Windows 10. It is more better compared to Notepad and much simpler than Microsoft Word. Microsoft replaced the Microsoft write.

You cannot access word pad by clicking on the desktop and selecting "view", the simplest way to access Word pad is by clicking on the start button and then clicking on the word pad.

To interact with the World Wide Web, a client computer needs an application layer software package called a:

Answers

Answer:

web browser

Explanation:

The internet is a network, the www is a system of websites and webpages that uses the internet. A browser makes sense of the data of webpages.

When running a spelling and grammar check, which of these buttons does Nora need to press when she wants to fix
an error after selecting the correct option in the Not in Dictionary/Suggestion area?
O Click the OK button to accept the change.
Click the Autocorrect button to accept the chantie.
Click the Add to Dictionary button to accept the change.
Click the Change button to accept the change.

Answers

Answer:

The answer is D

Explanation:

The buttons that  Nora need to press when she wants to fix an error is to click the Change button to accept the change.

What is grammar checking?

A lot of Writers are known to often make use of grammar checker to know if the tenses of their language is correct and to also check for grammatical correctness of their work.

Conclusively, The buttons that  Nora need to press when she wants to fix an error is to click the Change button to accept the change as it will quickly effect the change she desires.

Learn more about grammar check from

https://brainly.com/question/10810979

#SPJ2

2.7 Code Practice: Question 1

Write a program that takes three numbers as input from the user and prints the largest

Can someone please help me with this because I’ve been struggling all day

Answers

Answer:

You didn't specify the programming language

I'll answer using Python

nums = []

for i in range(1,4):

     inp = int(input("User Input: "))

     nums.append(inp)

nums.sort()

print(nums[-1])

Explanation:

I made use of list in answering this question.

Start by declaring an empty list

nums = []

Use iteration to enter the list elements

for i in range(1,4):

     inp = int(input("User Input: "))

     nums.append(inp)

Sort the list

nums.sort()

Then print the element on the last index

print(nums[-1])

The code below is in Java

It uses if-else structure to find out the largest number among three numbers given by the user.

Comments are used to explain each line of the code

//Main.java

import java.util.Scanner;

public class Main

{

public static void main(String[] args) {

    //Create a Scanner object to be able to get input

    Scanner input = new Scanner(System.in);

   

    //Declare the variables

    int number1, number2, number3, largest;

   

    //Ask the user to enter three numbers

 System.out.print("Enter the first number: ");

 number1 = input.nextInt();

 System.out.print("Enter the second number: ");

 number2 = input.nextInt();

 System.out.print("Enter the third number: ");

 number3 = input.nextInt();

 

 /*

     Check if the first number is greater than or equal to the second and third number.

     If it is, the largest is the first one.

     Otherwise, check if the second number is greater than or equal to the first and third number.

     If it is, the largest is the second one.

     If the previous conditions are not satisfied that means third is the largest one

 */

 if(number1 >= number2 && number1 >= number3)

     largest = number1;

 else if(number2 >= number1 && number2 >= number3)

     largest = number2;

 else

     largest = number3;

 

 //Print the largest number  

 System.out.println("The largest number is " + largest);

}

}

You may see a similar question in the following link:

brainly.com/question/17132559

JavaScript is very complex scripting ________________​

Answers

Answer:

yes it is was this a questipn

Answer:

Java script is very complex scripting language.

Explanation:

Java script is most commonly used in a client side scripting language, user request an html page with java script is sent to the browser.

Java script code is written into an the html page, java script can be used to the in other contexts  a web browser.Java script could not be used to write real complex programs, and site is used to the deals of java script in web browser.Java script is the primarily a scripting language for they use of html pages,java script is client side scripting language.Java script was the developed by the Brendan, and it can be used in a server side environment.Java script they descend to the both C and C++ languages gone in quite different directions.Java script is a lightweight interpreted programming language and java script source code compiled into a faster to the binary format.Java script is to contain the applied to your html page in a similar manner to CSS.Java script is the object oriented nature to understand to go further knowledge of that language and write more efficient code.Java script is developed by the Netscape, java script to run the designed Netscape navigator.

A technician is troubleshooting an expansion card in a computer that allows the computer to receive faxes over a VoIP line. The line connected to the expansion card is MOST likely which of the following cable types?A. CoaxialB. CAT3C. CAT6D. Multi-mode fiberE. Single-mode fiber

Answers

Answer:

C. CAT6

Explanation:

CAT6 cable is the standard twisted pair cable for Ethernet and other network physical layers, lagging behind with category 5 / 5e The cat 6 cable can be detected by printing on the side of the cable sheath. TIA / EIA-568 defines cable type, connector type and cabling topology. Cat 6 cable has a maximum length of 55 m (180 ft) when used for 10GBASE-T and is rated at 500 MHz At a frequency frequency of 500 MHz, the ISO / IEC CAT 6A connector performs 3 dB better than the Cat 6A connector, which is EIA / TIA specified.

where are some places that cyberbullying occurs? check all that apply

Answers

Answer:

social media like  snap chat twitter  and face book .it can even happen over email.or in school chats.

Explanation:

social media and school

This contains lists of commands that you can use to tell the computer what to do. o command prompt Finder folder Menu bar​

Answers

Answer:

Menu Bar

Explanation:

its right

Different types of names given to explicit convertion in java

Answers

Answer:

Different types of name given to explicit conversation in java are

1. Automatic

2. Explicit

In one to two sentences, explain how consumption is determined in a market economic system.

Answers

Answer:

In a free market economic system, consumption is determined based on the goods and services that make use of the most efficient use of resources and production factors such that consumers encourage producers to produce what they want as such consumer spending is equal to the sum of spending for essential commodities and the extra spending based on disposable income which reflects the wants, or trend of the consumers and therefore, the future pattern of production

Explanation:

Answer:

In a free market economic system, consumption is determined based on the goods and services that make use of the most efficient use of resources and production factors such that consumers encourage producers to produce what they want as such consumer spending is equal to the sum of spending for essential commodities and the extra spending based on disposable income which reflects the wants, or trend of the consumers and therefore, the future pattern of production

Explanation:

Is (x.y)' and x'.y' the same? Boolean Algebra

Answers

No its not the same

x+y, x'+y, x.y, and x. (y+z') are all Boolean expressions • xyz+x'yz'+xyz'+(x+y)(x'+z) is a Boolean expression • x/y is not a Boolean expression • xy is not a Boolean expression.

A technician is trying to determine the IP address of a customer’s router. The customer has an IP address of 192.168.1.55/24. Which of the following is the address of the customer’s router?A. 192.168.0.55B. 192.168.1.0C. 192.168.1.1D. 192.168.5.5E. 255.255.255.0

Answers

Answer:

The answer is "Option C".

Explanation:

This IP address is used as a local network or gateway by devices like d-link as well as other system products. In this address companies operating router access permission to enable the system administrator to set up one's systems and adapters, that's why in this question, the "option c" that is "192.168.1.1" is correct.

What would be the best solution for the customer to share the monitor, mouse, and keyboard between the two computers quzlet

Answers

Answer:

A KVM switch.

Explanation:

A KVM switch would be the best solution for a customer to share the monitor, mouse, and keyboard between the two computers assuming he or she has one computer specifically for web services and another for a different purpose.

A KVM is an acronym for keyboard, video and mouse.

Basically, it is a hardware device which enables computer users to connect a keyboard, mouse and monitor (video display device) to several other computers and as such facilitates the sharing of these devices between multiple computers.

If something is copyrighted,
how can it be used?
A. Only with credit
B. Only with permission
C. With credit or in certain "fair use" cases
D. With permission or in certain
air use" cases

Answers

D
Because you need permission

When did the silent movie era end?
A.1919
B.1929
C.1939
D.1949

Answers

Answer:

The answer is 1929.

Pretty sure your answer is B. 1929

Describe how the process of sampling, RGB pixels, and binary sequences work together to display a digital color image.

Answers

Sampling the RBG pixels, and binary sequences collaborate to produce a digital color picture, enabling the PC to know the RBG pixel and the opacity for that pixel. The mixture of these elements gives users digital photography.It is a way to transform the analog image into a digital one. These analog images using binary sequences using models of 0's and 1's, and the RGB pixels appear on our screen when we sample our analog images.They function together because you have to utilize binary sequences to display the color photo and also to convert the analog to what you would like it to be. This digital photograph you want produces RGB pixels.

Learn more:

brainly.com/question/17653156

Another term for slow motion, where time appears to be moving slowly in a video is

Answers

Answer:

Slow motion (commonly abbreviated as slo-mo or slow-mo) is an effect in film-making whereby time appears to be slowed down. It was invented by the Austrian priest August Musger in the early 20th century.

Explanation:

The slow motion means the movement of object /body with respective to its surrounding but with a relative slower speed. The fast motion means the movement of object /body with respective to its surroundings but with relative greater speed.

Which of the following statements is true regarding Bell Labs? Select 3 options.

Researchers from Bell Labs are responsible for the invention of the transistor.

They were responsible for developing the first mechanical computer, called the Analytical Engine.

They developed the first cross country network to connect academic institutions.

Work from their researchers resulted in nine Nobel prizes.

They are credited with creating the Unix operating system and solar cells.

Answers

Answer:

They are credited with creating the Unix operating system and solar cells.

Work from their researchers resulted in nine Nobel prizes.

Researchers from Bell Labs are responsible for the invention of the transistor.

Explanation:

Programming environment is

Answers

Answer:

environments containing language specific editors and source level debugging facilities or all of the hardware and software in the environment used by the programmer.

Explanation:

quick google search.

The malicious use of computer code to modify the normal operations of a computer or network is called a ___ .

Answers

Answer:

Cyber attack

Explanation:

A cyber attack is an assault launched by cybercriminals using one or more computers against a single or multiple computers . A cyber attack can maliciously disable computers, steal data, or use a breached computer as a launch point for other attacks.

Technologies are having a negative impact on businesses.

Answers

Answer: False

Explanation: I think its false because technologie has had a good impact on businesses.

Answer:

False

Explanation:

Technology has increased the capacity of businesses.

How many hours does the average American child spend on the computer? a 7 hours a day b 5 hours a day c 3 hours a day

Answers

Answer:

the estimated time is 7 hours, especially middle school and high school

Explanation:

you need to finish all your classes plus your homework

Answer:

thanks it's A) 7 hours a day

Explanation:

thank you... I got on the test.

What does it mean to say RAM is volatile? *

Answers

It means that it’s computer memory that needs power to keep the stored information. You can easily lose your data when the power is interrupted.

How do all apple phones work?

Answers

Answer:

The OS also lets you multitask and move through multiple open applications, just like you can on a laptop or desktop computer. But instead of using a mouse or a physical keyboard, the iPhone uses virtual buttons and controls that appear on its screen.

Explanation:

Other Questions
Dellroy Rentals Company faced the following situations. Journalize the adjusting entry needed at December 31, 2016, for each situations. Consider each fact seperately.a. The business has interest expense of $3,200 that it must oay early in January 2017.b. Interest revenue of $4,100 has been earned but not yet recieved.c. On Huky 1, 2016, when the business colected $12,000 rent in advance, it debited Cash and credited Unearned Rent Revenue. The tenant was paying gor two years' rent.d. Salary expense is $6,100 per day--Monday through friday--and the business pays employees each friday. This year, December 31 falls on a Thursday.e. The adjusted balance of the Supplies account is $3,200. The total cost of supplies on hand is $1,300.f. Equipment was purcashed on January 1 of this year at a cost of $180,000. The equipment's useful life is five years. There is no residual value. Record depreciation for this year and then determine the equipments book value. At the beginning of the 1900s New Mexico was ____________________. a. totally focused on mining. b. trying to become a state. c. developing new technology d. developing connections with other countries. Check| AbePlace each idea below the genre it describes.provides an opinionBiographyEditorialAutobiographyis written in the first persontells someone's memoriestells someone else's lifeis written to persuadeis an objective accountDoneIntro3 of 7 Whats the sum of 45 and ^ A factory makes 300 sheets of construction paper per hour. How many sheets of construction paper will the factory make in 9 hours? Consider a triangle with vertices at S(-2, -3), A(2, 3), and N(5, -4). Find the length of each side rounding your answer to the nearest tenth and then determine which is the shortest. The length of side SA is: type your answer... The length of side AN is: type your answer... and the length of side NS is: type your answer... Therefore the shortest side is: type your answer... CLASS ENDS IN ONE HOUR HELP What is the suffix for commotion The sum of a number and 5 Help it's most important to measure your goals and see your progress so that you can idk what this ispls help A term that indicates hardening of the brain is: a. none of these b. encephalotome c. cerebroma d. cephalodynia HELLLPPPPPP MEMMEMEMEME Find the focus and directrix of the parabola y= 1/2 (x+2)^2 - 3 A. The focus is at (2,2) and the directrix is at y = 4. B. The focus is at (2,3) and the directrix is at y = 5. C.The focus is at (2,2 1/2) and the directrix is at y = 3 1/2. D. The focus is at (2,1 1/2) and the directrix is at y = 2 1/2. Explain how judicial review can be used by the Supreme Court to check the power of the executive and legislative branches. The formula D =3/2 (100 C) relates D,the temperature measured on the Delislescale, in degrees, and C, the temperaturemeasured on the Celsius scale, also indegrees. What is the temperature indegrees Celsius when the temperature indegrees Delisle is 78?BO missing angle for triangle PLEASE HELP I HAVE UNTIL TOMORROW Write a short summary of this story. The city of Syracuse in Sicily . . . was ruled by a man . . . whose name was Dionysius. [He] had seized power by force, and kept his authority by exercising the greatest severity. He was always surrounded by guards, who at a mere sign from him were ready to put anyone to death.Dionysius was therefore feared and hated by the people whom he governed, but who would have been very glad to get rid of him. No honest man cared to come near such a bloodthirsty wretch, and there were soon none but wicked men to be found in his court.These men, hoping to win his favor and get rich gifts, used to flatter him constantly. They never told him the truth, but only praised him, and made believe to admire all he said and did.Of course, even though they were wicked too, they could really admire him, but secretly hated and despised him. Their praise, therefore, was as false as they and their advice was always as bad as bad could be.Now, Dionysius was as conceited as he was cruel, and fancied that there was nothing he could not do. Among other things, he thought he could write beautiful poetry. Whenever he wrote a poem, therefore, he read it aloud to all his courtiers, who went into raptures over it, although they made great fun of it behind his back.Dionysius was highly flattered by their praise, but thought he would like to have it confirmed by the philosopher Philoxenus, the most learned man of Syracuse.He therefore sent for Philoxenus, and bade him give his candid opinion of the verse. Now, Philoxenus was far too noble a man to tell a lie: and whenever he was consulted by Dionysius, he always boldly told the truth, whether it was agreeable or not.When the tyrant asked his opinion about the poems, therefore, he unhesitatingly answered that they were trash, and did not deserve the name of poetry at all.This answer so angered Dionysius, and so sorely wounded his vanity, that he called his guards, and bade them put the philosopher into a prison hewn out of the living rock, and hence known as "The Quarries."Here Philoxenus was a prisoner for many a day, although his only fault was having told the tyrant an unwelcome truth when asked to speak.The philosopher_s friends were indignant on hearing that he was in prison, and signed a petition asking Dionysius to set him free. The tyrant read the petition, and promised to grant their request on condition that the philosopher would sup with him.Dionysius' table was well decked, as usual, and at dessert he again read aloud some new verses he had composed. All the courtiers went in to ecstasies over them, but the philosopher did not say a word.Dionysius, however, fancied that his long imprisonment had broken his spirit, and that he would not now dare refuse to give a few words of praise: so he pointedly asked Philoxenus what he thought of the poem. Instead of answering, the philosopher gravely turned toward the guards, and in a firm voice cried aloud, "Take me back to The Quarries." thus showing very plainly that he preferred suffering to telling an untruth.The courtiers were aghast at his rashness, and fully expected that the tyrant would take him at his word and put him in prison, if nothing worse; but Dionysius was struck by the moral courage which made Philoxenus tell the truth at the risk of his life, and he bade him go home in peace. (1 point) Find the antiderivative F of f(x)=43(1+x2)1 that satisfies F(1)=3. assume this car is driven off a cliff. How many arrows of force need to be drawn in the free body diagram? Assum no air resistance Answers: five one four three