5. An entrepreneur who continues to find new and better ways of doing things is ____.

A. Confident
B. Innovative
C. Persistent
D. Wholesale​

Answers

Answer 1

Answer:

B innovative

Explanation:

new and better are synonymous with innovation


Related Questions

Describe any special considerations unique to Oracle that must be addressed?

Answers

When working with Oracle, there are a few special considerations that must be addressed:

1. Licensing: Oracle has specific licensing requirements, and it's important to ensure compliance with their licensing policies. This includes understanding the licensing models, user licenses, and potential costs associated with Oracle products.

2. Performance Tuning: Oracle databases require careful performance tuning to optimize their efficiency. This involves monitoring and adjusting various parameters, such as memory allocation, disk I/O, query optimization, and indexing strategies.

3. High Availability and Disaster Recovery: Implementing robust high availability and disaster recovery solutions is crucial for critical Oracle systems. This may involve using technologies like Oracle Real Application Clusters (RAC), Data Guard, or GoldenGate to ensure data availability, minimize downtime, and support business continuity.

4. Security: Oracle databases store sensitive data, so implementing strong security measures is essential. This includes setting up proper access controls, authentication mechanisms, encryption, auditing, and regularly applying security patches and updates.

5. Oracle-specific Features: Oracle offers a wide range of advanced features and functionalities that may require specific considerations. These include partitioning, advanced analytics, Oracle Advanced Compression, Oracle Enterprise Manager, and more. Understanding and leveraging these features can enhance the performance and capabilities of Oracle systems.

It's worth noting that the specific considerations may vary based on the version and edition of Oracle being used, as well as the specific requirements of the project or organization.

How would you rate this answer on a scale of 1 to 5 stars?

Question 2 of 8
The Layer Properties Manager shows you
Select Answer
O All of the layers
O Layer names
O Layer color
O All of these

Answers

The correct answer is All of layers. All of the layers are displayed in the Layer Properties Manager.

What is Layer Properties Manager?

The Layer Properties Manager helps you organize, sort, and group layers, and allows you to work with layer standards, layer key styles, layer filters, layer overrides, and saved layer states. In the Layer Properties Manager you can perform all activities related to layers: Create, rename, and delete layers. Displays a list of the layers in the drawing and their properties. You can add, delete, and rename layers, change their properties, set property overrides in layout viewports, and add layer descriptions.

Layers and Layer Properties:

New Layer ;

Creates a layer with a default name that you can immediately change. The new layer inherits the properties of the currently selected layer in the layer list.

Layer List

Modify the layer properties using the layer list. Click the current setting to change the layer property for the selected layer or group of layers.

Note: The layer list can be filtered and sorted to make it easier to find and select the layers that you want to change.

Sort

Click a column label to sort by that column.

Column Order

Drag a column to a new location in the list to change the column order.

To learn more about layer properties manager refers to;

https://brainly.com/question/21623455

#SPJ1

"An operating system is an interface between human operators and application software". Justify this statement with examples of operating system known to you.​

Answers

An operating system acts as the interface between the user and the system hardware. It is responsible for all functions of the computer system.

It is also responsible for handling both software and hardware components and maintaining the device's working properly. All computer programs and applications need an operating system to perform any task. Users are the most common operating system component that controls and wants to make things by inputting data and running several apps and services.

After that comes the task of implementation, which manages all of the computer's operations and helps in the movement of various functions, including photographs, videos, worksheets, etc. The operating system provides facilities that help in the operation of apps and utilities through proper programming.

learn more about operating systems at -

https://brainly.com/question/1033563

Integers japaneseGrade, readingGrade, spanishGrade, and numGrades are read from input. Declare a floating-point variable avgGrade. Compute the average grade using floating-point division and assign the result to avgGrade.

Ex: If the input is 74 51 100 3, then the output is:


75.00
how do i code this in c++?

Answers

Answer:

#include <iostream>

int main()

{

   int japaneseGrade, readingGrade, spanishGrade, numGrades;

   

   std::cin >> japaneseGrade >> readingGrade >> spanishGrade >> numGrades;

   

   float avgGrade = (float)(japaneseGrade + readingGrade + spanishGrade) / numGrades;

   

   std::cout << avgGrade;

 

   return 0;

}

