80billion +2 TRILLION . PLEASE AWNSER

Answers

Answer 1

Answer:

two trillion eighty billion

Explanation:

g00gle is my best friend


Related Questions

Write a program to prompt the user for hours and rate per hour using input to compute gross pay.

Pay should be the normal rate for hours up to 40 and time-and-a-half for the hourly rate for all hours worked above 40 hours.

Put the logic to do the computation of pay in a function called computepay() and use the
function to do the computation. The function should return a value. Use 45 hours and a rate of 10.50 per hour to test the program (the pay should be 498.75).

You should use input to read a string and float to convert the string to a number. Do not worry about error checking the user input unless you want to - you can assume the user types numbers properly. Do not name your variable sum or use the sum() function.​

Answers

def computepay(h,r):

   if h > 40:

       pay = 40 * r

       h -= 40

       pay += (r*1.5) * h

   else:

       pay = h*r

   return pay

print(computepay(float(input("How many hours did you work? ")),float(input("What is your rate of pay"))))

I hope this helps!

3) Write a Java application that asks the user to enter the scores in 3 different tests (test1, test2, test3) for 5 students into a 2D array of doubles. The program should calculate the average score in the 3 tests for each student, as well as the average of all students for test1, test2 and test3.

Answers

Answer:

import java.util.Scanner;

public class TestScores {

public static void main(String[] args) {

// create a 2D array of doubles to hold the test scores

double[][] scores = new double[5][3];

// use a Scanner to get input from the user

Scanner input = new Scanner(System.in);

// loop through each student and each test to get the scores

for (int i = 0; i < 5; i++) {

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

System.out.print("Enter score for student " + (i+1) + " on test " + (j+1) + ": ");

scores[i][j] = input.nextDouble();

}

}

// calculate the average score for each student and print it out

for (int i = 0; i < 5; i++) {

double totalScore = 0;

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

totalScore += scores[i][j];

}

double averageScore = totalScore / 3;

System.out.println("Average score for student " + (i+1) + ": " + averageScore);

}

// calculate the average score for each test and print it out

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

double totalScore = 0;

for (int i = 0; i < 5; i++) {

totalScore += scores[i][j];

}

double averageScore = totalScore / 5;

System.out.println("Average score for test " + (j+1) + ": " + averageScore);

}

}

}

Explanation:

Here's how the program works:

It creates a 2D array of doubles with 5 rows (one for each student) and 3 columns (one for each test).

It uses a Scanner to get input from the user for each test score for each student. It prompts the user with the student number and test number for each score.

It loops through each student and calculates the average score for each student by adding up all the test scores for that student and dividing by 3 (the number of tests).

It prints out the average score for each student.

It loops through each test and calculates the average score for each test by adding up all the test scores for that test and dividing by 5 (the number of students).

It prints out the average score for each test.

Note that this program assumes that the user will input valid numbers for the test scores. If the user inputs non-numeric data or numbers outside the expected range, the program will throw an exception. To handle this, you could add input validation code to ensure that the user inputs valid data.

5.18 LAB: Output numbers in reverse Write a program that reads a list of integers, and outputs those integers in reverse. The input begins with an integer indicating the number of integers that follow. For coding simplicity, follow each output integer by a comma, including the last one. Ex: If the input is: 5 2 4 6 8 10 the output is: 10,8,6,4,2, To achieve the above, first read the integers into a vector. Then output the vector in reverse.

Answers

Answer:

In C++:

#include<iostream>

#include<vector>

using namespace std;

int main(){

   int len, num;

   vector<int> vect;

   cout<<"Length: ";

   cin>>len;  

   for(int i = 0; i<len;i++){

       cin>>num;

   vect.push_back(num);}

   vector<int>::iterator iter;

   for (iter = vect.end() - 1; iter >= vect.begin(); iter--){

       cout << *iter << ", ";}    

}

Explanation:

This declares the length of vector and input number as integer

   int len, num;

This declares an integer vector

   vector<int> vect;

This prompts the user for length  

