impact of science in the world ​

Answers

Answer 1

Answer:

scientific impact reflection that finding all publication has on science or on society

Explanation:

such impact can be short term or long term and it is important not be imprise 1 over the other to great extent


Related Questions

Write a program that passes an unspecified number of integers from command line and displays their total. Sample Run 1 command>java 1 2 3 4 5 The total is 15 Sample Run 2 command>java 1 9 1 1 1 The total is 13 Class Name: Exercise07_21

Answers

Using the computational language in JAVA it is possible to write a code that at least passes an unspecified number of integers

Writing code in JAVA

class Exercise07_21

{

public static void main(String args[])

{

int sum=0;

for(int i=0;i<args.length;i++)

sum=sum+Integer.parseInt(args[i]);//converting string to integer and then adding it with sum variable and storing back in sum

System.out.println("The total is "+sum);//printing the sum

}

}

See more about JAVA code at brainly.com/question/12975450

#SPJ1

the formula to compute the direct material quantity variance is to calculate the difference between

Answers

The formula to compute the direct material quantity variance is to calculate the difference between option c. (actual quantity * standard price) - standard costs.

What is Direct material quantity variance?

This is known to be  the difference that exist between the standard cost of standard material which is said to be allowed for actual production, and also the standard cost of material that is said to be really  used in production.

Therefore, The formula to compute the direct material quantity variance is to calculate the difference between option c. (actual quantity * standard price) - standard costs.

See options below

The formula to compute direct material quantity variance is to calculate the difference between

a. actual costs - standard costs

b. standard costs - actual costs

c. (actual quantity * standard price) - standard costs

d. actual costs - (standard price * standard costs)

Learn more about  direct material quantity from

https://brainly.com/question/26245657

#SPJ11

15 POINTS FOR THE ANSWERS ASAP
Which type of portfolio would you prefer to have? Why did you pick that portfolio?

Answers

Answer:

Aggressive Portfolio

Explanation:An aggressive portfolio takes on great risks in search of great returns.

the hyperledger fabric framework only offers blockchain services?

Answers

The hyperledger fabric framework only offer blockchain services. Therefore, it's true.

What does the hyperledger fabric offer?

It should be noted the hyperledger frameworks are used for building blockchain for organizations.

It should be noted that they're also used for open source development. Therefore, the correct option is true.

Learn more about blockchain on:

brainly.com/question/25700270

#SPJ12

Write a program that prompts the user to input an integer and then outputs both the individual digits of the number and the sum of the digits. For example, the program should: output the individual digits of 3456 as 3 4 5 6 and the sum as18,

Answers

The program is an illustration of loops; Loops are used for repetition

The actual program

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

#This gets input for the number

n = int(input())

#This initializes the sum to 0

sumTotal = 0

#This iterates through the digits

for x in str(n):

   #This adds each digit

   sumTotal+=int(x)

   #This prints each digit

   print(x,end =' ')

#This prints a new line

print()

#This prints the total

print(sumTotal)

Read more about loops at:

https://brainly.com/question/24833629

#SPJ1

In the /etc/shadow file, which character in the password field indicates that a standard user account is locked?

Answers

The character in the password field that tells that a standard user account is locked is "!".

What is password field?

This is known to be a kind of security precaution, where a password field is said to save its value as an array of characters, instead of a string.

Note that the exclamation mark In the file, is said to be the character in the password field that tells that a standard user account is locked.

Learn more about  password field from

https://brainly.com/question/17174600

#SPJ12

What is the relationship between a product owner (po) and product management (pm)

Answers

A product owner (po) is a designated title to an individual assigned to make decisions for the product as a whole.

Product owner

There are a lot of responsibilities attached to this role, such as detailed planning and assigning tasks to capable team members. It also involves setting task deadlines and then reviewing the task when they're completed.
However, product management is not a designated work title like product owner, it is a term that simply describes the set of activities performed by the product owner as well as other authorized members of the team. But is important to note that when it comes to decisions about the whole direction of the product, the product owner alone bears this responsibility.

You can learn more about the product owner here https://brainly.com/question/16412628

#SPJ9

Danielle has been asked to configure virtualization at her company. She recommends that her manager buy multicore processors. What justification should she give as to why virtualization workstations require as many CPU cores as possible

Answers

The justification should she give as to why virtualization workstations require as many CPU cores as possible are the Each virtual machine makes use of actual CPU resources for processing instructions and data (pg227, 228).

What justification need to she deliver as to why virtualization workstations require as many CPU cores as possible?

Because every visitor's working device runs in its personal space, a couple of cores are required to shop the collective data.

Footprint discount is the primary goal, go together with a bigger wide variety of cores over quicker clock speeds. However, if workload overall performance is a larger concern, quicker clock speeds and less cores would possibly make greater sense.

