ASAP PLSEyeglasses are an example of how _____ has improved lives. modeling estimating science technology

Answers

Answer 1
Answer:

Answer:

new technology

Explanation:

Answer 2
Answer: Technology or new technology or modern technology hope this helps!

Related Questions

Which one of the following is NOT a piece of information you need in order to access an FTP site? A Location of file on server B Username C Name of FTP client D Password
There was a red screen on my computer that said "VIRUS DETECTED. IF YOU X OUT THIS TAB, THEN YOUR HARD DRIVE WILL BE DELETED." What does that mean, should I off xed the tab out, I shut down my computer when i saw that...so will anything happen to my computer? IS THE VIRUS STILL THERE????AND LAST.....WHAT DOES A VIRUS HAVE TO DO WITH HARD DRIVE? AND WHAT DOES A VIRUS AFFECT? HOW WILL IT AFFECT MY COMPUTER?
What did the strict study generally find about the effect of internet use on sleep?A. Teens who use the internet and phone after bedtime have a variety of sleep problems.B. Sleep is unaffected by internet use, as long as it is on a personal computer.C. Teens sleep better with their phone at their side.D. younger teens tend to spend more time on internet devices.
Microsoft word's spell checker will offer suggestions on misspelled words
This subject is music Please help me.

Define knowledge management

Answers

Knowledge management is the process of creating, sharing, using and managing the knowledge and information of an organisation. It refers to a multidisciplinary approach to achieving organisational objectives by making the best use of knowledge.

What is the remainder of quotient of of 79 divide by  8

Answers

The answer is 9 remainder of 7 cause 8 divided by 79 first u figure out wat num is close to 79 which is 8 times 9= 72 so it's going to be a remainder of 7

Which of the following information would best be displayed throughout the use of a time line

Answers

the best answer to me is D

What is one of the core concepts in IT?data integration

platform as a service

Open Systems Interconnect

infrastructure as a service

Answers

Answer:

Data integration

Explanation:

One of the core concepts in IT is data integration. Data integration refers to the process of combining data from various different sources into a single view. This allows the data to become easier to process, and therefore, more useful and actionable. For data integration to take place, it is necessary to have a network of data sources, a master server and clients.

Answer:

data integration

platform as a service

Open Systems Interconnect

infrastructure as a service

Explanation:

All of the above and concept in IT

Colin is writing a Python program and needs to convert decimal to binary. Which function should he use?ILL GIVE BRAINLEIST TO BEST ANSWER

A: bin( )
B: convert( )
C: digi( )
D: main( )

Answers

Answer: A

Explanation:

If you type in the function bin( ), it will convert the decimal number to the binary equivalent. The answer to the question is option A, bin ( ). Hope this helps!

Answer is a - bin()

Hope this answer helps!

Will give brainliest and good amount of points, no false answers.I am using javascript for school and I still have no idea what I am doing. Can someone help? The instructions are,

A key step in many sorting algorithms (including selection sort) is swapping the location of two items in an array. Here's a swap function that looks like it might work, but doesn't:
-the code prints out [9, 9, 4] when it should print out [9, 7, 4].

Fix the swap function.

Hint: Work through the code line by line, writing down the values of items in the array after each step. Could you use an extra temporary variable to solve the problem that shows up?

Once implemented, uncomment the Program.assertEqual() at the bottom to verify that the test assertion passes.


the layout for javascript is,

var swap = function(array, firstIndex, secondIndex) {
array[firstIndex] = array[secondIndex];
array[secondIndex] = array[firstIndex];
};

var testArray = [7, 9, 4];
swap(testArray, 0, 1);

println(testArray);

//Program.assertEqual(testArray, [9, 7, 4]);

Answers

The problem with the swap function is that it loses the value at the first index, as soon as it gets overwritten by the value at the second index. This happens in the first statement. To fix it, you need a helper variable.

First you're going to "park" the index at the first index in that helper variable, then you can safely overwrite it with the value at the second index. Then finally you can write the parked value to the second index:

var swap = function(array, firstIndex, secondIndex) {

let helper = array[firstIndex];

array[firstIndex]  = array[secondIndex];

array[secondIndex] = helper;

};

I hope this makes sense to you.