cout<<"Length: ";

This gets the input for length  

   cin>>len;  

The following iteration gets input into the vector

   for(int i = 0; i<len;i++){

       cin>>num;

   vect.push_back(num);}

This declares an iterator for the vector

   vector<int>::iterator iter;

The following iterates from the end to the beginning and prints the vector in reverse

   for (iter = vect.end() - 1; iter >= vect.begin(); iter--){

       cout << *iter << ", ";}

Create a Python program that prints all the numbers from 0 to 4 except two distinct numbers entered by the user.
Note : Use 'continue' statement.

Answers

Here is a Python program that prints all numbers from 0 to 4, excluding two distinct numbers entered by the user, using the 'continue' statement:

```python

numbers_to_exclude = []

# Get two distinct numbers from the user

for i in range(2):

   num = int(input("Enter a number to exclude: "))

   numbers_to_exclude.append(num)

# Print numbers from 0 to 4, excluding the user-entered numbers

for i in range(5):

   if i in numbers_to_exclude:

       continue

   print(i)

```

The program first initializes an empty list called `numbers_to_exclude` to store the two distinct numbers entered by the user.

Next, a loop is used to prompt the user to enter two distinct numbers. These numbers are appended to the `numbers_to_exclude` list.

Then, another loop is used to iterate through the numbers from 0 to 4. Inside the loop, an 'if' condition is used to check if the current number is in the `numbers_to_exclude` list. If it is, the 'continue' statement is executed, which skips the current iteration and proceeds to the next iteration of the loop.

If the current number is not in the `numbers_to_exclude` list, the 'print' statement is executed, and the number is printed.

This program ensures that the two distinct numbers entered by the user are excluded from the output, while all other numbers from 0 to 4 are printed.

For more such answers on Python

https://brainly.com/question/26497128

#SPJ8

In this project you are to: a. Design and implement a readers/writers lock using semaphores that does not starve the readers and does not starve the writers; b. Write the main C program that uses Reader/Writer locks; c. Come up with a set of input scenarios that shows the behavior of your nonstarving lock compared to the starving lock.

Answers

Answer:

b

Explanation:

thats all you need to know folks

Which Energy career pathways work with renewable energy? Check all that apply.

Answers

Energy Conversion, Energy Generation, Energy Analysis, Energy Transmission, and Energy Distribution are all career pathways that can work with renewable energy.


What is Energy Conversion?

The conversion of renewable energy sources, such as sunlight or wind, into practical forms like heat or electricity is known as energy transformation.

The process of generating renewable energy involves direct engagement in the production of energy through the operation of facilities like wind or solar farms.

Energy Analysis is the process of evaluating and enhancing the effectiveness and durability of energy systems, which also encompass renewable resources.

Read more about renewable energy here:

https://brainly.com/question/545618

#SPJ1

Which Energy career pathways work with renewable energy? Check all that apply.

Energy Conversion

Energy Generation

Energy Analysis

Energy Transmission

Energy Distribution

Using TWO practical life experiences, discuss the critical section problem in
the context of an operating system

Answers

For instance, given a system of n processes (P₀, P₁, ....… Pₙ₋₁} with each process having critical section segment of code:

The critical section problem would cause the processes to change shared resources, writing file, updating table, etc.When one process enters the critical section, no other process would be in its critical section.

What is an operating system?

An operating system (OS) can be defined as a system software that's usually pre-installed on a computing device by the manufacturers, so as to manage random access memory (RAM), software programs, computer hardware and all user processes.

What is the critical section problem?

A critical section problem can be defined as a code segment in which all of computer processes access and make use of shared resources such as digital files and common variables, as well as performing write operations on these shared resources.

This ultimately implies that, a critical section problem can be used to design and develop a secured protocol followed by a group of computer processes, so that no other process executes in its critical section when another process has entered its critical section.

For instance, given a system of n processes (P₀, P₁, ....… Pₙ₋₁} with each process having critical section segment of code. The critical section problem would cause the processes to change shared resources, writing file, updating table, etc., so that when one process enters the critical section, no other process would be in its critical section.