Read more about the virtualization :

https://brainly.com/question/25110079

#SPJ1

You can use what utility to convert two or more basic disks to dynamic disks?

Answers

Disk Management is a utility that can be used to convert two or more basic disks to dynamic disks.

What is Disk Management?

Disk Management can be defined as a type of utility that is designed and developed to avail end users an ability to convert two or more basic disks on a computer system to dynamic disks.

This ultimately implies that, Disk Management is a utility that is typically used to convert two or more basic disks to dynamic disks, for the sake of disk redundancy and mirroring.

Read more on Disk Management here: https://brainly.com/question/6990307

#SPJ12

What options are available for storing backups, physically?

Answers

The options are available for storing backups, physically are:

In both on site and off site,, a person can backup data to a given system that is located on-site, or the backups can be sent to any  remote system that is off-site.

What is a backup?

This is known to be a device that helps to save information or data temporarily or permanently.

Note that in the above, The options are available for storing backups, physically are:

In both on site and off site,, a person can backup data to a given system that is located on-site, or the backups can be sent to any  remote system that is off-site.

Learn more about backups from

https://brainly.com/question/17355457

#SPJ12

Add an option for Green with value of Green, id of green, and associated of Green. Then, add option: Black

Answers

The code statement illustrates the use of radio buttons in HTML

How to add green and black options?

The complete question is added as an attachment.

From the complete question, we can see that the instructions are written in HTML.

In the existing HTML code, the color yellow is represented using a radio button.

So, we continue by using radio buttons for color green and black

The code statements that add green and black options are:

<input type="radio" name="color" value = "Green" id = "green"><label for "green">Green</label>

<input type="radio" name="color" value = "Yellow" id = "yellow"><label for "yellow">Yellow</label>

Read more about HTML at:

https://brainly.com/question/14311038

#SPJ11

why blu rays store more data than dvd

Answers

A Blu-ray disk stores more data than DVD because it uses a blue laser that has a shorter wavelength (405 nm) rather than a red laser (650 nm).

What is a Blu-ray disk?

A Blu-ray disk can be defined as a high-capacity optical disk storage medium that is designed and developed by Sony, Blu-ray Disc Association, so as to record (store), rewrite and play back high definition (HD) video formats.

Based on scientific information, the reason why a Blu-ray disk stores more data than DVD is simply because it uses a blue laser that has a shorter wavelength (405 nm) rather than a red laser with a wavelength of 650 nm used on DVDs.

Read more on Blu-ray disk here: https://brainly.com/question/26699008

#SPJ12

Technology is defined as human ________________ in action that involves the generation of knowledge and processes to develop systems that solve problems and extend human capabilities.

Answers

Answer:

Innovation:

Explanation:

Technology is defined as human innovation in action that involves the generation of knowledge and processes to develop systems that solve problems and extend human capabilities.

To innovate is to make changes in something established, especially by introducing new methods, ideas, or products.

What specialized network device is commonly used to load balance traffic across multiple servers in a group?

Answers

A content switch is a specialized network device that's commonly used by network engineers to load balance network traffic across multiple servers in a group.

What is a content switch?

A content switch can be defined as a class of switch which is designed and developed for the programmatic redirection of request traffic of a client from one server, which was initially selected by load balancing to another server selected based on the content of the request or header.

Thus, a content switch is a specialized network device that's commonly used by network engineers to load balance network traffic across multiple servers in a group.

Read more on switches here: https://brainly.com/question/14850209

#SPJ12

Due to a fire at ABC Software Solutions, all
documentation for a product is destroyed just before it is
delivered. What is the impact of the resulting lack of
documentation?

Answers

Answer:

chaos among people who worked in the company.

What are the advantages and disadvantages of E learning.​

Answers

Answer:

E LEARNING.This is the effective teaching and learning by using electronic media.

Advantages.Reduce travveling costs and time to and from school.Learner can study whenever they access computer and internet.Self paced learning models.Class works can be schedule around personal and professional work,resulting in flexibility learning.

Disadvantages.Student may feel isolated or miss social interractions.Un motivated learners or those with poor study habits may fall behind .Instruxtions may not be available on demand.

hope it helps.

Advantages.It preserve time to and from school.Learner can study whenever they access computer and internet.Self paced learning models.Class works can be schedule around personal and professional work,resulting in flexibility learning.

Disadvantages.Student can feel bored to learn alone.Un motivated learners or those with poor study habits may fall behind .Instruxtions may not be available on demand.Cost to ruin the service since it needs subscribtions for every periodof time to access more quality services.

Quickbooks online accountant firm users can use the quickbooks online advanced desktop app to access what types of client subscriptions?.

Answers

