you are going to ask a user for a text file and then count the number of vowels and consonants in that file. write a python program that does the following:  continually prompts user for a text file to read until a valid file is supplied  create a function named vc counter(): o takes the valid file name as an argument o counts the number of vowels and consonants in the file o returns a dictionary of the count values, using the keys ‘vowels’ and ‘consonants’  call vc counter() and store results to a dictionary object  print the total vowels and consonants with appropriate descriptions (see example). notes:  only the 26 english letters are counted for this exercise.  for this exercise, vowels are: a e i o u  this program does not have to validate or count non‐english letters hints:  this will be a lot easier if you make the text file you ar

Answers

Answer 1

Approach. I need to open a file using the open() function in Python. Next, create three variables for vowels, lines, and symbols to count the number of vowels, lines, and symbols.

Create a list of vowels so that you can check if a letter is a vowel. A loop is used to count spaces in a text file. Test all conditions using if condition ( char.is space()) and return True to increment the counter. This article shows how to use various methods to check whether a given character is a vowel or consonant. Letters such as a, e, i, o, u are called vowels. All other alphabets are called consonants. To view a count of the lines, words, and characters in a file, use the wc command. The wc command reads one or more input files and, by default, outputs the total number of words, bytes, and newline characters in each input file.

Learn more about Vowels here-

https://brainly.com/question/17238189

#SPJ4


Related Questions

in c++ Write a program that will read in an array of 10 numbers. Have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Answers

Using the knowledge in computational language in C++ it is possible to write a code that have the program find the largest, the smallest, find the numbers above 0, find how many numbers = 0, or find the numbers less than 0.

Writting the code:

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

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

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

See more about C++ at  brainly.com/question/19705654

#SPJ1

A C++ program is one that is used to create high-performance programs. A program that will read an array of 10 numbers can be created by using a chart array.

What is a program?

A program is a specified set of codes that are used to run the computer. They are set instructions for the computer.

The C++ program is;

#include<stdio.h>

main()

{

int a[10],i,sum=0;

printf("enter array\n");

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

{

scanf("%d",&a[i]);

sum=sum+a[i];

}

printf("sum of array =%d",sum);

}

Therefore, a C++ program that will read an array of 10 numbers is given above.

To learn more about the program, refer to the below link:

https://brainly.com/question/28959658

#SPJ1

abu is creating a virtual machine template to enable rapid server deployment at his organization. he creates a virtual machine named vm1. on vm1, he installs windows server 2019 and names the server serverx. next, he installs server roles and features and adds third-party software. he then runs the system preparation tool.

Answers

The System preparation tool will most likely remove the computer name SERVERX

What is a system preparation tool?

System Preparation Tool also known as Sysprep is a tool by Microsoft made for the purpose of duplicating, testing and deliverying new installations for the Windows operating system based on an established installation. It is a command-line tool that can be run using a scrpt or manually.

Here's the complete question:

Abu is creating a virtual machine template to enable rapid server deployment at his organization. He creates a virtual machine named VM1. On VM1, he installs Windows Server 2019 and names the server SERVERX. Next, he installs server roles and features and adds third-party software. He then runs the System Preparation Tool.

What will this tool most likely to do?

Learn more about Microsoft from:

https://brainly.com/question/19557118?referrer=searchResults

#SPJ4

What is the value of numC when this program is executed?
numA = 7
numB = 5
if numA== 5:
numC = 10
elif numA> numB:
numC = 20
else:
numC = 30

Answers

Answer: numC = 30

Explanation: got it right

When this program is run, the values of numA and numB are 7 and 5, respectively. The if statement must be executed if numA equals 2, which it does not. To execute the elif statement, numA must be greater than numB, which it is not. As a result of the else statement, numC = 30.