Read more on critical section problem here: https://brainly.com/question/12944213

#SPJ1

Example of critical section problem in the context of an operating system is when process A change the data in a memory location  and process C want to read the data from the same memory.

What is  critical section problem in OS?

The critical section problem can be regarded as the problem  that involves the notification that one process is executing its critical section at a given time.

It should be noted that ,The critical section  can be seen in code segment  when there is access to shared variables .

Learn more about operating system at:

https://brainly.com/question/1763761

#SPJ1

Explain the main purpose of an operating system

Answers

Answer:

It is the computer body whose control the computer hardware

A non-profit organization decides to use an accounting software solution designed for non-profits. The solution is hosted on a commercial provider's site but the accounting information suchas the general ledger is stored at the non-profit organization's network. Access to the software application is done through an interface that uses a coneventional web browser. The solution is being used by many other non-profit. Which security structure is likely to be in place:

Answers

Answer:

A firewall protecting the  software at the provider

Explanation:

The security structure that is likely to be in place is :A firewall protecting the  software at the provider

Since the access to the software application is via a conventional web browser, firewalls will be used in order to protect against unauthorized Internet users gaining access into the private networks connected to the Internet,

In this lab, you use what you have learned about searching an array to find an exact match to complete a partially prewritten C++ program. The program uses an array that contains valid names for 10 cities in Michigan. You ask the user to enter a city name; your program then searches the array for that city name. If it is not found, the program should print a message that informs the user the city name is not found in the list of valid cities in Michigan.

The file provided for this lab includes the input statements and the necessary variable declarations. You need to use a loop to examine all the items in the array and test for a match. You also need to set a flag if there is a match and then test the flag variable to determine if you should print the the Not a city in Michigan. message. Comments in the code tell you where to write your statements. You can use the previous Mail Order program as a guide.

Instructions
Ensure the provided code file named MichiganCities.cpp is open.
Study the prewritten code to make sure you understand it.
Write a loop statement that examines the names of cities stored in the array.
Write code that tests for a match.
Write code that, when appropriate, prints the message Not a city in Michigan..
Execute the program by clicking the Run button at the bottom of the screen. Use the following as input:
Chicago
Brooklyn
Watervliet
Acme

Answers

Based on your instructions, I assume the array containing the valid names for 10 cities in Michigan is named michigan_cities, and the user input for the city name is stored in a string variable named city_name.

Here's the completed program:

#include <iostream>

#include <string>

int main() {

   std::string michigan_cities[10] = {"Ann Arbor", "Detroit", "Flint", "Grand Rapids", "Kalamazoo", "Lansing", "Muskegon", "Saginaw", "Traverse City", "Warren"};

   std::string city_name;

   bool found = false;  // flag variable to indicate if a match is found

   std::cout << "Enter a city name: ";

   std::getline(std::cin, city_name);

   for (int i = 0; i < 10; i++) {

       if (city_name == michigan_cities[i]) {

           found = true;

           break;

       }

   }

   if (found) {

       std::cout << city_name << " is a city in Michigan." << std::endl;

   } else {

       std::cout << city_name << " is not a city in Michigan." << std::endl;

   }

   return 0;

}

In the loop, we compare each element of the michigan_cities array with the user input city_name using the equality operator ==. If a match is found, we set the found flag to true and break out of the loop.

After the loop, we use the flag variable to determine whether the city name was found in the array. If it was found, we print a message saying so. If it was not found, we print a message saying it's not a city in Michigan.

When the program is executed with the given input, the output should be:

Enter a city name: Chicago

Chicago is not a city in Michigan.

Enter a city name: Brooklyn

Brooklyn is not a city in Michigan.

Enter a city name: Watervliet

Watervliet is a city in Michigan.

Enter a city name: Acme

Acme is not a city in Michigan.

Read more about programs here:

https://brainly.com/question/26134656

#SPJ1

