A list of different information system which people can interact with every day are:
LaptopsDatabasesNetworksSmartphones Why is information technology so crucial to our daily lives?Information systems store data in an advanced manner that greatly simplifies the process of retrieving the data. A business's decision-making process is aided by information systems. Delivering all the crucial information through an information system makes it simpler to make better judgments.
Note that examples of information systems that are powered by computers are:
Social media: WeChat, Face book, and LinkedInQ&A website: QuoraAtrium (University of Montreal) and Iris are cataloged in libraries (BAnQ)E-commerce platforms like Amazon and eBayLearn more about information system from
https://brainly.com/question/14688347
#SPJ1
Which of the following formatting options adjusts the row height to include all text for all cells in a row?
AutoFit Column Width
O AutoFit Row Height
O Default Width
Row Height
The formatting option AutoFit Row Height adjusts the row height to include all text for all cells in a row.
What is the use of row height in Excel?
The Excel "ROWS" function, to put it simply, returns the count of the number of rows that have been selected in the range. As opposed to the ROW function, which provides the row number for the specified cell, it is distinct. The ROWS function, on the other hand, accepts an array of a row as an input and returns the number of rows in that array.
12.75 points serve as the standard row height (17 pixels). Text in font sizes of 10 and 12 points can be seen at this height. The horizontal lines that divides the row can really have their ends adjusted using the mouse. It's pretty similar to changing the width of a column to changing the height of a row.
To learn more about row in excel, use the link given
https://brainly.com/question/26573829
#SPJ1
Answer:
B
Explanation:
i just did it
The two main causes of firearm accidents are Ignorance & _____________?
Answer:
Carelessness
Explanation:
in what ways does amazon simple store service (amazon s3) object storage differ from block and file storage? (choose 2 answers)
Ama*on simple store service (ama*on s3) object storage differ from block and file storage since Objects are stored in buckets, and objects contain both data and metadata.
What is Metadata?
Metadata is defined as "data/information about data." Metadata assists us in comprehending the structure, nature, and context of the data.
Metadata makes data searching and retrieval easier. Metadata also aids in the monitoring of data quality and reliability. Metadata is the key to unlocking your data's value.
Examples of metadata:
Consider the following image. A rose is just a rose to the na*ed eye.
A rose, however, is much more to the more discerning "meta" eye. It is the sum of its meta.
The amount of metadata that goes into describing an image may surprise you.
Some of the metadata information stored are:
The camera makeLenses usedThe time when the photograph was takenFocal lengthThe location's GPS coordinatesImage resolutionColor profiles.To learn more about Metadata, visit: https://brainly.com/question/14960489
#SPJ1
Elena is a board game developer and has a website where she regularly posts about the work she is doing for her next game, mostly about the trials and tribulations of being a full-time game developer. What is the best description for Elena’s site?
Since Elena is a board game developer and has a website where she regularly posts about the work she is doing for her next game, the best description for Elena’s site is Blog
What a blog is used for?A blog, often known as a weblog, is a frequently updated online page that is used for commercial or personal comments. A area where readers can leave comments is usually included at the bottom of each blog article because blogs are frequently interactive.
Note that a blog is a web page that you frequently update. Brands frequently include blogs on their websites, making it simpler for visitors to find and interact with your postings. You can offer lengthy articles on your blog that cover subjects your target audience might be interested in reading or learning about and this is what Elena's site is all about.
Learn more about Blog from
https://brainly.com/question/16930663
#SPJ1
What is the purpose for the Information systems?
The cost of a customers electricity bill is based on the number of units of electricity the customer uses. For the first 25 units of electricity the cost is 5 per unit for units of electricity after the first 25, the cost is 7 per unit which of the following code segments correctly sets the value of the variable cost to the cost in dollars of using numUnits units of electricity
The code segment that correctly sets the value of the variable cost to the cost, in dollars, of using numUnits units of electricity is:
IF numUnits ≤ 25
cost ← numUnits * 5
ELSE
cost ← 25 5 + (numUnits -25) 7
What is a code segment?A code segment, often known as a text segment or just text, is a section of an object file or the equivalent piece of the program's virtual address space that includes executable instructions in computing.
Note that a code segment, often known as a text segment or simply text in the area of computing, is a section of a computer file that contains object code or an analogous section of the program's address space that contains executable instructions and directives information.
It should be mentioned that a segment can have a minimum size of 16 bytes and a maximum value of 64 kB.
Learn more about code segment:
https://brainly.com/question/20063766
#SPJ1
Full Question:
The cost of a customer's electricity bill is based on the number of units of electricity the customer uses.
- For the first 25 units of electricity, the cost is $5 per unit.
- For units of electricity after the first 25, the cost is $7 per unit.
Which code segments correctly sets the value of the variable cost to the cost, in dollars, of using numUnits units of electricity?
*IN JAVA*
Program Specifications Write a program to calculate U.S. income tax owed given wages, taxable interest, unemployment compensation, status (dependent, single, or married), and taxes withheld. Dollar amounts are displayed as integers with comma separators. Ex: System.out.printf("Cost: $%,d\n", cost);
Note: this program is designed for incremental development. Complete each step and submit for grading before starting the next step. Only a portion of tests pass after each step but confirm progress.
Step 1. Within main() input wages, taxable interest, unemployment compensation, status (0=dependent, 1=single, and 2=married), and taxes withheld as integers.
Step 2 (2 pts). Complete the calcAGI() method. Calculate the adjusted gross income (AGI) that is the sum of wages, interest, and unemployment. Convert any negative values to positive before summing to correct potential input errors. Return the AGI. Note the provided code in main() calls calcAGI() and outputs the returned value. Submit for grading to confirm two tests pass.
Ex: If the input is:
20000 23 500 1 400
The output is:
AGI: $20,523
Step 3 (2 pts). Complete the getDeduction() method. Return the deduction amount based on status: (0) dependent = 6000, (1) single = 12000, or (2) married=24000. Return 6000 if the status is anything but 0, 1, or 2. Within main() call getDeduction() and output the returned value. Submit for grading to confirm four tests pass.
Ex: If the input is:
20000 23 500 1 400
The additional output is:
AGI: $20,523
Deduction: $12,000
Step 4 (2 pts). Complete the calcTaxable() method. Calculate taxable amount (AGI - deduction). Set taxable to zero if calculation results in negative value. Return taxable value. Within main() call calcTaxable() and output the returned value. Submit for grading to confirm six tests pass.
Ex: If the input is:
20000 23 500 1 400
The additional output is:
AGI: $20,523
Deduction: $12,000
Taxable income: $8,523
Step 5 (2 pts). Complete the calcTax() method. Calculate tax amount based on status and taxable income (see tables below). Tax amount should be stored initially as a double, rounded to the nearest whole number using Math.round(), and converted to an integer before returning. Within main() call calcTax() and output the returned value. Submit for grading to confirm eight tests pass.
Ex: If the input is:
50000 0 0 2 5000
The additional output is:
AGI: $50,000
Deduction: $24,000
Taxable income: $26,000
Federal tax: $2,720
Income Tax for Dependent or Single Filers
$0 - $10,000 10% of the income
$10,001 - $40,000 $1,000 + 12% of the amount over $10,000
$40,001 - $85,000 $4,600 + 22% of the amount over $40,000
over $85,000 $14,500 + 24% of the amount over $85,000
Income Tax for Married Filers
$0 - $20,000 10% of the income
$20,001 - $80,000 $2,000 + 12% of the amount over $20,000
over $80,000 $9,200 + 22% of the amount over $80,000
Step 6 (2 pts). Complete the calcTaxDue() method. Set withheld parameter to zero if negative to correct potential input error. Calculate and return amount of tax due (tax - withheld). Within main() call calcTaxDue() and output returned value. Submit for grading to confirm all tests pass.
Ex: If the input is:
80000 0 500 2 12000
The additional output is:
AGI: $80,500
Deduction: $24,000
Taxable income: $56,500
Federal tax: $6,380
Tax due: $-5,620
JAVA CODE**
import java.util.Scanner;
public class LabProgram {
// Calculate AGI and repair any negative values
public static int calcAGI(int wages, int interest, int unemployment) {
/* Complete the method and update the return statement */
return -1;
}
// Calculate deduction depending on single, dependent or married
public static int getDeduction(int status) {
/* Complete the method and update the return statement */
return -1;
}
// Calculate taxable but not allow negative results
public static int calcTaxable(int agi, int deduction) {
/* Complete the method and update the return statement */
return -1;
}
// Calculate tax for single or dependent
public static int calcTax(int status, int taxable) {
/* Complete the method and update the return statement */
return -1;
}
// Calculate tax due and check for negative withheld
public static int calcTaxDue(int tax, int withheld) {
/* Complete the method and update the return statement */
return -1;
}
public static void main(String [] args) {
Scanner scan = new Scanner(System.in);
int wages = 0;
int interest = 0;
int unemployment = 0;
int status = -1;
int withheld = 0;
int agi;
// Step #1: Input information
// Step #2: Calculate AGI
agi = calcAGI(wages, interest, unemployment);
System.out.printf("AGI: $%,d\n", agi);
}
Using the knowledge in computational language in JAVA it is possible to write a code that calculate U.S. income tax owed given wages, taxable interest, unemployment compensation, status and taxes withheld.
Writting the code:import java.util.*;
class Main{
public static void main(String args[])
{
Scanner sc=new Scanner(System.in);
//take the inputs
int wages=sc.nextInt();
int interest=sc.nextInt();
int compensation=sc.nextInt();
int status=sc.nextInt();
int withheld=sc.nextInt();
int cost=calcAGI(wages,interest,compensation);
int deduction=getDeduction(status);
int taxable=getTaxable(cost,deduction);
System.out.printf("AGI: $%,d\n", cost);
System.out.printf("Deduction: $%,d\n", deduction);
System.out.printf("Taxable income: $%,d\n",taxable);
}
static int calcAGI(int wages,int interest,int compensation)
{
int cost=wages+interest+compensation;
return cost;
}
static int getDeduction(int status)
{
if(status==0)
{
return 6000;
}
else if(status==1)
{
return 12000;
}
else if(status==2)
{
return 24000;
}
return 6000;
}
static int getTaxable(int AGI,int deduction)
{
int taxable=AGI-deduction;
return taxable;
}
}
See more about JAVA at brainly.com/question/18502436
#SPJ1
This machine can perform all four of the basic arithmetic operations and could multiply numbers of up to 5 and 12 digits to give a 16-digit operand. What is it?
The machine that can perform all four of the basic arithmetic operations and could multiply numbers of up to 5 and 12 digits to give a 16-digit operand is the stepped reckoner,
What is the stepped reckoner?The stepped reckoner, also known as the Leibniz calculator, was a mechanical calculator invented around 1672 by the German mathematician Gottfried Wilhelm Leibniz and completed in 1694. The name is derived from the German term for its operating mechanism, Staffelwalze, which translates as "stepped drum." It was the first calculator capable of carrying out all four arithmetic operations.
Its intricate precision gearwork, on the other hand, was a little beyond the fabrication technology of the time; mechanical issues, as well as a design flaw in the carry mechanism, prevented the machines from working reliably.
Learn more about machine on:
https://brainly.com/question/388851
#SPJ1
identify 4 benefit of managing
mediate correctly
Some benefits of managing mediate correctly are:
1. Improved communication between parties
2. Increased clarity and understanding of issues
3. More effective and efficient decision making
4. Greater satisfaction with the process and outcome
What is mediate?
Mediation is a systematic, interactive procedure in which an unbiased third party supports disputing parties in resolving dispute using specialised communication and negotiation strategies. All mediators are encouraged to actively participate in the process. Mediation is a "party-centered" technique in that it is primarily concerned with the parties' needs, rights, and interests. The mediator employs a number of tactics to steer the process in a constructive direction and to assist the parties in reaching their best settlement.
To learn more about mediate
https://brainly.com/question/28199664
#SPJ1
Programming paradigms
A paradigm is a strategy for tackling a challenge or completing a task. Programming paradigms are ways to solve problems using a programming languages, or you could say they are ways to use tools and techniques that are already at our disposal to solve problems in a certain way.
What is a Programming Paradigm?
Programming paradigms are various organizational structures that can be used with a particular program or programming language. Each paradigm has a unique set of structures, attributes, and ideas about how to approach typical programming issues.
The reason why there are numerous programming paradigms is comparable to the reason there are numerous programming languages. It makes sense to use different paradigms for various projects because different paradigms are better suited for various types of problems.
What a Programming Paradigm is Not?
Languages and tools are not what programming paradigms are. With a paradigm, nothing can be "built." They resemble a set of ideals and principles that have been accepted, followed, and developed upon by numerous individuals.
To know more about Prograaming Paradigm, visit: https://brainly.com/question/28736751
#SPJ9
Complete the sentence. Privacy is about having (BLANK) our personal data.
O secrecy adout
O control over
O access to
Privacy is about having secrecy about our personal data. Hence, option A is correct.
What is secrecy about of personal data?These data also contain genetic, biometric, and health data in addition to personal information revealing racial and ethnic origin, political beliefs, religious or ideological views, or union membership.
Any processing of personal data need to be legitimate, equitable, and open. People should understand how their personal information is collected, used, consulted, or processed in any other way, as well as how much processing is taking place or will be taking place.
Thus, option A is correct.
For more information about secrecy about of personal data, click here:
https://brainly.com/question/28234534
#SPJ1
Answer:
secrecy about
Explanation:
conditional_snakes.py - snake_input = int
Following is the code for conditional snakes:
input = int(input(" Count the number of snakes>"))
if input == 0:
print("There are no snakes !")
elif input == 1:
print("There is [input] snake and it is fine")
elif input > 1:
print("There are [input] snakes! RUN!")
else:
print ("Snakes cant be negative enter 0 or positive number of snakes")
What is a conditional statement?
A conditional statement is used in your program to deal with conditions, as its name suggests. In making decisions based on the circumstances it encounters, the program is guided by these statements. You should be familiar with Python's three main conditional statements: statement if, else, else if
Hence above program is the conditional snake program in python
To know more about conditional statements follow this link
https://brainly.com/question/27021213
#SPJ1
You take a loan from a friend and need to calculate how much you will owe him after 3 months.
The loan was for $100 and the interest rate is 10%.
What do you mean by loan?
A loan is the lending of money by one or more persons, organisations, or other entities to other individuals, organisations, or other entities in finance. The recipient (i.e., the borrower) incurs a debt and is typically required to pay interest on that loan until it is repaid, in addition to repaying the primary amount borrowed. The paper demonstrating the loan (for example, a promissory note) will often indicate the principal amount borrowed, the interest rate charged by the lender, and the date of repayment.
$100 + ($100 × (10/100))
= $110
To learn more about loan
https://brainly.com/question/25696681
#SPJ1
The state department that issues driver's licenses would like a police officer to be able to scan the driver's license and instantly view outstanding tickets and warrants. In one to two sentences, describe the emerging technology the state could use.
Answer:
The state could use a QR code scanner that would allow the officer to scan the code and view the outstanding tickets and warrants.
How can spreadsheets be useful to buisnesses
Answer: A lot of businesses uses spreadsheets to identify trends and organize and sort data into different categories.
Explanation:
For example, they can record sales that happens, stocks and inventory, sorting worked hours, employee profiles and expenses, etc.
Drivers are concerned with the mileage their automobiles get. One driver has kept track of several tankfuls of gasoline by recording the miles driven and gallons used for each tankful. Develop a C# application that will input the miles driven and gallons used for each tankful. The application should calculate and display the miles per gallon obtained for each tankful and display the total combined miles per gallon obtained for all tankfuls up to this point. Additionally, the application should categorize and display the consumption rate of gasoline as follows: Low, if the total miles per gallon is greater than 30. • Normal, if the total miles per gallon is between 20 and 30. High, if the total miles per gallon is less than 20. All averaging calculations should produce floating-point results. Display the results rounded to the nearest hundredth. c# program
To solve this problem with the help of C++ programing language, you must know concepts like variables, data type, if-else and while loop.
Step-by-step coding for the problem:
using System;
namespace GasOfMiles
{
public class Gas
{
static void Main(string[] args)
{
int miles; // miles for one tankful
int gallons; // gallons for one tankful
int totalMiles = 0; // total miles for trip
int totalGallons = 0; // total gallons for trip
double milesPerGallon; // miles per gallon for tankful
double totalMilesPerGallon; // miles per gallon for trip
// prompt user for miles and obtain the input from user
Console.Write("Enter miles (-1 to quit): ");
miles = Convert.ToInt32(Console.ReadLine());
// exit if the input is -1 otherwise, proceed with the program
while (miles != -1)
{
// prompt user for gallons and obtain the input from user
Console.Write("Enter gallons: ");
gallons = Convert.ToInt32(Console.ReadLine());
// add gallons and miles for this tank to totals
totalMiles += miles;
totalGallons += gallons;
// calculate miles per gallon for the current tank
if (gallons != 0)
{
milesPerGallon = (double)miles / gallons;
Console.WriteLine("MPG this tankful: {0:F}",
milesPerGallon);
} // end if statement
if (totalGallons != 0)
{
// calculate miles per gallon for the total trip
totalMilesPerGallon = (double)totalMiles / totalGallons;
Console.WriteLine("Total MPG: {0:F}\n", totalMilesPerGallon);
} // end if statement
// prompt user for new value for miles
Console.Write("Enter miles (-1 to quit): ");
miles = Convert.ToInt32(Console.ReadLine());
} // end while loop
Console.ReadKey();
}
}
}
To learn more about C++ Programming, visit: https://brainly.com/question/13441075
#SPJ9
Question #4
Fill in the Blank
Fill in the blank to complete the sentence.
the users site.
is used to store and process data
over the Internet using computers that are not located at
The users site.
Answer:
cloud computing
Explanation:
Processing devices are the components responsible for the processing of information within the computer system. This includes devices such as the CPU, memory and motherboard. Storage devices are components which allow data to be stored within a computer system.
A petrol engine takes 1000J of chemical energy and produces 250J of useful energy
A petrol engine takes 1000J of chemical energy and produces 250J of useful energy the efficiency is 25%.
What is chemical energy?Chemical energy is defined as a chemical substances' potential energy, which is released as they experience chemical reactions and change into other substances.
As the petrol engine takes 1000J of chemical energy and produces 250J of useful energy.
So, Input = 1000 J
Output = 250 J
Efficiency = (250 / 1000) 100
= 0.25 x 100
= 25 %
Thus, a petrol engine takes 1000J of chemical energy and produces 250J of useful energy the efficiency is 25%.
To learn more about chemical energy, refer to the link below:
https://brainly.com/question/1371184
#SPJ1
Your question is incomplete, but probably your complete question was
A petrol engine takes 1000J of chemical energy and produces 250J of useful energy, calculate the efficiency?
A typical executive information system (EIS) offers which of the following capabilities?
A capability which a typical executive information system (EIS) offers include the following: b. slice-and-dice.
What is an information system?An information system (IS) can be defined as a collection of computer systems and Human Resources (HR) that is used by a business organization (firm or company) or manager to obtain, store, compute, and process data, as well as the dissemination of information, knowledge, and the distribution of digital products from one location to another.
Generally speaking, there are three (3) main kinds of information system (IS) that allow information to be accessed and shared internally among employees;
Executive Information System (EIS)Corporate PortalIntranetIn conclusion, drill-down, consolidation, and slice-and-dice are the three most common and typical capabilities that are being offered in an executive information system (EIS), in order to view information in a business firm from different perspectives.
Read more on information system here: brainly.com/question/24944623
#SPJ1
Complete Question:
A typical executive information system (EIS) offers which of the following capabilities? O a. video conferencing O b. slice-and-dice O c. collaboration d. messaging
Which of the following is something computer scientist would do
What feature would you use to enhance a text box? Shape Styles, Adjust slide layout, Insert new format, or Add-ons?
Answer:
I believe add-ons are used for that
Explanation:
External hackers have some access to a company's website and made some changes. Customers have submitted multiple complaints via email for wrong orders and inappropriate images on the website. The Chief Information Officer (CIO) is now worried about the distribution of malware. The company should prepare for which of the following other issues or concerns?
Answer:
-Domain reputation
-URL redirections
Explanation:
Hi, I need this URGENTLY. Thank you
1) Turing proposed a rudimentary computational model that became the definition of computable. A function is deemed computable if and only if it can be computed using Turing's computation model.
Hartmanis and Stearns utilized the Turing model to create complexity classes, which was a significant step forward. This then formalized the intuitive concept of polynomial time algorithms. It aided in the development of asymptotic complexity as a method for comparing algorithm performance.
Another significant innovation was the Turing model's introduction of the concepts of an extremely rapid description of computation and a valid computation. An instantaneous definition is a string that fully explains a computation at a single point in time. A correct calculation is a series of immediate descriptions. Despite the fact that Turing's model was fairly simple, it was this simplicity that led to significant achievements in computer science.
2) The Turing test, invented by Alan Turing in 1950 as the imitation game, is a test of a machine's capacity to demonstrate intelligent behavior comparable to, or unrecognizable from, that of a person.
Put differently, the Turing Test is a way of testing whether or not a machine is able to reason like a human being in artificial intelligence (AI).
3) Electrostatic discharge (ESD) occurrences can cause damage to electronic components within your computer. ESD may accumulate on your body or an object, such as a device, and then discharge into another element, like as your computer, under specific conditions.
Touching a metal-grounded item (such as an exposed surface of the metal on your computer's I/O panel) before interacting with anything electrical will guard against ESD and discharge static energy from your body.
What is the Turing Machines?The Turing machine is a hypothetical computer system proposed by English mathematician and logician Alan M. Turing in 1936.
Today, Turing is most known for his work as a computer scientist. In 1936, he devised the Universal Turing Machine, which served as the foundation for the first computer. In 1950, he created an artificial intelligence test that is still in use today.
Learn more about Turing Model:
https://brainly.com/question/28648571
#SPJ1
Activity 1
the visual basic program to sort the following strings for array named "Place"
(Pacific, Atlantic, Indian, Black, Red, North, Caspian, Caribbean
Visual basic program to sort the following strings for array:
Public Class Form1
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles
Button1.Click
Dim Place() As String = {"Pacific", "Atlantic", "Indian",
What is array?
An array is a significant subject that falls within the umbrella of computer science. Additionally, you must thoroughly examine each angle of the array while preparing for a competitive exam like the GATE. All of the subjects pertinent to the array have been covered in this article. We hope the CSE topic notes will assist your understanding of this subject. An array is a collection of identical elements or data items stored at adjacent memory locations. In plain English, we can say that arrays are typically used in computer programming to organise the same kind of data.
To learn more about array
https://brainly.com/question/24275089
#SPJ1
A pop-up window is a small web browser window that
opens without your permission after opening a
website.
True
False
Answer:
Yes, that's true
Explanation:
Answer: Yes, this is true.
The statement newStr.length() gives the value
The statement newStr.length() gives the value do returns the length of new string.
What does programming string mean?Traditionally, a string in computer programming refers to a group of characters, either as a literal constant or as a form of variable. The latter may be fixed in length or may permit its elements to be altered (after creation).
The string's length in unicode characters is represented by an integer by the length() method. In TypeScript, you may utilize the length property of the String object to determine the length of a String. The String object's length property returns an integer that represents the length of the string when used.
So, The String method length can be used to calculate the length of a string.
Learn more about string from
https://brainly.com/question/26427527
|#SPJ1
Richman is considering buying insurance for each smartphone. Use the ALE to determine the usefulness of this safeguard. For example, Richman could purchase insurance for each device for $25 per year. The safeguard value is $25 X 1,000 devices, or $25,000. It is estimated that if the insurance is purchased, the ARO will decrease to 5. Should the company purchase the insurance?
Using knowledge in computational language in SQL it is possible to write a code that Richman is considering buying insurance for each smartphone.
Writting the code:SLE = $500 (this is total loss expected )
ARO = 75 ( this is number of times the incident can happen in an year)
ALE = SLE*ARO (calculation of ALE from SLE and ARO)
ALE= 500*75 = $37,500
Current ALE = $37,500(After calculation current ALE)
ARO with control = 5 (This value given in question)
(ALE with control can be calculated by multiplying SLE with (ARO with control))
ALE with control = SLE*ARO with control = 500*5 = $2500
Savings with control=Current ALE-ALE with control
Savings with control = $37500 – $2500 = $35000
Safeguard value = $25000
Realized savings=Savings with control-safeguard value
Realized savings = $35000 – $25000 = $10,000
See more about SQL at brainly.com/question/18502436
#SPJ1
Could so please help me
Answer: For?
Explanation:
what do you need help with?
Write a program that inputs numbers and keeps a running sum. When the sum is greater than 200, output the sum as well as the count of how many numbers were entered.
Sample Run
Enter a number: 50
Enter a number: 11
Enter a number: 66
Enter a number: 23
Enter a number: 53
Sum: 203
Numbers Entered: 5
Hint: If you get an EOF error while running the code you've written, this error likely means you're asking for too many inputs from the user.
Using the knowledge in computational language in python it is possible to write a code that inputs numbers and keeps a running sum.
Writting the code:totalsum=0
count=0
while(totalsum<=200):
num=int(input("Enter a number: "))
totalsum=totalsum+num
count=count+1
print("Sum:",totalsum)
print("Numbers Entered:",count)
See more about python at brainly.com/question/12975450
#SPJ1
Guys I should write the program in C++
Can u help me?
Write a program which reads numbers from keyboard in a loop and checks if the given number is even.
The program ends when a negative number is input.
#include <iostream>
int main(int argc, char const* argv[]) {
while(1) {
std::cout << ">> "; int x; std::cin>>x;
if(x<0) break;
else if(x%2==0) {std::cout << "\nThis is even number.\n";}
else std::cout << "\nThis is odd number.\n";
}
return 0;
}