What is else if statement?Use the if statement to tell a block of code to run only if a certain condition is met. If the same condition is true, else is used to specify that a different block of code should be executed. If the first condition is false, use else if to define a new test condition. Otherwise if, as the name suggests, combines the words if and else. It is similar to else in that it extends an if statement to execute a separate command if the original if expression returns false.An if else statement in programming will execute a different set of statements depending on whether an expression is true or false.

To learn more about else if, refer to:

brainly.com/question/18736215

#SPJ1

write a java program that convert a positive number into a negative number and negative number into a positive number using switch statements

Answers

import java.util.Scanner;

class convertint {

   public static void main(String[] args) {

       Scanner f = new Scanner(System.in);

       System.out.println("Enter a number to convert: ");

       int s = f.nextInt();

       int check = (s>0) ? 1 : (s==0) ? 0 : -1;

       switch(check) {

           case 1:

               System.out.println(s*-1);

               break;

           case 0:

               System.out.println("0");

               break;

           case -1:

               System.out.println(s*-1);

               break;

           default:

           ;;

       }

   }

}

you have assigned a junior administrator to create a windows server 2016 failover cluster. the administrator does not have the create computer objects permission in active directory. what should you tell the junior administrator to do?

Answers

         Microsoft's server operating system is Microsoft Windows Server 2016. (OS). It was created with the intention of acting as a platform for networked applications. Windows Server 2016 was created concurrently with Windows 10 and made generally available on October 12, 2016.

What capability of Windows Server 2016 tries to stop a split vote from happening?

       Split-brain situations, which can occur when a network is divided and portions of the nodes are unable to communicate with one another, are avoided by quorum. Due to this, both groups of nodes may attempt to control the workload and write to the same disk, which can result in a number of issues.

       You can use the Cluster-Aware Updating (CAU) capability in Windows Server 2012 R2. On clustered servers, CAU automates software updating while preserving availability.

      The same version of Windows Server 2016 must be used by all servers. An Active Directory domain must be joined by all servers. Hardware components must be the same across all servers.

To Learn more About Windows Server 2016, Refer:

https://brainly.com/question/14526761

#SPJ4

Fred tells you that he is finally getting rid of his old computer. He has some sensitive information on it, and since you seem like someone who knows about IT, he asks you what he should do with it. What would you recommend?


Throw it in a Dumpster.


Erase the hard drive.

Write over the hard drive.


Give it away to a trusted friend for safekeeping.

Answers

Answer:

write over the hard drive, then physically destroy it (e.g., drill holes in it).

Explanation:

This minimizes the possibility for data recovery.

your system is currently running the multi-user.target. what would you enter at the command prompt to find out whether the atd.service is configured to start every time the multi-user.target is loaded?

Answers

You would enter systemctl is-enabled atd.service at the command prompt to find out whether the atd.service is configured to start every time the multi-user.target is loaded.

What is command prompt?

Command Prompt is the primary command-line interpreter for the OS/2, eComStation, ArcaOS, Microsoft Windows (Windows NT family and Windows CE family), and ReactOS operating systems. On Windows CE.NET 4.2, Windows CE 5.0,, it is known as the Command Processor Shell. Command Prompt communicates with the user via a command-line interface. On OS/2 and Windows, for example, it is possible to use real pipes in command pipelines, allow both sides of the pipeline to operate concurrently. As a result, the standard error stream can be redirected.

To learn more about command prompt

https://brainly.com/question/25808182

#SPJ4

explain what is meant by the term conditionally executed. 2. you need to test a condition and then execute one set of statements if the condition is true. if the condition is false, you need to execute a different set of statements. what structure will you use? 3. if you need to test the value of a variable and use that value to determine which statement or set of statements to execute, which structure would be the most straightforward to use? 4. briefly describe how the and operator works. 5. briefly describe how the or operator works. 6. when determining whether a number is inside a range, which logical operator is it best to use? 7. what is a flag and how does it work

Answers