True or false: the HTTPs means that the information on a website has been fact-checked
True
False

Answers

Answer:

False

Explanation:

role of the computer for the development of a country​

Answers

Computers have a transformative impact on the development of a country by driving economic growth, revolutionizing education, fostering innovation, improving governance, and promoting connectivity.

Economic Growth: Computers play a crucial role in driving economic growth by enabling automation, streamlining processes, and increasing productivity. They facilitate efficient data management, analysis, and decision-making, leading to improved business operations and competitiveness.

Education and Skills Development: Computers have revolutionized education by providing access to vast amounts of information and resources. They enhance learning experiences through multimedia content, online courses, and virtual simulations.

Innovation and Research: Computers serve as powerful tools for innovation and research. They enable scientists, engineers, and researchers to analyze complex data, simulate experiments, and develop advanced technologies.

High-performance computing and artificial intelligence are driving breakthroughs in various fields, such as medicine, energy, and engineering.

Communication and Connectivity: Computers and the internet have revolutionized communication, enabling instant global connectivity. They facilitate real-time collaboration, information sharing, and networking opportunities. This connectivity enhances trade, international relations, and cultural exchange.

Governance and Public Services: Computers play a vital role in improving governance and public service delivery. They enable efficient data management, e-governance systems, and digital platforms for citizen engagement. Computers also support public utilities, healthcare systems, transportation, and security infrastructure.

Job Creation: The computer industry itself creates jobs, ranging from hardware manufacturing to software development and IT services. Moreover, computers have catalyzed the growth of other industries, creating employment opportunities in sectors such as e-commerce, digital marketing, and software engineering.

Empowerment and Inclusion: Computers have the potential to bridge the digital divide and empower marginalized communities. They provide access to information, educational opportunities, and economic resources, enabling socio-economic inclusion and empowerment.

For more such questions on economic growth visit:

https://brainly.com/question/30186474

#SPJ11

4. Make up your own here!

a. What hardware tool would you suggest for his computing system? Include an
explanation and the cost.
b. What software program would you suggest? Include an explanation and the cost.
c. What operating system might you suggest (Mac, Windows, iOS, Android, etc) and why?

Answers

Answer:

tool that I need is screw driver cause it's helpful

lolhejeksoxijxkskskxi

Answers

loobovuxuvoyuvoboh

Explanation:

onovyctvkhehehe

Answer:

jfhwvsudlanwisox

Explanation:

ummmmmm?

HI can someone help me write a code.
Products.csv contains the below data.
product,color,price
suit,black,250
suit,gray,275
shoes,brown,75
shoes,blue,68
shoes,tan,65
Write a function that creates a list of dictionaries from the file; each dictionary includes a product
(one line of data). For example, the dictionary for the first data line would be:
{'product': 'suit', 'color': 'black', 'price': '250'}
Print the list of dictionaries. Use “products.csv” included with this assignment

Answers

Using the knowledge in computational language in python it is possible to write a code that write a function that creates a list of dictionaries from the file; each dictionary includes a product.

Writting the code:

import pandas

import json  

def listOfDictFromCSV(filename):  

 

# reading the CSV file    

# csvFile is a data frame returned by read_csv() method of pandas    

csvFile = pandas.read_csv(filename)

   

#Column or Field Names    

#['product','color','price']    

fieldNames = []  

 

#columns return the column names in first row of the csvFile    

for column in csvFile.columns:        

fieldNames.append(column)    

#Open the output file with given name in write mode    

output_file = open('products.txt','w')

   

#number of columns in the csvFile    

numberOfColumns = len(csvFile.columns)  

 

#number of actual data rows in the csvFile    

numberOfRows = len(csvFile)    

 

#List of dictionaries which is required to print in output file    

listOfDict = []  

   

#Iterate over each row      

for index in range(numberOfRows):  

     

#Declare an empty dictionary          

dict = {}          

#Iterate first two elements ,will iterate last element outside this for loop because it's value is of numpy INT64 type which needs to converted into python 'int' type        