Final answer:

To solve this problem in C++, you can use the cin function to read the integer inputs, declare a float variable for the average grade, and then compute the average grade using floating-point division. Finally, use the cout function to output the average grade with two decimal places.

Explanation:

To solve this problem in C++, you can use the cin function to read the integer inputs, and then use the float data type to declare the avgGrade variable. After reading the input integers, you can compute the average grade by dividing the sum of the grades by the total number of grades. Finally, you can use the cout function to output the average grade with two decimal places

#include

using namespace std;

int main() {

 int japaneseGrade, readingGrade, spanishGrade, numGrades;

 float avgGrade;

 cout << "Enter the Japanese grade: ";

 cin >> japaneseGrade;

 cout << "Enter the Reading grade: ";

 cin >> readingGrade;

 cout << "Enter the Spanish grade: ";

 cin >> spanishGrade;

 cout << "Enter the number of grades: ";

 cin >> numGrades;

 avgGrade = (japaneseGrade + readingGrade + spanishGrade) / static_cast(numGrades);

 cout << "The average grade is: " << fixed << setprecision(2) << avgGrade << endl;

 return 0;

}
Learn more about Computers and Technology here:

https://brainly.com/question/34031255

#SPJ2

In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.

Answers

Answer: Excel Average functions

Explanation: it gets the work done.

Answer:

excel average

Explanation:

Help ASAP
Title slide: Give as a minimum, the name of the layer you are presenting.
The layer data unit: Give the name of the layer'ss data unit and include information about the header and footer( if there is one). Diagram:Include a diagram (usingnsquares. circles arrows, etc.) showing the data unit and what its headers and footers do. Emancipation/decapsulation: Show where in the process the layer sits. List the layers that are encapsulated before your layer. List the layers that are decapsulated before your layer. Security: list one or two security risks at your layer and how to guard them. ​

Answers

The given project based on the question requirements are given below:

Layer: Transport Layer

Data Unit: Segment

Header: Contains source and destination port numbers, sequence and acknowledgment numbers, and control flags

Footer: Checksum to ensure integrity

Encapsulation: Sits between the Network and Session Layers.

Encapsulated layers: Application, Presentation, and Session Layers

Decapsulated layers: Network Layer

Security:

Risk: TCP SYN Flood Attacks, where the attacker sends multiple SYN packets to overwhelm the server and cause a denial of service.

Guard: Implementing SYN cookies or limiting the number of SYN packets per second to prevent flooding. Also, using encrypted connections to protect data confidentiality.

Read more about presentation slide here:

https://brainly.com/question/24653274

#SPJ1

Homework 8 Matlab Write a function called fibonacciMatrix. It should have three inputs, col1, col2, and n. col1 and col2 are vertical arrays of the same length, and n is an integer number greater than 2. It should return an output, fib, a matrix with n columns. The first two columns should be col1 and col2. For every subsequent column:

Answers

In this exercise we have to use the knowledge in computational language in python to write the following code:

We have the code can be found in the attached image.

So in an easier way we have that the code is:

function v = myfib(n,v)

if nargin==1

   v = myfib(n-1,[0,1]);

elseif n>1

   v = myfib(n-1,[v,v(end-1)+v(end)]);

end

end

function v = myfib(n,v)

if nargin==1

   v = myfib(n-1,[0,1]);

elseif n>1

   v = myfib(n-1,[v,v(end-1)+v(end)]);

elseif n<1

   v = 0;

end

function [n] = abcd(x)

if (x == 1 || x==0)

   n = x;

   return

else

   n = abcd(x-1) + abcd(x-2);

end

end

fibonacci = [0 1];

for i = 1:n-2

   fibonacci = [fibonacci fibonacci(end)+fibonacci(end-1)];

end

>> myfib(8)

ans =

   0    1    1    2    3    5    8   13

>> myfib(10)

ans =

   0    1    1    2    3    5    8   13   21   34

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