The decision to execute an instruction or not is made by conditional execution. The majority of instructions contain a condition attribute that, depending on the value of the condition flags, decides whether the core will execute them.AND. This operator logically joins two Boolean expressions together. The AND operator gives True if both expressions are True. The AND operator yields False if either, or both, of the phrases evaluate to False.One or more data bits used to record binary values as particular program structure indicators are referred to as flags. A flag is a part of the data structure of a programming language.

learn more about the program here:

https://brainly.com/question/24833629

#SPJ4

problem 2 (38 points): write a c program to prompt the user to enter a number between 1 and 15462. the final goal is to display the individual digits of the numbers on a line with three spaces between the digits. the first line is to start with the right-most digit and print it five times; the second line is to start with the second digit from the right and print it four times, and so forth. in order to do that, you must first separate the digits. no conversion from string to integers is allowed, neither are arrays. for example, if 1234 is entered, the following should be printed: 4 4 4 4 4 3 3 3 3 2 2 2 1 1 0 then, write c code to accomplish a similar print, where the digits are displayed flush left and in order. again, the digits must be separated programmatically. no conversion from string to integers is allowed, neither are arrays. for example: 0 1 2 3 4 0 1 2 3 0 1 2 0 1 0

Answers

#include <bits/stdc++.h>

std::string f;

void fi(int d) {

   std::cout << "First step:\n";

   if(d<5) {

       for(int i=5-d; i>0; i--) {

           f.insert(0,"0");

       }

   }

   for(int n=5;n>0;n--) {

       for(int m=n;m>0;m--) {

           std::cout << f.at(n-1) << "   ";

       }

   }

   std::cout << std::endl;

}

void se(int d) {

   std::cout << "Second step:\n";

   int n = 5;

   if(d<5) {

       for(int i=5-d; i>0; i--) {

           f.insert(0,"0");

       }

   }

   do{

       for(auto const& m: f) {

           std::cout << m << "   ";

       }

       f.pop_back();

       n--;

   }while(n>0);

   std::cout << std::endl;

}

int main(int argc, char* argv[]) {

   std::cin>>f;

   fi(f.size());

   se(f.size());

   return 0;

}

a company is looking to lower its total cost of ownership (tco) by moving the file system used for its business-critical, linux-based applications to a managed file system in the cloud. which service meets their needs?

Answers

Any application required for business continuity is considered a business critical application.Normal business operations for the organization cannot continue if a business-critical application fails or is stopped.

Why Linux is popular in industries and in business application?

Because Linux is so adaptable and cost-free, businesses use it to run servers, appliances, cellphones, and more. Many people agree that Linux crashes less frequently than Windows.Additionally, updating the system is simpler than having to reset it, as is necessary in a Windows environment.This translates into higher productivity and system uptime. Mission-critical application examples differ amongst industries.An automatic vehicle location (AVL) app, for instance, would be mission-critical for an ambulance firm, but if a plumbing company utilizes the same software, it might be considered significant but not vital. Business Critical Services are those that must be restored first in the case of a disaster and include the elements indicated in the descriptions of the disaster recovery services in Section 5 of Exhibits A and F, where appropriate. How heavily an enterprise depends on an application is the first essential definition of a critical application.Critical apps are by definition distributed internationally, contain large data storage, versatile processing engines, and are tightly connected with other dependent application services. Linux is open-source and free.Developers and programmers can save money on software and licenses.Users can enable Windows apps to run on Linux by using open-source software like Wine.Wine is mainly used by gamers, however the Wine database also contains a sizable variety of productivity appsDue to its lower cost, adaptability, and other various advantages, Linux has recently risen to the top position as the preferred operating system for servers.Linux is used by a huge number of successful companies to keep their operations running efficiently and with little downtime. Because Linux is open-source and has the potential for a very small OS footprint, it might end up in a variety of linked devices, including our homes, cars, and places of business.There is a good likelihood that Linux will dominate the field of high-performance computing.

        To learn more about  business linux applications refer

        https://brainly.com/question/27937626

        #SPJ1

 

Which kind of GIMP tool is used for editing tasks such as cropping or rotating an image?

