What job does a front-end developer perform?

Answers

Answer 1

Answer:

They manage making websit/es beautiful. Basically how brainly is setup? The layout is nice? Front end developers are responsible for why webpages look pretty or nicely done. fun fact, my dream job is a front end developer!


Related Questions

_____ is the process of setting up a program or app to work with your computer, mobile device, and other hardware

Answers

Answer:

Installation

Explanation:

whenever you download a program like firefox you have to install it to use it first

Question #3
Multiple Choice
Often screen readers do not convey all of the necessary information to programmers about the programming environment or their code.
One solution for communicating indentations and the distinction between code and text is the use of
O audio cues
O text-to-speech
O screen readers
O a tree structure

Answers

Answer: audio cues

Explanation: "Specific sounds, or audio cues, can be used to convey visual information, like indentations."

Answer:

audio cues

Explanation:

i just took it hope im not too late :D

You've decided to go with a wireless guest network, which will be easy for customers to connect to throughout the bookstore's seating areas. Wireless networking has long been a request of customers, and you're excited to offer it to them. That decision was easy, but now you need to decide the technical details when setting up the wireless router. The router offers two Wi-Fi options: 802.11g and 802.11n.
Which wireless technology will you use for the guest network?
i. 802.11n
ii. 802.11g

Answers

Answer:

802.11n, but read explanation.

Explanation:

802.11n is faster because it supports 5GHz but also 2.4GHz. I don't know much about routers and networks, but as far as I know, 5GHz routers cover small area but since it supports 2.4GHz too, that should he superior to the 802.11g by any means. Though, once again, I don't know much about networks and routers.

Are you a computer science student. And why?​

Answers

Answer:

Kind of, I like coding and helping people with python, etc.

Planning to learn C# soon.

Imagine that you had to pick a new song for the opening credits for spider man no way home. What song or piece of music would you choose and why?

Answers

Answer:

I would choose "Home" by Bebe Rexha, X Ambassadors, and more.

Explanation:

I think this because it talks about your place where you feel safe, a place you can take off the unbearable weight of stress, and more.

Have an amazing day!!

PLEASE RATE AND MARK BRAINLIEST!!!

What is the value of mystery(5)? int mystery(int n) { if (n > 0) return 3 - n % 2 + mystery(n-1); return 0; } Group of answer choices

Answers

Answer:

The function returns the largest of n number of elements in the array.

It takes an int array parameter int[] a, and an integer parameter n. It then assigns the first element of the array to an integer variable X.

The for loop begins at the second element of the array and loops less than n number of times. In each iteration, it checks if the element is greater than X and swaps it with X.

The function finally returns X.

Explanation:

hope this helped :)

Sea level is the average level of the sea between high and low tide. It is used as a reference point for measuring elevation, or height and depth, on Earth. Some places lie above sea level, while others lie below sea level. The lowest point in New Orleans is 8 feet below sea level. You can represent that numerically using . The highest point in Chicago is 735 feet above sea level. You can represent that numerically using .

Answers

Answer:

1.The lowest point in New Orleans is 8 feet below sea level. You can represent that numerically using

✔ a negative integer

2.The highest point in Chicago is 735 feet above sea level. You can represent that numerically using

✔ a positive integer

Hope I helped!! :))

Answer:

The lowest point in New Orleans is 8 feet below sea level. You can represent that numerically using

✔ a negative integer

.

The highest point in Chicago is 735 feet above sea level. You can represent that numerically using

✔ a positive integer

.

Explanation: the other person is correct they should get all the credit im  just saying this to let people know that its right so that they know these answers are correct

A CPU's job is to execute programs, which are made up of a series of individual operations called _________.

Answers

Answer: Instructions

Explanation: Common knowledge, plus i got it right on a test

5 differences between a regular mouse and a gaming mouse​

Answers

Answer:

A gaming mouse has more buttons to keybind to while a regular mouse is simpler

Explanation:

What are merge fields?


Answer is "What are merge fields?"

Answers

Answer:

A merge field is a field you can put in an email template, mail merge template, custom link, or formula to incorporate values from a record. For example, you can place a merge field in an email template so that the greeting includes the recipient's name rather than a generic “Hello!”.

Okay so I am using the OBS video recording software to record gaming videos but for some reason, it won't record sound. Do you know how to fix this?

I know this isn't exactly computer science or anything but still related to computers.

Answers

Answer:

It could be broken, your browser does not support it, or something in your settings may be blocking it.

According to my knowledge, "The simplest solution is to reboot. Close it down and open it again. If the problem persists, try restarting your computer. Try restarting and see if your camera works."

Hope this helps!

I need sudo code! so that I can solve this question in PYTHON.

Answers