Homework 8 Matlab Write a function called fibonacciMatrix. It should have three inputs, col1, col2, and

How does a Cloud-first strategy approach a client's migration to the Cloud?

Answers

Answer:

by focusing on a single discipline based on the client's greatest area need.

A customer calls in and is very upset with recent service she received. You are trying to calm the customer down to come to a resolution but you are not sure how to best do so

Answers

It's crucial to maintain your composure and show empathy while interacting with a frustrated customer. Actively listen to their worries and express your regret for any hardship you may have caused.

Can you describe a moment where you dealt with an angry or upset customer in the past?

You can use the STAR approach to share a tale about a time when you had to face an irate client in person. Situation: "A client arrived at my former employment screaming and cursing the workers. She was lamenting because she didn't have her receipt when she tried to return an item.

What are the 5 C's of complaint?

The 5Cs approach of formal presentation, where the Cs stand for Principal complaint, Course of sickness.

To know more about customer visit:-

https://brainly.com/question/13472502

#SPJ1

Comments are lines that begin with two slashes (//). Following the comments, the Pseudocode has four bugs you must find and correct

List the 4 (four) bugs.

// A high school is holding a recycling competition,// and this program allows a user to enter a student's
// year in school (1 through 4) and number of cans collected
// for recycling. Data is entered continuously until the user
// enters 9 for the year.
// After headings, output is four lines --
// one for each school year class.
start
Declarations
num year
num cans
num SIZE = 4
num QUIT = 9
num collectedArray[SIZE] = 0, 0, 0
string HEAD1 = "Can Recycling Report"
string HEAD2 = "Year Cans Collected"
output "Enter year of student or ", QUIT, " to quit "
input year
while year <> QUIT
output "Enter number of cans collected "
input cans
collectedArray[year] = collectedArray[year] + cans
output "Enter year of student or ", QUIT, " to quit "
input year
endwhile
output HEAD1
output HEAD2
year = 1
while year < SIZE
output year, collectedArray[year]
year = year + 1
endwhile
stop

Answers

Pseudocode in computer science describes algorithm steps in plain language using structural conventions of a programming language for human reading.

What is the Comments?

The Pseudocode had 4 bugs: collectedArray not initialized with zeros. Adding value to uninitialized element could cause issues. Fix: Initiate array with zeros using curly brackets: num collectedArray[SIZE] = {0}. Comparison operators in while loops written as < and >.

Hence Pseudocode syntax replaced with correct symbols. Report looped from year 1 to 3 due to wrong operator. Condition changed to year <= SIZE. Stop command removed in pseudocode. After bug fixes, the pseudocode works and produces the desired output.

Learn more about Pseudocode   from

https://brainly.com/question/24953880

#SPJ1

Comments are lines that begin with two slashes (//). Following the comments, the Pseudocode has four

A data___is usually a smaller version of a data warehouse used by a single department

Answers

Answer:

mart

Explanation:

These were created in order to provide an easier access to a certain subject or department. It is important because it allows one to refrain from wasting time searching for something in a data warehouse and it provides organization.


Refer to the chose administrator is attempting to install a P6 static route couttert to read the rette tached to outer 22 ster the state
czamand is een connectivity to the nature is still falling. What emotas been made in the static route configuration

Answers

Answer:

i do not know I just need points

uses of prototype and who made the prototype

Answers

Answer:

A prototype is an early sample, model, or release of a product built to test a concept or process. It is a term used in a variety of contexts, including semantics, design, electronics, and software programming. A prototype is generally used to evaluate a new design to enhance precision by system analysts and users.

Explanation: The place that made prototype was Radical Entertainment.

Hoped this helped.

what is produced when the computer processes data​

Answers

Answer: This might help :

what is produced when the computer processes data

Which of the following activities is permissible for IT professionals in the conduct of computer access and authorizations?

viewing explicit content on a company computer

posting updates to social media networks during slow periods at work

using another company’s copyrighted images for the company’s website

using the company’s e-mail software to send work-related e-mails

Answers

Answer:

D

Explanation:

Answer: A, B, C, D

Explanation:

Similarities in off-site and On-site

Answers

Answer:

Off prevents the page from finding your easy search terms; basically what you search for, while On page will help you improve the quality of your newly designed web page.

▬▬▬Casual Terms▬▬▬

Off page means that you are not actively viewing a page; unlike On, it would mean the exact opposite.

▬▬▬Conclusion▬▬▬

I Hope you have a great day!

Answer:

onsite is on or at a site while offsite is away from a mail location in a place not owned by a particular organization.

Which technology is making quantum computing easier to access and adopt

Answers

The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.

What technologies are used to build quantum computers?

A lot of Efforts is known to be used in creating a physical quantum computer that is known to be based on technologies such as transmons, ion traps and others

Cloud computing is seen as a kind of an on-demand presence of computer system resources, and it is one that is made up of data storage and computing power, and it is one where there is no direct active management by the user.

Hence, The technology that is making quantum computing easier to access and adopt is known to be option c: cloud.

Learn more about quantum computing from

https://brainly.com/question/28082752

#SPJ1

See full question below

Which technology is making quantum computing easier to access and adopt?

a. Edge Computing

b. Virtual Reality

c. Cloud

d. Blockchain

The total number of AC cycles completed in one second is the current’s A.timing B.phase
C.frequency
D. Alterations

Answers

The total number of AC cycles completed in one second is referred to as the current's frequency. Therefore, the correct answer is frequency. (option c)

Define AC current: Explain that AC (alternating current) is a type of electrical current in which the direction of the electric charge periodically changes, oscillating back and forth.

Understand cycles: Describe that a cycle represents one complete oscillation of the AC waveform, starting from zero, reaching a positive peak, returning to zero, and then reaching a negative peak.

Introduce frequency: Define frequency as the measurement of how often a cycle is completed in a given time period, specifically, the number of cycles completed in one second.

Unit of measurement: Explain that the unit of measurement for frequency is hertz (Hz), named after Heinrich Hertz, a German physicist. One hertz represents one cycle per second.

Relate frequency to AC current: Clarify that the total number of AC cycles completed in one second is directly related to the frequency of the AC current.

Importance of frequency: Discuss the significance of frequency in electrical engineering and power systems. Mention that it affects the behavior of electrical devices, the design of power transmission systems, and the synchronization of different AC sources.

Frequency measurement: Explain that specialized instruments like frequency meters or digital multimeters with frequency measurement capabilities are used to accurately measure the frequency of an AC current.

Emphasize the correct answer: Reiterate that the current's frequency represents the total number of AC cycles completed in one second and is the appropriate choice from the given options.

By understanding the relationship between AC cycles and frequency, we can recognize that the total number of AC cycles completed in one second is referred to as the current's frequency. This knowledge is crucial for various aspects of electrical engineering and power systems. Therefore, the correct answer is frequency. (option c)

For more such questions on AC cycles, click on:

https://brainly.com/question/15850980

#SPJ8

What is the data type of the following variable?
name = "John Doe"

Answers

In computer programming, a variable is a storage location that holds a value or an identifier. A data type determines the type of data that can be stored in a variable. The data type of the following variable, name = "John Doe" is a string data type.

In programming, a string is a sequence of characters that is enclosed in quotes. The string data type can store any textual data such as names, words, or sentences.The string data type is used in programming languages such as Java, Python, C++, and many others. In Python, the string data type is denoted by enclosing the value in either single or double quotes.

For instance, "Hello World" and 'Hello World' are both strings.In conclusion, the data type of the variable name is string. When declaring variables in programming, it is important to assign them the correct data type, as it determines the operations that can be performed on them.

For more such questions on variable, click on:

https://brainly.com/question/28248724

#SPJ8

Which of the following is a real job title on The interactive media career pathway?

Which of the following is a real job title on The interactive media career pathway?

Answers

Answer:

The right answer is A

Explanation:

Plzzzzzzzzzzzzz give me brainiest

The answer to your question is B

Reverse Word Order: Write a program that reverses the order of the words in a given sentence. This program requires reversing the order of the words wherein the first and last words are swapped, followed by swapping the second word with the second to last word, followed by swapping the third word and the third to last words, and so on. Your program will ask the user for an input string and print out the resultant string where the order of the words is reversed. Please see the hints section for more details on an example algorithm. Assume a maximum C-string size of 1000 characters. Make sure your code works for any input number, not just the test cases. Your code will be tested on other test cases not listed here. Do Not Use Predefined Functions from the cstring Library. Please properly comment your code before submission.For this part of the assignment, name your source file as Reverse Word Order_WSUID.cpp. For example, if your user ID is A999B999 name your file as Reverse Word Order_A999B999.cpp. Sample Test Cases: Test Case 1: Input: London bridge has been abducted Output: abducted been has bridge London Test Case 2: Input: Hello World Output: World Hello Test Case 3: Input: Hello World, how are you? Output: you? Are how World, HelloTest Case 4: Input: I like toast Output: toast like l

Answers

Answer:

The program in C++ is as follows:

#include <bits/stdc++.h>

using namespace std;

int main(){

string sentence,word="";

getline (cin, sentence);

vector<string> for_reverse;

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

 if (sentence[i] == ' ')  {

  for_reverse.push_back(word);

  word = "";  }

 else{    word += sentence[i];}  }

for_reverse.push_back(word);

sentence="";

for (int i = for_reverse.size() - 1; i > 0; i--){

 sentence+=for_reverse[i]+" ";}

sentence+=for_reverse[0];

cout<<sentence<<endl;

return 0;

}

Explanation:

This declares sentence and word as strings; word is then initialized to an empty string

string sentence,word="";

This gets input for sentence

getline (cin, sentence);

This creates a string vector to reverse the input sentence

vector<string> for_reverse;

This iterates through the sentence

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

This pushes each word of the sentence to the vector when space is encountered

 if (sentence[i] == ' ')  {

  for_reverse.push_back(word);

Initialize word to empty string

  word = "";  }

If the encountered character is not a blank space, the character is added to the current word

 else{    word += sentence[i];}  }