Question 8 options:

A) paint tools


B) transform tools


C) selection tools


D) miscellaneous tools

Answers

The kind of GIMP tool that is used for editing tasks like cropping and many more is selection tools. The correct option is C.

What is GIMP tool?

GIMP is a cross-platform editing software that is readily accessible for GNU/Linux, macOS, Windows, and other platforms. Because it is free software, you are free to modify it and distribute your changes.

GIMP shines when it comes to photo enhancement and editing. It provides a comprehensive set of tools for correcting mistakes made during the capture process.

The purpose of selection tools is to select regions from the active layer so that you can work on them without affecting the unselected areas.

Thus, the correct option is C.

For more details  regarding GIMP tool, visit:

https://brainly.com/question/11033532

#SPJ1

Which statements serve as evidence that supports the theme of "The Story of the Fisherman

Answers

The statements that serve as evidence that supports the theme of "The Story of the Fisherman" are:

A. “I conjure you on your honour to tell me if you really were in that vase?”

B. “How could your whole body go in? I cannot believe it unless I see you do the thing.”

E. “‘No,’ answered the fisherman, ‘if I trust myself to you I am afraid you will treat me as a certain Greek king treated the physician Douban.’”

What is the story of the fisherman?

The fisherman's tale is that there once was a fisherman who was so old and so indigent that he could hardly provide for his wife and three children. He set a rule not to throw his nets more than four times each day and left very early for fishing each day. He set out one morning during the full moon and arrived at the seashore.

The lesson does the tale of the fisherman and the fish teach us is that you are still better than nothing at all, no matter how small you are. A modest victory is more valuable than a huge promise.

Learn more about Story of the Fisherman from

https://brainly.com/question/28178281
#SPJ1

See full question below

Which statements serve as evidence that supports the theme of "The Story of the Fisherman"? Check all that apply. "I conjure you on your honour to tell me if you really were in that vase?" "How could your whole body go in? I cannot believe it unless I see you do the thing." "I rebelled against the king of the genii. To punish me, he shut me up in this vase of copper." "The fisherman was very unhappy. ‘What an unlucky man I am to have freed you! I implore you to spare my life.'" "‘No,' answered the fisherman, ‘if I trust myself to you I am afraid you will treat me as a certain Greek king treated the physician Douban.'"

a type of memory that can hold data for long periods of time, even when there is no power to the computer, is called .

Answers

A type of memory that can hold data for long periods of time, even when there is no power to the computer, is called secondary storage.

What is computer?

A computer is a digital electrical machine that may be programmed to automatically perform arithmetic or logical operations (computation). Programs are generic collections of operations that modern computers can do. These programmes allow computers to do a variety of jobs.

ROM is a sort of non-volatile memory, which implies that the data contained in it persists even when no power is applied to it, such as when the computer is turned off. In this regard, it is analogous to secondary memory, which is utilised for long-term storing.

To learn more about computer

https://brainly.com/question/24540334

#SPJ4

Which of these is the lowest layer of the Internet?
Copper Cable / Fiber Cable / WiFi
HTTP/DNS
TCP/UDP
IP

Answers

Answer:

Explanation:

The physical layer is the lowest level and it consists of cables for the internet. So, the option with cables in it would be the best answers.

Which key combination can a user press to toggle between formula view and normal view within excel?.

Answers

The user can press the "Ctrl" and "~" keys at the same time to toggle between formula view and normal view.

What is toggle?
In general computing, a toggle is a switch from one setting to another. The name suggests that it is a switch with only two options: on or off, or A or B. A list of options or preferences can be found in practically every computing-related element. Toggles are any option items that may be toggled on or off. A toggle can be used to switch hardware or software. For instance, the Caps Lock & Num Lock keys on the keyboard serve as toggles for those particular features. When one of these keys is depressed once, it activates the corresponding function, but when it is depressed twice, it turns it off. These functions are initially off.

To learn more about toggle
https://brainly.com/question/28776085
#SPJ4