Coding:

   import java.util.ArrayList;

   import java.util.Comparator;

   import java.util.List;

   import java.util.Scanner;

   

   public class StuckInARutSilver {

   

       public static void main(String[] args) {

           Scanner in = new Scanner(System.in);

           List<Integer> eastCows = new ArrayList<>();

           List<Integer> northCows = new ArrayList<>();

           int n = in.nextInt();

           int[] xs = new int[n];

           int[] ys = new int[n];

           for (int j = 0; j < n; j++) {

               if (in.next().charAt(0) == 'E') {

                   eastCows.add(j);

               } else {

                   northCows.add(j);

               }

               xs[j] = in.nextInt();

               ys[j] = in.nextInt();

           }

           eastCows.sort(Comparator.comparingInt(j -> ys[j]));

           northCows.sort(Comparator.comparingInt(j -> xs[j]));

           boolean[] isStopped = new boolean[n];

           int[] amtStopped = new int[n];

           for (int j : eastCows) {

               for (int k : northCows) {

                   if (!isStopped[j] && !isStopped[k] && xs[k] > xs[j] && ys[j] > ys[k]) {

                       if (xs[k] - xs[j] > ys[j] - ys[k]) {

                           isStopped[j] = true;

                           amtStopped[k] += 1 + amtStopped[j];

                       } else if (ys[j] - ys[k] > xs[k] - xs[j]) {

                           isStopped[k] = true;

                           amtStopped[j] += 1 + amtStopped[k];

                       }

                   }

               }

           }

           for (int j = 0; j < n; j++) {

               System.out.println(amtStopped[j]);

           }

       }

   }

Explaination:

We can solve this problem by considering all pairs of a cow going east and a cow going north in order to determine which cow directly stops which other cow. Let's say the cow going east starts from (x,y) and the cow going north starts from (u,v). Their theoretical paths intersect if x<u and v<y, in which case they must intersect at (u,y). This means that, assuming both cows reach (u,y) (instead of being stopped earlier), the cow that reaches (u,y) first will stop the other cow (if they both reach at the same time, as per the problem statement neither one is stopped).

Therefore, in order to determine the stopping relations, you might naively loop through all pairs of eastward cows and northward cows and see which cows reach the intersection point first. However, this doesn't account for the fact that either one may have been stopped earlier.

A clean way to deal with this is to sort all eastward cows by their y and all northward cows by their x, then loop through all pairs of eastward and northward cows in this order. We then keep track for each cow of whether we know it is stopped and the amount of cows that we know it has stopped (directly or indirectly).

The sorting guarantees that each northward cow will be checked against the eastward cows in increasing order of when the northward cow would reach their intersection point, and similarly for the eastward cows. Because of this, when we check a pair of cows neither of which we know has stopped yet, we can be sure that both will reach the intersection point and thus the earlier one must have stopped the later one. We also know that this means that the later cow can't now reach any more intersections than it already has, so the amount of cows it has stopped is final and we can add it, plus 1 for that cow itself, to the count for the earlier cow. Note that with other approaches, it may be necessary to run a second pass of essentially a recursive depth-first search to identify and count sizes of "connected components" of stopped cows, in order to assign blame counts appropriately.

The complexity of sorting is O(NlogN), and looping through all pairs of northward and eastward cows is O(N2), so the overall complexity is O(N2). Solutions in O(N2logN) would also be fast enough.

What differentiates files stored on the same track and sector of different platters of a hard disk?.

Answers

Files that are stored on the same track and sector of different platters of a hard-disk drive are differentiated by a cylinder.

What is a hard-disk drive?

A hard-disk drive can be defined as an electro-mechanical, non-volatile data storage device that is made up of magnetic disks (platters) that rotates at high speed. Also, hard-disk drive are commonly installed on computers and other digital service for the storage of files.

In Computer technology, the Files that are stored on the same track and sector of different platters of a hard-disk drive are typically differentiated from one another by a cylinder configured with tracks of equal diameters.

Read more on hard-disk here: https://brainly.com/question/26382243

Which action is taken by a layer 2 switch when it receives a layer 2 broadcast frame?.

Answers

Answer:

When a Layer 2 switch receives a frame with a broadcast destination address, it floods the frame to all ports except the port on which it received the frame.

Explanation:

On any given camera, a 50mm lens would create an image of a scene that would appear
enlarged compared to an image of the same scene created using a 25mm lens.
False
O
True
Answer this ASAP

Answers

Answer:

true

Explanation:

On any given camera, a 50mm lens would create an image of a scene that would appear enlarged compared to an image of the same scene created using a 25mm lens. This statement is True.

What is lens?

The lens may be diverging or converging which forms an image enlarged or diminished in nature.

The lens of dimension 50mm will make larger image as compared to the image by the lens of 25mm.

Thus, the statement is true.

Learn more about lens.

https://brainly.com/question/14413099

#SPJ2

