1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
faust18 [17]
3 years ago
6

Write the function appendEvens() which, given two arrays, adds all of the even elements from the first to the second. You may as

sume the second has enough space.
Computers and Technology
1 answer:
Ksivusya [100]3 years ago
6 0

Answer:

function appendEvens( arr1, arr2) {

   for (let i in arr1){

       if (i%2 == 0){

           arr2.push(i);

       }

   }

}

Explanation:

The defined javascript function "appendEvens" is a function that returns undefined. It accepts two arrays and pushes the even numbers from the first array to the second.

You might be interested in
Please tell fast plzzzzzz. ​
shepuryov [24]

Answer:

true....................

6 0
3 years ago
Read 2 more answers
A computer ia a personal computer you can carry from place to place​
tester [92]

Answer:

laptop is portable and wireless

5 0
3 years ago
Read 2 more answers
How do you create speaker note changes that show the slides, related notes and company logo on each page
attashe74 [19]

Answer:

The Notes Master contains two placeholders one for your text and the other for the slide. We can move or change the size of either of these objects and we can change the format of the text in the notes placeholder, we can also add or change elements that we want to appear on each handout and also notice the convenient placement of the header, footer, date and page numbers.

3 0
2 years ago
Your boss wants you to make changes to 20 computers' internet explorer programs. To do this quickly what is the best solution?
UNO [17]

solution:

There's no doubting that Microsoft has put a lot of energy into its Internet Explorer replacement Edge, packing in all the latest features. But it's not for everyone. For that we have to upgrade our systems to get advanced operating system to ascecs the new internet explorer program (fast internet working)

Edge is the default web browser on Windows 10 and it's a little tricky to change it others such as Chrome and Firefox - or even Microsoft's old web browser, Internet Explorer.  

Internet Explorer was one of the most widely used web browsers, attaining a peak of about 95% usage share by 2003. This came after Microsoft used bundling to win the first browser war against Netscape, which was the dominant browser in the 1990s. Its usage share has since declined with the launch of Firefox (2004) and Google Chrome (2008), and with the growing popularity of operating systems such as Android and iOS that do not run Internet Explorer. Estimates for Internet Explorer's market share are about 3.04% across all platforms or by StatCounter's numbers ranked 6th, while on desktop, the only platform it's ever had significant share (i.e. excluding mobile and Xbox) it's ranked 3rd at 6.97%,[6] just after Firefox (others place IE 2nd with 10.86% just ahead of), as of August 2018 (browser market share is notoriously difficult to calculate). Microsoft spent over US$100 million per year on Internet Explorer in the late 1990s.


4 0
3 years ago
Array elements are differentiated because each has a unique: O A) Range O B) Data Type o c) Index O D) Value
Hoochie [10]

Answer

The correct answer is option(C) which is "Index".

Explanation:

Array elements can be differentiated because each element in the array have different index value.In the array all elements are of same data type, so we can not differentiated them on the basis of data type. Also an array can have same value many times, That is why we can not differentiated them on this basis. In the array elements are from any range, so its not possible to distinguish them on range. We can only distinguish elements of an array on their index value because each element have different index in the array.

7 0
2 years ago
Other questions:
  • Which type of photoreceptor is best able to process bright light and color?
    7·1 answer
  • Which of the following is the part of a digital camera that acts as the film?
    11·1 answer
  • Linux is a kind of software whose code is provided for use, modification, and redistribution, at no cost. What kind of software
    13·1 answer
  • The ________________ Act requires Internet sales to be treated in the same way as mail-order sales (e.g., collect sales tax from
    12·1 answer
  • Match the data-management concepts to their meanings.
    12·1 answer
  • One of the disadvantages of Photoshop Express is that it does not have a Black and White effect. True False
    13·1 answer
  • To make a duplicate of text, image,chart,graphs etc.​
    7·1 answer
  • How do you get off of the comments after you look at them wit out going all the way off the app?
    15·1 answer
  • Your agile team only has one database developer. So the other developers finish their tasks and then wait for their work to be I
    6·1 answer
  • What are five don’ts of using a computer
    8·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!