Masks can be:

Question 6 options:

any color.


black, white, or gray.


black or white.


warm or cool.

Answers

Answer:

last answer

Explanation:

you're configuring a failover cluster and want a quorum configuration in which cluster quorum data is located in a shared folder on a server in another location. which quorum configuration should you choose?

Answers

Quorum configuration should Node and File Share Majority.

What is Quorum?
A quorum is the minimal number of participants required to do business in a plenary session (a body that follows parliamentary process, such as a legislature). The necessity for a quorum provides protection against entirely unrepresentative action taken in the name of a body by an excessively small number of people, as according Robert's Rules of Succession Newly Revised. A plenum, in contrast, is a gathering of the entire (or, very rarely, almost entire) body. If a quorum is present, a body, meeting, or vote of it is quorate (or casts valid votes). The Latin word quorum, which means "of whom" and is the genitive plural of qui, "who," is the source of the Middle English phrase of the commission that was once given to justices of the peace.

To learn more about Quorum
https://brainly.com/question/2639652
#SPJ4

excluding $0.00, what is the minimum bi-weekly high rate of pay (please include the dollar sign and decimal point in your answer)? the code has been started for you, but you will need to add onto the last line of code to get the correct answer.

Answers

Given the last line of code stated in the question:

Select Biweekly _ high _ Rate

From salary _ range _ by _ job _ classification

ORDER BY LENGTH ( Biweekly _ high _ Rate ) ASC , Biweekly _ high _ Rate ASC ;

The minimum bi-weekly high rate of pay when we exclude $0.00 is stated below:

The SQL Code

SELECT

MIN ( Biweekly _ high _ Rate )

FROM salary _ range _ by _ job _ classification

WHERE Biweekly _ High _ Rate < > ' $ 0 . 00 '

ORDER BY Biweekly _ High _ Rate ASC ;

The given SQL code allows you to select the min Biweekly _ high _ Rate FROM the table Using WHERE < > ' $ 0 . 00 ' you are excluding values that are equal to zero.

Then you are ORDERING by the Biweekly _ High _ Rate to get the first value correct.

Read more about SQL here:

https://brainly.com/question/27851066

#SPJ1

what is a ledger? multiple choice records classified and summarized transactional data processes and manages algorithms across many machines in a computing environment simply means unchangeable a type of distributed ledger, consisting of blocks of data

Answers

A ledger is an accounting book or group of books where account transactions are noted.

A ledger is an accounting book or group of books where account transactions are noted. Each account has a beginning or carry-forward balance, as well as the ending or closing balance, and would record each transaction as either a debit or credit in distinct columns.

All amounts entered in supporting journals, which identify specific transactions by date, are permanently summarized in the ledger. Every transaction originates in a journal and ends up in one or more ledgers. The summary totals in the ledgers are used to create a company's financial statements.

The general, debtors, and creditors ledgers are the three different categories. Information from journals is accumulated in the general ledger. The General Ledger is updated each month with the sum of all journals. Therefore, the General Ledger's function is to compile and organize each transaction mentioned in each journal. The sales journal feeds data into the Debtors Ledger. The Debtors Ledger's function is to reveal which clients and how much money they owe the company. The purchasing journal feeds data into the creditors ledger. The Creditors Ledger's function is to reveal which suppliers the company owes money to and how much.

To know more about ledger click on the link:

https://brainly.com/question/14976010

#SPJ4

you want a security solution that protects the entire hard drive and prevents access even if the drive is moved to another system. which solution should you choose?

Answers

A smart way to keep your private information safe from prying eyes is to encrypt your hard disk. Naturally, if our careless, it could also serve to hide our info from us.

In contrast to an unencrypted computer, our data cannot be easily recovered if we forget your password. Hard-disk encryption is a method that employs complex mathematical operations to encrypt the data kept on a hard drive. Anyone without the necessary key or password cannot access the data on an encrypted hard drive. Regularly backup and save our files in several secure locations. before we see the first indicators of a failing hard drive, create an image backup. Update our anti-virus software.