The type of the client subscription used is paid subscription.

What is Paid Subscription?

Paid Subscription refers to the payment made already on the product purchased or the services received. It is a kind of the recurring payment whose transactions repeat after a regular basis.

If the customer continue to receive  the service then he or she has to pay the subscription.

After paying the membership costs, customers of Quickbooks Online for accountancy firms can access the Quickbooks Online Advanced desktop application.

Learn more about Paid Subscription here:

https://brainly.com/question/13508895

#SPJ1

Dean has been using computers for some time now, but he is unfamiliar with a number of utility programs. In order to better maintain his computer, he decides to ask his coworker Andrea for advice on basic utility programs. Andrea tells Dean is that it is very important for him to ____ all of his important data on a regular basis to avoid data loss in the case of a problem with the computer. He can use a(n) ____ utility to do this.

Answers

Andrea tells Dean is that it is very important for him to save all of his important data on a regular basis to avoid data loss in the case of a problem with the computer. He can use an install utility to do this

What is a computer?

It should be noted that a computer simply means an electronic machine that can be used to make one's work easier.

In this case, Andrea tells Dean is that it is very important for him to save all of his important data on a regular basis to avoid data loss in the case of a problem with the computer. He can use an install utility to do this.

Learn more about computer on:

brainly.com/question/24540334

#SPJ12

describe the difference between serial and parallel processing.

Answers

Serial processing is a type of single task processing but Parallel processing is a type of multiple tasks processing.

What is the difference between serial and parallel processing?

Serial processing gives room for only one object at a time that is said to be processed, but parallel processing often takes in a lot of objects to be  processed simultaneously.

Therefore, Serial processing is a type of single task processing but Parallel processing is a type of multiple tasks processing.

Learn more about Serial processing from

https://brainly.com/question/21304847

#SPJ11

how memory and storage space are managed in gaming application

Answers

Answer:

it depends on which type of game you play like GTA series consume 68 GB ! normal games like poker . and all this sh*t

The it components of an erp system architecture include the hardware, software and the ________

Answers

The components of an ERP system architecture is made up of the hardware, software and the Data.

What is an ERP system?

Enterprise resource planning (ERP) is known to be a kind of  software that firms often use to handle or manage day-to-day business works such as accounting and others.

Note that The components of an ERP system architecture is made up of the hardware, software and the Data.

Learn more about  ERP system from

https://brainly.com/question/14635097

#SPJ12

the control plan is essential because it tells the

Answers

The control plan is essential because it tells the Process owners the way or how to sustain the project gains.

What is the aim of a control plan?

A control plan is known to be a kind of living document that states the methods to be used for quality control of any vital or critical inputs to transport outputs that can meet customer requirements.

Note that The control plan is essential because it tells the Process owners the way or how to sustain the project gains.

Learn more about control plan from

https://brainly.com/question/25453419

#SPJ11

what does the acronym siem stand for in a cybersecurity context?

Answers

Siem is an acronym which stands for Security Information Event Management.

From a cybersecurity context, Siem is a term used for generalized tools that help an organization monitor their IT systems in other to detect potential cyberattacks.

In other words, Siem helps companies monitor and detail security events that occur within an organization's IT infrastructure.

You can learn more about Siem here https://brainly.com/question/25720881

#SPJ9

30 POINTS FOR THE ANSWER FAST
For this discussion, you are going to walk through the process of completing an estimate to come up with a budget and timeline for a logo, letterhead, envelope, and invoice. Your client is a pet sitter who operates out of her home. She walks, boards, and grooms dogs. What would you charge your client? How long do you think it will take you? What programs will you use? Where will you print it?

Answers

Answer:

Sorry I don't know the answer.

at the data link layer, which type of network address is used to identify the receiving node?

Answers

Answer:

MAC address

Explanation:

The MAC address is a local 48 bit address that is unique to every device. It is found at the Data link layer unlike IP address that is found at the Network layer, the MAC address will not change.

The MAC address, type of network address is used to identify the receiving node.

What is A MAC address?

This is known to be a kind of physical address that is often given to each network adapter in a computer, or any kind of mobile device.

This is made up of twelve hexadecimal characters and as such, The MAC address, type of network address is used to identify the receiving node.

Learn more about MAC address  from

https://brainly.com/question/13267309

#SPJ11

whts the mistake in this
pls do help me out

Answers

Explanation:

i don't even know it's uclear what the mistake is

what do you mean by computer ethics?​

Answers

Answer:

Computer ethics is a field of applied ethics that addresses ethical issues in the use, design and management of information technology and in the formulation of ethical policies for its regulation in society.

Ignore this it a temporary note for me: SPSstudents

Answers

Answer:

okk

Explanation:

ravi met few peoples in a party and was mixing up well those wearing expensives clothing and fair complexion . which factors are influenceing ravi's perspective towards the people​

Answers

The factor that influenced Ravi's perspective towards the people can be referred to as Visual perspective.

What do you mean by Visual perspective?

Visual perception or sight can be defined as the ability to interpret the encircling surroundings via photopic vision, color vision, scotopic vision, and mesopic vision, the usage of light withinside the visible spectrum meditated through items withinside the surroundings.

It also means the ability to see the world through others' perspectives, which takes into account what and how they see it.

Thus, The factor that influenced Ravi's perspective towards the people can be referred to as Visual perspective.

Learn more about Visual perspective:

https://brainly.com/question/14956318

#SPJ1

Part B
Select a student organization belonging to the Career and Technical Student Organizations (CTSO) of your choice in which you would like to
participate. You should choose a CTSO related to the field of computers. Research online and create a brief report on the mission of the
organization, and state the reason why you want to participate in this organization.
You roay use online resources to find information about the organization

Answers

My choice of the  student organization that is belonging to the Career and Technical Student Organizations (CTSO) is DECA.

What is DECA about?

DECA is known to be a type of CTSO that is said to allow or aid students to be able to create college and career readiness form of skills.

Note that DECA is based  on helping students to be very prepared for careers in in areas of:

Business Management and AdministrationFinanceHospitality & TourismMarketing

Learn more about CTSO from

https://brainly.com/question/10917703

#SPJ1

Other Questions
please place the dot for me(20 points will give brainliest!!!) What do you do when proofreading? which surgical procedure is categorized under curative surgery Please answer BOTH the questions tyyyyyysm What actions would the fomc likely take if it were to pursue contractionary monetary policy using open market operations?. The supreme court reaffirmed the idea that there is no substantial public interest in permitting certain kinds of speech, including fighting words, in: PLEASE HELP ASAP!!!!!!Right EFG has its right angle at F, EG=8, and FG=2.What is the value of the trigonometric ratio of an angle of the triangle?Drag a value to each box to match the trigonometric ratio with its value.TanE=SinG=SecG= (4,1/4, 415/15, 15/15, 15/4)(PLEASE ANSWER ASAP, ALSO IF YOU KNOW ANY OF THE OTHER ANSWERS TO THE PRE-CALUCLUS-TRIGONOMETRY SEMESTER TEST 6.04 PLEASE HELP!) The lengths of three sides of a trapezoid are shown below:Side 1: 11z2 4z + 2Side 2: 2z + 3 + 12z2Side 3: 3 3z + 13z2The perimeter of the trapezoid is 5z3 + 40z2 + 7z 15.Part A: What is the total length of sides 1, 2, and 3, of the trapezoid? (4 points)Part B: What is the length of the fourth side of the trapezoid? (3 points)Part C: Do the answers for Part A and Part B show that the polynomials are closed under addition and subtraction? Justify your answer. (3 points) Geometry question! Please help thanks! Describe the important of mushroom for us Discuss any five ways in which the visual and performing arts teacher can instill learner's with creativity What type of air mass produces cold dry air It just so happens that regardless of the material, when objects are heated up they will start to glow and change colors at near identical temperatures. The plot that you see is called a blackbody spectrum. This plot tells us the intensity or the amount of light that an object will emit at different wavelengths (or colors). The visible wavelengths are marked by their colors on the plot. To the right of the visible band is lower energy infrared light. To the left of this band is higher energy ultraviolet (UV) light.Click the + button that is to the left of the intensity scale (far left side of the screen) such that the top of the scale is at 1x10-3 (in the picture above, the top of the scale says 100).Now use the temperature slider to the right, and take the temperature all the way down to 300 Kelvin (80 Fahrenheit). Now slowly begin to raise the temperature. At approximately what temperature would a heated material (metal, wood, etc.) begin to give off visible light at a deep red color? Which is the best example of paraphrasing for the following passage?... it don't modify him worth a cent. Fact is, makes him worse, becuz it appears to stir up his ambition.A. you owe me money for this horrible smell.B. That didnt seem to make the smell any better. it appears to have made that smell worse. C. it wasn't the cost because it didn't help how does the feshe model combine training and education into one complete package In a rectangle the length of diagonal AC is given by (20x+12)&BDis (14x+24)cm find AC&BD forces if magnitude 2,5 and 4 units lie in the direction 45,90 and 135 respectively. Find: A. the magnitude. B. the direction of their resultant Within a ________________________ economy, we often see both producers and consumers responding to the incentive of price changes. What us the significance of Suez canal short answer What is bioluminescence?A. It is when living creatures absorb light.B. It is when living creatures reflect light.C. It is when living creatures produce light.D. It is when living creatures destroy light.