This pushes the last word to the vector

for_reverse.push_back(word);  

This initializes sentence to an empty string

sentence="";

This iterates through the vector

for (int i = for_reverse.size() - 1; i > 0; i--){

This generates the reversed sentence

 sentence+=for_reverse[i]+" ";}

This adds the first word to the end of the sentence

sentence+=for_reverse[0];

Print the sentence

cout<<sentence<<endl;

How did early computing device such as Charles Babbage's analytical engine and Ada Lovelace's contributions set the foundation for modern computing

Answers

Early computing devices, such as Charles Babbage's Analytical Engine and Ada Lovelace's contributions, played a crucial role in setting the foundation for modern computing. Here's how their work contributed to computing development:

1. Charles Babbage's Analytical Engine: Babbage designed the Analytical Engine, a mechanical general-purpose computer concept, in the 19th century. Although the Analytical Engine was never fully built, its design and principles laid the groundwork for modern computers. Key features of the analytical engine include:

a. Stored Program: Babbage's Analytical Engine introduced the concept of storing instructions and data in memory, allowing complex calculations and tasks.

b.  Control Flow: The Analytical Engine could make decisions and perform conditional operations based on previous computations, resembling the modern concept of control flow in programming.

c. Loops: Babbage's design incorporated looping mechanisms, enabling repetitive instruction execution, similar to modern programming languages.