Learn more about unencrypted here-

https://brainly.com/question/11083372

#SPJ4

what feature allows a firewall to permit traffic to flow from a trusted network (for example, a corporate intranet) to an untrusted network (for example, the internet) and then allow return traffic for that session, while blocking sessions initiated on the untrusted network?

Answers

       A firewall is a security tool, either computer hardware or software, that can assist safeguard your network by filtering traffic and preventing unwanted access to the sensitive information on your computer by outsiders.

It entails running software on a host in order to defend against attacks that have been thoroughly documented?

Firewalls based on hosts

       It is a piece of software—or a group of software—that is included with the operating system. Each host is shielded from assaults and unauthorized access by a host firewall.

Different Forms of Network Security Measures

        Firewall. Network traffic is managed by firewalls using pre-established security rules. Network segmentation, remote access VPN, email security, data loss prevention (DLP), intrusion prevention systems (IPS), sandboxing, and hyperscale network security are a few examples of network security measures.

     Which of the following is another name for a firewall that performs router functions?  A sacrificial host is a firewall that provides protection behind the organization's router. Another name for a sacrificial host is a bastion host.

To Learn more About firewall, Refer:

https://brainly.com/question/13693641

#SPJ4

star technology is working on a project that needs a communication mode specializing in encryption, where only authorized parties should understand the information. the company also requires accuracy, completeness, and reliability of data throughout the project. the company has contacted you for an ideal cipher mode solution without using a counter. which mode should you suggest?

Answers

Block-chaining cipher (CBC) In cipher block chaining mode, the plaintext of one block is encrypted by using an exclusive or (xor) operation to join it with the ciphertext of the preceding block.

The AES's first generation is essentially represented by the ECB (Electronic Codebook). This type of block cipher encryption is the most fundamental. An enhanced type of block cipher encryption is called CBC (Cipher Blocker Chaining). Each ciphertext block processed in CBC mode encryption depends on all plaintext blocks processed prior to it. The main distinction between CFB mode and CBC mode is that CFB is a stream mode. When utilized in stream modes, feedback—also known as chaining—is used to break patterns. Similar to CBC, CFB employs an initialization vector, obliterates patterns, and causes errors to spread.

Learn more about cipher encryption here-

https://brainly.com/question/13906205

#SPJ4

Some experts believe that the internet is a vulnerable resource. Describe some significant ways your life would change if the internet as we know it ceased to exist.

Answers

Some of the significant ways one's life could be altered if the internet as we know it today ceased to exist are:

One there would be serious disruptions in the world's economy because a lot of banking and financial systems are not wired over the backbone of the internet.It would also affect aviation, there would be canceled flights, and transportation systems would be seriously affected for the same reason stated above.Perhaps the worst of it all would be that information flow will be stifled.

What is the internet?

The Internet comprises a vast network that links computers all over the world. People can interchange information and talk over the Internet from anywhere with an Internet connection.

The Internet is made up of technology created by many individuals and organizations:

Robert W. Taylor, who directed the creation of the ARPANET (an early version of the Internet), andVinton Cerf and Robert Kahn, who invented the Transmission Control Protocol/Internet Protocol (TCP/IP) technology, are important people.

Learn more about the Internet:
https://brainly.com/question/28843367
#SPJ1

What happens at the end of each iteration of the repeat loop in this code?

A. The program pauses for 2 seconds.
B. The shark's position on the screen changes.
C. The number of sharks increases
D. The shark follows the fish at a speed of 2000

Answers

Answer:

B. The shark's position on the screen changes.

an attacker gained remote access to a user's computer by exploiting a vulnerability in a piece of software on the device. the attacker sent data that was able to manipulate the return address that is reserved to store expected data. which vulnera

Answers

A buffer overflow exploit resulted from the attacker's actions.

What is buffer overflow?