for rowElement in range(numberOfColumns-1):

           

#product and color keys and their corresponding values will be added in the dict      

dict[fieldNames[rowElement]] = csvFile.iloc[index,rowElement]          

       

#price will be converted to python 'int' type and then added to dictionary  

dict[fieldNames[numberOfColumns-1]] = int(csvFile.iloc[index,numberOfColumns-1])    

 

#Updated dictionary with data of one row as key,value pairs is appended to the final list        

listOfDict.append(dict)  

   

#Just print the list as it is to show in the terminal what will be printed in the output file line by line    

print(listOfDict)

     

#Iterate the list of dictionaries and print line by line after converting dictionary/json type to string using json.dumps()    

for dictElement in listOfDict:        

output_file.write(json.dumps(dictElement))        

output_file.write('\n')  

listOfDictFromCSV('Products.csv')

See more about python at brainly.com/question/19705654

#SPJ1

HI can someone help me write a code. Products.csv contains the below data.product,color,pricesuit,black,250suit,gray,275shoes,brown,75shoes,blue,68shoes,tan,65Write

in working with microsoft project, discuss what have you found to be the most useful features, and which have been the most difficult to use. in replies to peers, provide troubleshooting tips you have used or researched to address the features that have posed difficulties in using the software.

Answers

Microsoft Project is a powerful project management software that can be used for a variety of purposes, including scheduling, resource management, and budgeting. Some of the most useful features in Microsoft Project include the ability to create and manage detailed project schedules, track and analyze project progress, and collaborate with team members in real-time.

One feature that can be difficult to use is the resource leveling feature. This feature allows you to automatically adjust the project schedule to take into account resource constraints, such as the availability of team members or equipment. Some troubleshooting tips for this feature include:

Ensure that you have correctly defined the resources that are assigned to tasks in your project.

Make sure that your project is set up correctly to take into account resource calendars and availability.

Check that your project has enough slack time built in to allow for resource leveling to take place.

Another feature that can be difficult to use is the reporting feature. This feature allows you to create customized reports on the progress of your project, such as resource utilization, cost and schedule variance, and more. Some troubleshooting tips for this feature include:

Make sure that you are using the correct template for your report.

Ensure that you have selected the correct data fields to include in your report.

Review the report settings to ensure that they are configured correctly.

Overall, Microsoft Project is a powerful tool that can be used to effectively manage projects of all sizes and complexity. With a little practice and troubleshooting, you should be able to master the software and use it to its fullest potential

Which of the following would be considered software? Select 2 options.
memory
printer
operating system
central processing unit (CPU)
Microsoft Office suite (Word, Excel, PowerPoint, etc.)
Thing

Answers

Answer:

Microsoft Office suite (Word, Excel, PowerPoint, etc.), and thing

Explanation:

The Operating system and Microsoft Office suite will be considered as software.

A Software is the opposite of Hardware in a computer system.

Let understand that Software means some set of instructions or programs on a computer which are used for operation and execution of specific tasks.

There are different type of software and they include:

Application Software are software installed into the system to perform function on the computer E.g. Chrome.System Software is the software designed to provide platform for other software installed on the computer. Eg. Microsoft OS. Firmware refers to set of instructions programmed on a hardware device such as External CD Rom.

In conclusion, the Operating system is a system software while the Microsoft Office suite is an application software.

Learn more about Software here

brainly.com/question/1022352

You are given the following design parameters, fill in the table: All memory addresses are 32-bit long; A 64Kbyte (2^16 byte) cache is added between the processor and the memory. (64Kbytes do not include the amount of space used to store tags and status bits); There are two associativity choices for the cache: direct-mapped and 2-way set associative. There is a 20 percent increase in cache access time and a 40 percent miss rate reduction when moving from a direct-mapped cache to a 2-way set associative cache: There are two cache block size choices of 16bytes and 32bytes. It takes 20 ns to retrieve 1 Gbytes of data from the main memory and 25 ns to retrieve 32 bytes of data. The cache returns the value to the processor after the entire cache block is filled. However, the cache miss rate is reduced by 25 percent when the cache block size doubles; It takes 10ns to access a 64Kbyte direct-mapped cache; The cache nuss rate for a 64Kbyte direct-mapped cache is 10 percent