2. Ada Lovelace's Contributions: Ada Lovelace, an English mathematician, collaborated with Charles Babbage and made significant contributions to computing. Her work on Babbage's Analytical Engine included writing the first algorithm intended for machine implementation. Lovelace realized the potential of the analytical engine beyond numerical calculations and recognized its capability for processing symbols and creating complex algorithms. Her insights laid the foundation for computer programming and algorithms.

Lovelace's ideas about the analytical engine extended beyond what was initially envisioned. He stressed the importance of machines handling more than just numbers. Her contributions demonstrated computers' potential to perform tasks beyond basic calculations and numerical processing.

Collectively, Babbage's analytical engine and Lovelace's contributions provided early conceptual frameworks for modern computing. Their ideas influenced subsequent pioneers in the field, and the concepts they introduced paved the way for the development of the digital computers we use today.

2. Match the parts of software applications with what they do

1. Ribbon

a. the control center for using the application

b. part of the ribbon that contains important tasks within an application

2. Tab

3 Menu bar

c. a row of icons or buttons

d. lists sets of commands

- 4 Toolbar

e. move from part of a window to another.

top row of an application window, displays the name of the document

g shows the information about the program and other useful messages

- 5. Title bar

6. Scroll

7 Workspace

h the largest area of a program's window

8 Status bar