A single access point, and the set of hosts it serves, is called a(n) ________. BSS BSSID ESS None of these

Answers

Answer:

That's called a BSS! ^^

Explanation:

all of the following are types of education that you can receive at a two year college except
A. transfer
B. apprenticeship
C. developmental
D. career

Answers

Answer:

Apprenticeship

Explanation:

Apex, Just took the test

All of the given are types of education that you can receive at a two year college except apprenticeship. The correct option is B.

What is apprenticeship?

A new generation of practitioners of a trade or profession can be trained through an apprenticeship program, which combines classroom instruction with on-the-job training.

Apprenticeships can also help professionals get a license to work in a regulated field. A compensated work that allows the employee to learn and develop experience is called an apprenticeship.

Apprentices complete classroom-based learning with a college, university, or training provider for at least 20% of their working hours in addition to their on-the-job training, which results in a nationally recognized qualification.

With the exception of apprenticeship, all of the aforementioned educational options are available at two-year colleges.

Thus, the correct option is B.

For more details regarding apprenticeship, visit:

https://brainly.com/question/779411

#SPJ2

Which type of document would be best created in Word? HELLP!!!!


Spreadsheet

Resume

Presentation

Animation

Answers

Answer: The answer is Resume

Explanation: I had this question on a quiz of mine and got the question right! Trust me it’s the right answer

It should be noted that the type of document would be best created in Word is B:Resume.

Documents serves as piece of written or electronic matter which gives information, one of this document is a resume.

A resume can be regarded as formal document which is been presented by job applicant to the employers, it itemize qualifications of the applicants for a position.

We can conclude that Microsoft word which is computer program can be used to create this resume.

Learn more about resume at:

https://brainly.com/question/800048

What is an example of static we page?

A. the About Us page
B. the current affairs page
C. the ads in a website
D. the weather ticker

Answers

I’m pretty sure it’s B I hope this help you and I’m sorry if I got it wrong

Which configuration management tool helps developers track and manage the product’s build, deployment, and integration?
A.
SQL Integrity Check
B.
SpiraTeam
C.
Unified Modeling Language
D.
Quick Test Professional
E.
RS Project Manager

Answers

I believe it is quick test professional, granted I have never used Spirateam before so I’m not too familiar with it.

why is the pc showing the same display on two monitors

Answers

[tex]Answer:[/tex]

Your computer is set to that by default. If you want the display to be separated, see what you can find in your settings[tex].[/tex]

If that doesn't work, try to find some reliable help on a browser search.

Which one is correct

Answers

C The Excel PMT function is a financial function that returns the periodic payment for a loan.

how to prepare balance sheet and distributor of capital=175000, land=125000, investment = 80000, accrued income =10000, bank overdraft =30000, debtor=35000, net profit =40000, wages payable =5000​

Answers

Answer:

add them all

Explanation:

12. Which expression is equivaleType the correct answer in the box. Spell all words correctly.

Nathan is creating a presentation for the employees at his office. Which media element should he use in the navigational buttons and menus in his presentation?

Nathan should use text or ______elements for the navigational buttons and menus in his presentation. Nt to the given expression?

Answers

Answer:

nathan should use text or media element for the navigational button and menus in the presentation

Answer:

i think the first drop down is normal and second one complex

Explanation:

We're sorry, but an error has occurred.
Please contact your uPortal administrator and provide the following information:
Your name and user id
What content were you trying to view when this error occurred?
Any other useful information to help reproduce the error

Answers

Answer:

this looks pretty good

Explanation:

I would write with it

And we will contact you as soon as possible

Does anyone know what to do when your PC is having internet connection issues and shuts down when you didn't even press the power button? This is happening to me and I don't know what to do! My PC is new too.

Answers

Answer: I think you need to reset your pc

Explanation: or get it fixed at a shop

A good first step to understanding any kind of text is to :
A. take careful notes
B. create meaning
C. focus on the details
D. find the main idea

Answers

Answer:

find the main idea

Explanation:

Consider the following method findValue, which takes an ArrayList of String elements and a String value as parameters and returns true if the String value is found in the list and false otherwise.
public static boolean findValue(ArrayList arr, String key)
{
for (int j = 0; j < arr.size(); j++) // Line 3
{
if (arr.get(j).equals(key))
{
return true;
}
}
return false;
}
Which of the following best explains the impact to the findValue method when, in line 3, int j = 0 is replaced by int j = 1 ?
A. It has no impact on the behavior of the method.
B. It will cause the method to return a different result when the key value is not in the list.
C. It will cause the method to return a different result when the key value is found only at the first index in the list.
D. It will cause the method to return a different result when the key value is found only at the last index in the list.
E. It will cause the method to throw an array index out of bounds exception.

Answers

The impact to the findValue method when, in line 3, int j = 0 is replaced by int j = 1 is (c) It will cause the method to return a different result when the key value is found only at the first index in the list.