Answers

Time taken to access the average memory

When direct mapping is utilized, 1. when the block has a 16-byte size.

Given that the memory access time (m) is 20ns and the cache access time (Tc) is 10ns, the cache miss rate is 10%, or 0.1(1-H).

AMAT = HTc + (1-H)(Tc+m) Cache hit rate (H) = 0.9

=HTc + Tc + m -HTc - Hm = Tc + (1-H)m = 10 ns + 0.1 x 20 = 10 ns + 2 = 12 ns

2. direct mapped cache with a 32-byte block size.

Given that the access time to the cache and memory is equal to 10 nanoseconds,

Because of the 25% reduction in the question's cache miss rate, the cache miss rate (1-H) is 0.075. The new miss rate is 75% of 0.1, or 0.075.

Tc + (1-H)m' = 10+0.075 x 25 = 10 + 1.875 = 11.875 ns is what AMAT is.

when there is two-set associativity.

1. when a 16-byte block is in use.

The question indicates that the time it takes to access the new cache goes up by 20% of 10ns.

Access time to the new cache, T'c=12ns

The rate of misses went down by 40%, so the new miss rate is 60% of 0.1. which equals 0.006 (1-H').

AMAT = T'c + (1-H')m.

AMAT is equal to 13.2 ns for 12 ns plus 0.06 x 20.

2. when a cache block is 32 bytes in size.