SANT

Answers

The match is given like this


Ribbon: Part of the user interface that contains important tasks within an application.

Tab: A set of related commands or options in a program.

Menu bar: A row of menus at the top of a program window that lists sets of commands.

Toolbar: A row of icons or buttons used to execute frequently-used commands in an application.

Title bar: The top row of an application window that displays the name of the document.

Scroll: To move from one part of a window to another.

Workspace: The largest area of a program's window where the user can work on documents or data.

Status bar: Displays information about the program and other useful messages, such as the current status of a process or the state of a particular tool or setting.

What is the definition of a software?

A collection of computer programs, documentation, and data is referred to as software. This is in contrast to hardware, which is the system's base and conducts the actual work.

Software is a collection of instructions, data, or programs that are used to run machines and perform certain tasks. It is the inverse of hardware, which describes the physical components of a computer. Apps, scripts, and programs that run on a device are referred to as software.

Learn more about software  at:

https://brainly.com/question/1022352

#SPJ1

Is it important to study information systems

Answers

Answer:

There is massive importance if you want to study information study.

It can help you understand the data, organize, and process the data, using which we can generate and share information.

Explanation:

It largely depends on your interest and requirement, but a better knowledge or clue about information systems may help analyze the data especially if you want to become a data scientist, machine learning, Artificial intelligence or deep learning, etc.

It can help you understand the data, organize, and process the data, using which we can generate and share information.

A great understanding of information systems may exponentially increase the productivity, growth, performance, and profit of the company.

Most Professions get exposed to information Systems no matter what their career objective is, as it may help in having better decision making based on the information they get through data.

So, yes!

There is a massive importance if you want to study information study.

Question 10 of 10
What information system would be most useful in determining what direction
to go in the next two years?
A. Decision support system
B. Transaction processing system
C. Executive information system
D. Management information system
SUBMIT

Answers

Answer: C. Executive information system

Explanation: The information system that would be most useful in determining what direction to go in the next two years is an Executive Information System (EIS). An EIS is designed to provide senior management with the information they need to make strategic decisions.

An Executive Information System (EIS) would be the most useful information system in determining what direction to go in the next two years. So, Option C is true.

Given that,

Most useful information about determining what direction to go in the next two years.

Since Executive Information System is specifically designed to provide senior executives with the necessary information and insights to support strategic decision-making.

It consolidates data from various sources, both internal and external, and presents it in a user-friendly format, such as dashboards or reports.

This enables executives to analyze trends, identify opportunities, and make informed decisions about the future direction of the organization.

EIS typically focuses on high-level, strategic information and is tailored to meet the specific needs of top-level executives.

So, the correct option is,

C. Executive information system

To learn more about Executive information systems visit:

https://brainly.com/question/16665679

#SPJ6


A _____ address directs the frame to the next device along the network.

Answers

Answer:

When sending a frame to another device on a remote network, the device sending the frame will use the MAC address of the local router interface, which is the default gateway.

An unicast address directs the frame to the next device along the network.

What is network?

A computer network is a group of computers that share resources on or provided by network nodes. To communicate with one another, the computers use standard communication protocols across digital linkages. These linkages are made up of telecommunication network technologies that are based on physically wired, optical, and wireless radio-frequency means and can be configured in a number of network topologies.

The term "unicast" refers to communication in which a piece of information is transferred from one point to another. In this situation, there is only one sender and one receiver.

To learn more about network

https://brainly.com/question/28041042