How to determine the impact

On line 3, we have the following loop

for (int j = 0; j < arr.size(); j++) // Line 3

This means that the method searches through all elements of the array.

When this is changed to:

for (int j = 1; j < arr.size(); j++) // Line 3

The method searches through all elements of the array except the element at the first index

So, a different result would be returned if the key value is found only at the first index in the list.

Read more about methods at:

https://brainly.com/question/13795586

a computer can function in the absence of software true or false​

Answers

Answer:false

Explanation:

it’s false, but it doesn’t have to be a complete operating system.

Indonesia is planning to move its capital from Jakarta to the island of Borneo in the hope that the burden of congestion, regular flooding and sinking will be reduced.

Discuss the issues that need to be considered in terms of Ethical; Environmental; Legal and Cultural for both the inhabitants of Jakarta and the Island of Borneo.

This is an essay question I have very little time to complete. First decent answer gets crown.

Answers

Answer:

Indonesia's capital has just been relocated from Jakarta to a site within the jungle of Kalimantan on Borneo island after parliament approved the bill. It will strengthen supply chains and place Indonesia "in a more strategic position in world trade routes, investment flows, and technological innovation."

Explanation:

mark as brainiest

Answer:

President Joko Widodo first announced the plan to move Indonesia's capital in 2019, in an effort to relieve the huge environmental challenges facing Jakarta, and to redistribute wealth. Indonesia's legislature on Tuesday passed a bill that creates the legal framework for moving the country's capital from Jakarta — a sinking, congested, polluted and flood-prone megacity with more than 10 million residents — to the jungles of Kalimantan, on Indonesia's portion of the island of Borneo.

Explanation:

hope you like it, brainliest is an option :)

Other Questions
Why might Dickens repeat that the curtains of his bed were pulled aside? What atmosphere is he trying to create? Taylor's Mill is a neighborhood comprised of 185 homes. According to the website Zillow, the average market value of the homes in this neighborhood is $418,300 with a standard deviation of $36,500. What is the standard error for a random sample of 32 homes from this neighborhood? Chemicals responsible for the dilation and increased permeability of blood vessels in the inflammatory response are called. Which is the dependent variable?A= amount Ty owesB= cost of each paymentC=Months what is 1/4 as a percentage Joseph went to visit his grandmother with his parents .They drove 240 miles in 4 hours .What was the average speed they were traveling? Be sure to show your work on how the answer is 60 miles per hour is the equation y + 1 equals 8 (x + 6) in point-slope form? Model Develop a shortlist of systems that you think biologists would want to model. Choose one system from your list and develop a plan for how you would model it. Can someone please help me figure out whats 18 3/4 as a decimal The triangle shown below has a base of 6 inches and a height of 4 inches. 6 What is the area, in square inches, of this triangle? PLEASE SOMEONE SAVE THE DAY I NEED HELP!! I need help in thisSimplify:3x-6x+9x-10x Read this excerpt from "Mad Cow, Furious Farmer."The disease was first detected in England in 1986, though some scientists think the very first cases started at least ten years before. Cows usually eat only grass and other plants, but farmers had been feeding them a meat and bone mixture that made the cows plumper. But somehow, at least one batch of the mixture had become contaminated with what was then an unknown killer: a prion.By 1993, British farmers were reporting up to one thousand new cases of BSE a week. Governments all around the world reacted by increasing testing for the disease and not allowing any cows to be eaten if they were at risk of having the disease. As sheep can also get a prion disease called scrapie, they were tested as well. Farmers were angry that they were losing their livestock, and nobody knew how to protect cows and people from the disease.Consumers were also in a panic when they learned about BSE, and for a very good reason: prions are infectious. If you eat a prion from a mad cow or sheep, you are at risk for developing a human version of BSE. The public felt betrayed that their governments had underreacted to the problem or covered it up.Eventually, in 1997, governments began to ban farmers from feeding their livestock high-risk meat and bone mixtures. With that ban, the epidemic quickly peaked, and by 2010 had largely disappeared. Over the years, half a million cows and two hundred people had been killed by prions.The paragraphs of this excerpt would be best organized by adding a table of contents.captioned images.dated subheadings.a web diagram.HURRY 100 POINT AND BRAINLY Complete the following sentence. A tent is an example of a . Which of the following describes how an authors purpose might affect his or her decisions while writing? Which is a counterexample for the conditional?If a polygon has four right angles, then it is either a square or a rectangle. hows the responses from a group of people, categorized by age-group, when asked about their favorite types of vacations NEED THE ANSWER ASAP Suppose a jar contains 9 red marbles and 15 blue marbles. If you reach in the jar and pull out 2 marbles at random at the same time, find the probability that both are red. How can racism benefit people from ask for help