A buffer overflow, also known as a buffer overrun, is an anomaly in information security and programming that occurs when a programme, when writing data to a buffer, overruns the buffer's boundary and overwrites adjacent memory locations. Buffers are memory spaces set aside to keep data while it is being moved from one component of a programme to another or between applications. Buffer overflows are frequently caused by faulty inputs; if the buffer is established with the assumption that all inputs will be lower than a given size, then an unusual transaction that produces more data may lead it to write past the end of the buffer.

Attackers take advantage of buffer overflow flaws by overwriting an application's memory. This alters the program's execution route, resulting in a response that damages files or exposes confidential information.

To learn more about buffer overflow

https://brainly.com/question/9906723

#SPJ4

in this micro-assignment, you will be implementing some missing code for a class bst template provided. you must work within your linux environment. please use the project given on canvas. specifically, you will need to implement code for the following 4 functions in bst.h and make sure all existing test cases in main() have the correct outputs. the only file you need to change is bst.h.

Answers

Applications employ Linux environment variables, which are variables having a name and a corresponding value, to obtain information about the environment.

An environment in computer operating systems is a section that houses data on how particular programs and applications behave. Linux user environments make it easier to find the command you require and do a lot without knowing the specifics of how the system is set up. Another issue is where the settings originate from and how they can be changed. Applications launched in shells or subshells employ environment variables, which are dynamic values saved on a system and used by such programs. These variables have respected names and values. The environment variable alters the system's functionality and an application's behavior.

Learn more about environment here-

https://brainly.com/question/13107711

#SPJ4

While performing research for a school writing project, you discover a website that contains exactly the information you think will nicely round out your paper. Describe how you will incorporate the information into your project and the steps you will take to ensure you give proper credit to the author.

Answers

While conducting research for a school writing project, you locate a website that contains exactly the details you think will nicely round out your paper. The best way to incorporate the information into your project and the steps you will take to ensure you give proper credit to the author are

given as follows: You must ensure that you give credit in the following ways:

Introduce the author and or the title of the source; Cite the link; and Make use of footnotes at the end of the bibliography. Why significant to give recognition to an author whose text you have quoted?

The law of copyright prevents an author's work from being duplicated without permission. To comply with this you must always credit the source. If you plagiarize a work, the author may sue you or you may fail your course.

Citations are vital because they assist others in finding the material you utilised. They contribute to the credibility of your own study. They relate your research to the research of other researchers.

Learn more about giving proper credit:
https://brainly.com/question/15082562
#SPJ1

what occurs when a redundant storage server offers an exact replica of the real-time data, and if the primary server crashes, the users are automatically directed to a secondary server?

Answers

Failover will occur when a redundant garage server gives a reproduction of the real-time data, and if the number one server crashes, the customers are directed to a secondary server.

Failover may be defined as returning to a redundant or standby pc server, gadget, hardware factor, or community upon the failure or strange termination of the formerly lively application, server, gadget, hardware factor, or community in a pc community. Failover can be used to protect pc structures from failure, wherein the standby gadget mechanically takes over while the principal gadget fails.

Learn more about failover at https://brainly.com/question/13790367

#SPJ4

given two integers as user inputs that represent the number of drinks to buy and the number of bottles to restock, create a vending machine object that performs the following operations: purchases input number of drinks restocks input number of bottles reports inventory

Answers

A vending machine object that performs the following operations: purchases input number of drinks restocks input number of bottles reports inventory is given below

The Program

public boolean removeItemType(int index)

 {

   if (index < 0)

   {

     return false;

 }

   else

   itemCount = index;

   index--;

  return true;

 }

 public boolean reStock(int which, int qty)

{

   if (index < 0)

   {

     return false;

 }

   else

     

  return true;

 }

public class ItemType

{

private String name;

 private double price;

 private int quantity;

 public ItemType(String n, int p)

 {

   this.quantity = 0;

   this.name = n;

   if (p <= 0){

     this.price = 5;

   }

   else{

     this.price = p;

   }

 }