#SPJ13

Please help me with Excel!!! A lot of points!

Write a formula that does the following:

Adds all of the Monthly Expenses.
Multiplies the result by 12.
Then adds all of the Yearly Expenses to the product of Steps 1 and 2.
Divides this new sum by 12 (your numerator should be completely in parentheses).

Answers

Answer:

=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE))/12

Explanation:

Adds all of the Monthly Expenses : SUM(PUT RANGE OF MOTHLY EXPENSES HERE)

Multiplies the result by 12: *12

Then adds all of the Yearly Expenses to the product of Steps 1 and 2 : SUM(PUT RANGE OF YEARLY EXPENSES HERE)

Divides this new sum by 12: /12

=((SUM(PUT RANGE OF MOTHLY EXPENSES HERE)*12)+SUM(PUT RANGE OF YEARLY EXPENSES HERE)/12)

Spreadsheets are sometimes credited with legitimizing the personal computer as a business tool. Why do you think they had such an impact?

Answers

Spreadsheets is known to be an credited tool with legitimizing the personal computer as a business tool. Spreadsheets have a lot of impact in business world because:

It has low technical requirement. Here, spreadsheet does not need a complex installation and it is easy to understand.Data Sifting and Cleanup is very easy to do.It is a quick way to Generate Reports and Charts for business.

What is Spreadsheets?

Spreadsheets is known to be a key  business and accounting tool. They are known to have different complexity and are used for a lot of reasons.

The primary aim of this is that it helps us  to organize and categorize data into a kind of logical format and thus helps us to grow our business.

Learn more about Spreadsheets from

https://brainly.com/question/4965119

Code to be written in R language:

The Fibonacci numbers is a sequence of numbers {Fn} defined by the following recursive relationship:

Fn= Fn−1 + Fn−2, n > 3
with F1 = F2 = 1.

Write the code to determine the smallest n such
that Fn is larger than 5,000,000 (five million). Report the value of that Fn.

Answers

Here is the R code to determine the smallest n such that the Fibonacci number is larger than 5,000,000:

fib <- function(n) {

 if (n <= 2) {

   return(1)

 } else {

   return(fib(n - 1) + fib(n - 2))

 }

}

n <- 3

while (fib(n) <= 5000000) {

 n <- n + 1

}

fib_n <- fib(n)

cat("The smallest n such that Fibonacci number is larger than 5,000,000 is", n, "and the value of that Fibonacci number is", fib_n, "\n")

The output of this code will be:

The smallest n such that Fibonacci number is larger than 5,000,000 is 35 and the value of that Fibonacci number is 9227465.

Learn more about R language here: https://brainly.com/question/14522662

#SPJ1

Ashton Auto Place is a car dealer for new as well as used cars of all makes. It uses computerized Transaction Processing System (TPS) to process car sale transactions. Whenever Salesperson sells a Car, the Salesperson enters sales data (which includes customer information, details of the car sold, and sales information) into the TPS. The system prints sales invoice for the customer, daily sales statement for each Salesperson, and prints reports for management. Using the above described business scenario do following:
(a). Draw the context-level Data Flow Diagram (DFD) for the TPS
(b). Identify the entities for which system need to save data into database
Then draw entity relationship diagram (ERD). using MS word

Answers

Answer:

(b)

Explanation:

Other Questions
1-2. My second-grade teacher had stringent standards. For one thing, sheedus to beabout our handwriting. "Dot every i," she would say, "and crossevery t. "3-4. In a small business, it's important never to instigate quarrels or letdevelop. People must learn to be and forgive each other's errors. 5-6. Many people find the thought of a seeking out and enjoying suffering tobe asas the idea of causing someone else to suffer. a lottery ticket costs $2. How much would a player need to spend buying different lottery tickets to have a 1% chance of winning the jackpot? Why is it important to understand Holocaust denial? What products will most likely form when a carboxylic acid reacts with an amine at high temperatures, or in the presence of a catalyst what is referred to a process that involves developed action plan that leads to achieving specific goals The table gives a set of outcomes and their probabilities. Let A be the event "the outcome is greater than 1". Find P(A). Outcome Probability 1 0.042 2 0.048 3 0.059 4 0.528 5 0.029 6 0.202 7 0.072 8 0.02 A bank expects to raise $36 million in new money if it pays a deposit rate of 7%,$81 million in new money if it pays a deposit rate of 9%, and it can raise $149 million in new money if it pays a deposit rate of 13%. The bank expects to earn 9.5% on all money that it receives in new deposits. What is the marginal cost of deposits if this bank raises its deposit rate from 9% to 13% ? 'Please type your answer as percentage and not as decimal (i.e. 5.2 and not 0.052 ). Do not type the % symbol. The U.S. Treasury bond rate, often used as the risk free rate in U.S. dollars, has been abnormally low for the last 10 years, relative to the previous decade. This is because the Federal Reserve has kept it low, with its quantitative easing.-True-FalseThe FOMC/Central Banks (MPC) Monetary Policy Committee is meeting today to set rates. What they do will determine whether interest rates will rise or fall in the coming weeks.-True-False Use the 2012 segment information provided by BMW and Volkswagen to an- swer the following questions: a. Which company is more multinational? b. Which company is more internationally diversified? c. In which region(s) of the world did each company experience the greatest growth from 20112012? the greatest decline? What is the range of this function f(x)=x^2 -2 helppppppppppppppppppppppppppppppp reeeeeeeeeeeeeeeeeeeeeeeeeeeee OverviewThe appeal of sustainable development is inevitable for every individual, institution, as well as business entity. This project follows the pursuit of sustainable development in Malaysia, whose society is still grappling with the issues of accessibility, social and economic inequality, mental health and development, poverty, urban development, women, and girls, as well as dealing with people with disability and those who are displaced. Although this appears to be a national agenda, we can start from within our home, community, and local business operators.DescriptionTo complete the project, students must:1. Identify ONE (1) sustainable development issue in Malaysia (choose from the SDGs). 2. Collaborating with a partner from either an organization, the community or your own family, the group then suggest activity (s) that can contribute to achieving the chosen SDG.For example for SDG13: CLIMATE CHANGE.a. Reducing Energy ConsumptionTurning off the lights in the office in the evening, slightly lowering the heating or the air conditioning or taking devices off the plugs when it is not needed are some good actions companies can implement. By paying attention to daily routine actions, businesses can slightly reduce their energy consumption and, thus, their impact on the climate.b. Reduce Waste and Fight ObsolescenceAnother way to reduce the climate footprint of a business is to reduce the amount of waste generated. For instance, avoiding disposable cups, stirrers, and capsules for the coffee machine and giving kitchen crockery instead, reducing the number of prints, reusing papers as drafts, sort waste for recycling correctly. Will mark Brainlist! what did Juan do to sabotage himself An amphitheater has 24 seats in the first row, 28 in the second, 32 in the third, and so on, for 28 rows. How many seats are in the amphitheater? Identify and explain a cause-and-effect relationship associated with the historical developments in documents 1 and 2. Be sure to use evidence from both documents 1 and 2 in your response. The motor end plate has folds and indentations to increase the membrane surface area adjacent to the ______. The ratio of boys to girls in Ms. Prado's class is 3 to 2. Which of the following could be the number of boys and girls in her class? Selected: a. 6 boys and 8 girls b. 18 boys and 12 girlsc. 9 boys and 4 girlsd. 10 boys and 2 girls suppose that blossom depot developed the following information about its inventories in applying the lower-of-cost-or-net-realizable-value (lcnrv) basis in valuing inventories: product cost nrv a $137000 $144000 b 96000 91000 c 192000 194000 after blossom depot applies the lcnrv rule, the value of the inventory reported on the balance sheet will be What is the scope of the variable hardness?class pencil: color = 'yellow' hardness = 2class pencilCase: def __init__(self, color, art): self.color = 'black' self.art = 'wolf' def __str__(self): return self.color + " " + self.art# main part of the programpencilA = pencil()limited to the pencilCase classaccessible to all parts of the programlimited to the pencil classlimited to the main part of the program