Access time to memory (m') equals 25 nanoseconds.

By increasing the block size, the miss rate is reduced by 25%.

Therefore, the miss rate is 0.045 = (1-H')/75% of 0.06

AMAT is 12 + 0.45 * 25 = 12 + 1.125, or 13.125 ns.

To learn more about average memory here

https://brainly.com/question/26256045

#SPJ1

Select the recommended design practice that applies to a website using images for main site navigation.
a. provide alternative text for the images
b. place text links at the bottom of the page
c. both a and b
d. no special considerations are needed

Answers

The recommended design practice that applies to a website using images for main site navigation are  both a and b.

What would be a wise design suggestion for text hyperlinks?Good hyperlinks should stand out on a web page from other sorts of content. Dr. Nielsen, a usability researcher, found that underlining hyperlinks to indicate that the text is clickable and making them a distinct colour from other forms of text on a web page both increase their effectiveness.There are three different types of organisational structures: matrix, sequential, and hierarchical.

The suggested design strategy for a website that uses photos for the primary site navigation.

a. provide alternative text for the images 

b. place text links at the bottom of the page

To learn more about alternative text refer to:

https://brainly.com/question/28580148

#SPJ4

What is displayed when you run the following program? print(30 + 10) print(“5 + 8”) 30 + 10 13 30 + 10, , 13 40 13 40, , 13 30 + 10 5 + 8 30 + 10, , 5 + 8 40 5 + 8 40, , 5 + 8

Answers

The statements which would be printed when you run this Python program are:

30 + 10.5 + 8.

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

What is Python?

Python can be defined as a high-level programming language that is designed and developed to build websites and software applications, especially through the use of dynamic commands (semantics) and data structures.

What is a print statement?

A print statement can be defined as a line of code that is used to send data to the print or println method of a programming system such as compiler.

In this scenario, we can infer and logically conclude that the statements which would be printed when you run this Python program are:

30 + 10.5 + 8.

Read more on print statement here: https://brainly.com/question/21631657

#SPJ1

Which of the following is NOT a means by which a threat actor can perform a wireless denial of service attack?
Jamming

Disassociation

IEEE 802.iw separate

Manipulate duration field values

Answers

IEEE 802.iw separate is NOT a means by which a threat actor can perform a wireless denial of service attack.

IEEE 802.iw is a Linux-based utility for managing wireless interfaces. It is used to configure and monitor wireless network interfaces, including network traffic and devices connected to the network. "Separate" is not a feature or functionality of IEEE 802.iw and has no relation to wireless denial of service attacks.

Jamming is a wireless denial of service attack that involves flooding the target network with high levels of noise or interference, rendering it inaccessible. Disassociation is another type of wireless denial of service attack that involves sending forged disassociation frames to clients, causing them to disconnect from the network.

Learn more about IEEE 802.iw: https://brainly.com/question/13111560

#SPJ4

52. Which of the following numbering system is used by the computer to display numbers? A. Binary B. Octal C. Decimal D. Hexadecimal​

Answers

Answer:

Computers use Zeroes and ones and this system is called

A. BINARY SYSTEM

hope it helps

have a nice day

A.Binary B. octal is the correct answer

How are you making an impact? Consider your priorities

Answers

As a college student in STEM,I am committed to making   a positive impact in my field.

Why  is this so?

My priorities   include contributing to scientific research and innovation, tackling real-world problems   through technology, and promoting sustainabilityand ethical practices.

Through my studies,projects, and collaborations, I strive to develop solutions   that address societal challenges, improve lives, and drive progress.

By staying informed,embracing interdisciplinary approaches, and actively engaging in my community, I aim   to make a meaningful and lasting impact in my chosen field.

Learn more about impact at:

https://brainly.com/question/30721119

#SPJ1

i need simple app ideas for basic problems

Answers

Answer: - scan and convert to pdf app.

- timetable managing app.

- color seeing app (for color-blind people.)

- virtual clothing/jewelry try on.

Explanation:

Which of the following terms best describes the product development life cycle process?
descriptive
iterative
Static
evaluative

Answers

Answer:

D

Explanation:

Evaluative

Across the breadth of decision domains,
O The greater use of intuition over analytics results in stronger organizational
performance
The greater use of analytics over intuition results in stronger organizational
performance
O The use of analytics over intuition results in improved performance in about 75 percent
of the decision domains
O The use of analytics over intuition results in improved performance in about 50 percent
of the decision domains

Answers

Answer: C. The use of analytics over intuition results in improved performance in about 50 percent of decision domains.

Explanation: This suggests that while analytics can be a powerful tool for decision-making, there are still many situations in which intuition plays an important role. It is important for organizations to strike a balance between using analytics and intuition to make decisions that lead to improved performance.

. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.

Answers

The program to calculate the square of 20 by using a loop

that adds 20 to the accumulator 20 times is given:

The Program

accumulator = 0

for _ in range(20):

   accumulator += 20

square_of_20 = accumulator

print(square_of_20)

Algorithm:

Initialize an accumulator variable to 0.

Start a loop that iterates 20 times.

Inside the loop, add 20 to the accumulator.

After the loop, the accumulator will hold the square of 20.

Output the value of the accumulator (square of 20).

Read more about algorithm here:

https://brainly.com/question/29674035

#SPJ1

How many times will the loop body execute?
x = 3
while x >= 0:
X = X - 1

3

4

5

6

How many times will the loop body execute?x = 3while x &gt;= 0:X = X - 13456

Answers

Answer:

B. 4

Explanation:

Rules :

x = x - 1

if x = 3, so :

x = x - 1

4 = 4 - 1

4 = 3

Option B

Which term refers to a solution to a large problem that is based on the solutions of smaller subproblems. A. procedural abstraction B. API C. modularity D. library

Answers

Answer:

procedural abstraction

Explanation:

The term that refers to a solution to a large problem that is based on the solutions of smaller subproblems is A. procedural abstraction.

Procedural abstraction simply means writing code sections that are generalized by having variable parameters.

Procedural abstraction is essential as it allows us to think about a framework and postpone details for later. It's a solution to a large problem that is based on the solutions of smaller subproblems.

Read related link on:

https://brainly.com/question/12908738

Question 9 (3 points)
When you add a row, where will it appear?

Answers

Click the Insert command on the Home tab. The new row will appear above the selected row.

To insert the row, Click the Insert command on the Home tab. The new row will appear above the selected row.

What is a cell?

A column and a row's intersection form a rectangular space known as a cell. The Cell Name or Reference, which is discovered by adding the Column Letter and the Row Number, is used to identify cells.

A row can be inserted either above or below where the cursor is. Then click the Table Layout tab after selecting the area where you wish to add a row. Click Above or Below under Rows & Columns. A row can be inserted either above or below where the cursor is.

Then click the Table Layout tab after selecting the area where you wish to add a row. Click Above or Below under Rows & Columns.

Therefore, it can be concluded that the raw appears in the home tab in the section of Row.

Learn more about cells here:

https://brainly.com/question/8029562

#SPJ2

Other Questions
Which quality of true love is completely abused by divorce A.Love is not jealous B. Love is patient and kind C.Love does not last forer et D.Love does not keep any score of wrongs Pls for my exams an air-filled parallel-plate capacitor has plates of area 2.30 cm2 separated by 1.50 mm. the capacitor is connected to a 12.0-v battery. (a) find the value of its capacitance. (b) what is the charge on the capacitor? (c) what is the magnitude of the uniform electric field between the plates? A square rug covers 79 square feet of floor. What is the approximate length of one side of the rug? (approximate to the nearest hundredth foot. ) 8. 86 feet 8. 87 feet 8. 88 feet 8. 89 feet. Refer to the map below to answer the following question: In what part of China did the population increase the most?A) in the northeastB) in the northwestC) in the southeastD) in the southwest [EASY] What's the slope of the line?? PLEASE HELP the force that keeps a tire from slipping on the roadway is called ndicate whether each of the following statements about the processing of mRNA transcripts is true or false. 1. Processing of mRNA transcripts occurs in prokaryotes only. 2 Reform the mRNA is processed, it is called the primary transcript 3. The final processed form of mRNA is called the mature mRNA. 4. Transcript processing takes place in the cytoplasm. 5 During transcript processing, a methylated GTP is added to the 3? end of the transcript. 6. During transcript processing, a series of adenine residues are added to the 5? end of the transcript. T During transcript processing, noncoding regions, called exons, are removed and the coding regions, called introns, are spliced together. 8 The poly-A tail appears to play a role in the stability of mRNAs by protecting them from degradation 9. A single primary transcript can be spliced into different mature mRNAs by the inclusion of different exons, a process called alternative splicing. 2(2q + 1.5) = 18 - q If 29.5 mL of 0.150 M HCl neutralizes 25.0 mL of a basic solution, what was [OH] in the basic solution ill mark brainlist plss help the measure of interest rate risk that uses the difference between rate-sensitive assets and rate-sensitive liabilities is called: solid iron(ii) hydroxide decomposes to form solid iron(ii) oxide and liquid water. write the balanced chemical equation for the reaction described. What is the area of 30x40 rectangle in square units Can someone plz help me? :( Vince enjoys cooking, but he wants to reduce the chances that his food preparation practices result in food-borne illness. Which of the following steps can he take to reduce this likelihood?Cook foods to proper internal temperaturesThaw frozen foods at room temperatureStore raw meat and chicken in the same plastic bagWipe his hands on a paper towel before preparing food PLEASE HELP !!! WILL GIVE BRAINLIEST! How does changing the base number (inside the parentheses) change your graph? Susan wants to see howdifferent chemicals in thesoil affect plant growth.Therefore, she gets all ofthe same type of plant, Jeff has limited financial resources, but finds himself in a position where he needs a good deal of protection. a __________would probably best suit his needs at this time. One of the questions in research is as follows: how many learners were in gr10 last year?Name Two possible sources to obtain this information the manager of a large apartment complex knows from experience that 100 units will be occupied if the rent is 468 dollars per month. a market survey suggests that, on the average, one additional unit will remain vacant for each 6 dollar increase in rent. similarly, one additional unit will be occupied for each 6 dollar decrease in rent. what rent should the manager charge to maximize revenue?