 public String getName()

 {

   return this.name;      

 }

 public int getPrice()

 {

   return (int) this.price;      

 }

 public int getQuantity()

 {

   return this.quantity;

 }  

public int addQuantity(int n)

 {

   if (quantity <0) {

   return -9999;  

   }

   else{

     if (quantity + n <= 10)

       quantity += n;

    return quantity;

 }

 }

 public int getItem()

 {

   if (quantity < 1){

     return -9999;

   }

   else

     this.quantity --;

   return quantity;

   

 }

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

what solutions will help slow or sluggish website and page loading performance? consent mode analytics 4 gtm template libraries universal analytics server side tagging tag assistant

Answers

The solutions will help slow or sluggish website and webpage loading performance include the following:

GTM Template Libraries Server Side Tagging Universal Analytics Go-ogle Analytics 4

What is a website?

A website is a collective name which connotes a series of webpages that are interconnected and linked together with the same domain name, so as to provide certain information to end users.

In Computer technology, Server Side Tagging is a solution that would help a website to improve its performance and the amount of time it takes to load. Other solutions that can help to better mitigate and reduce slow or sluggish website and webpage loading performance include the following:

Go-ogle Tag Manager (GTM) Template Libraries Universal Analytics Go-ogle Analytics 4

Read more on website here: https://brainly.com/question/15827053

#SPJ1

Other Questions
How do ionization energies provide evidence for the quantization of the energies of electrons?. Write rules for the composition of translations. 1260/27 as a mixed number Which equation represents a line that is perpendicular to the line represented byy=2/3x+1?1) 3x+2y=122) 3x-2y=123) y=3/2x+24) y= -2/3x+4 Select the correct answer.Which elements would you least likely use to develop an idea in a personal narrative? A. formal writing style B. emotional recollections C. descriptive language D. chronological sequence find the perimeter of ABC with vertices A(-4,4), B(5,-6) and C(7,-9) Its saying 8/9= w-2 over 6 and the the problem says what is w and then shows improper fractions Is z(x) = 1 + 6x^2 + 4x a quadratic function? I don't believe it's linear or constant, just wanted to make sure. Apricots, butternut squash, cantaloupe, carrots, mangoes, peaches, pumpkin, and sweet potatoes are rich in. Twenty-one Native law enforcement agencies today limit their criminal investigations to what type of offense?A)crimes that involve the theft or misuse of natural resourcesB)auto theftC)crimes against individualsD)crimes that involve theft by deception An asteroid travels 25 kilometres per second how far does it travel in a hour (a) is it possible for the magnetic force on a charge moving in a magnetic field to be zero? (b) is it possible for the electric force on a charge moving in an electric field to be zero? (c) is it possible for the resultant of the electric and magnetic forces on a charge moving simultaneously through both fields to be zero? 3. Comparing and Contrasting The compoundin blood that carries oxygen to cells throughoutthe body contains iron. Iron has an atomic numberof 26. Iron-59 is used to diagnose disorders in theblood. How is iron-59 different from all otherisotopes of iron? How is it the same?HELPP ASAP Rectangle ABCD is graphed in the coordinate plane. The following are the vertices of therectangle: A(-8,-6), B(-3,-6), C(-3,-4), and D(-8,-4).Given these coordinates, what is the length of side AB of this rectangle? 5. The monthly membership fee at a gymincreased by 10% this year. Last year,the cost of a monthly membership was$28.50. What is the total yearly cost for amembership at the gym this year?A $307.80C $334.20B $319.20D $376.20 -2(4-3)-6x = 10Please show how to check work too Solve form. 2m - p = 11f What is the similarity between physical and special purpose map Are these lines parallel or not: L1: (1,2), (3,1), and L2: (0,-1), (2,0) A large university accepts 60% of the students who apply. Of the students the university accepts, 50% actually enroll. If 30,000 students apply, how many actually enroll?