Answer:
Data Accuracy
Explanation:
Data accuracy refers to error-free records that can be used as a reliable source of information. In data management, data accuracy is the first and critical component/standard of the data quality framework.
Help me..and thank you
Answer:
#include <stdio.h>
void spaces(int n) {
for(int i=0; i<n; i++) {
putchar(' ');
}
}
void numbersdown(int n) {
for(int i=n; i>1; i--) {
putchar('0'+i);
}
}
void numbersup(int n) {
for(int i=1; i<=n; i++) {
putchar('0'+i);
}
putchar('\n');
}
int main(void) {
int number;
printf("Please enter a digit: ");
scanf("%d", &number);
for(int i=number; i>0; i--)
{
spaces(number-i);
numbersdown(i);
numbersup(i);
}
}
Explanation:
I deliberately separated the solution into different functions for readability. If needed, the code could be made much more compact.
And office now has a total of 35 employees 11 were added last year the year prior there was a 500% increase in staff how many staff members were in the office before the increase
There were 5 staff members in the office before the increase.
To find the number of staff members in the office before the increase, we can work backward from the given information.
Let's start with the current total of 35 employees. It is stated that 11 employees were added last year.
Therefore, if we subtract 11 from the current total, we can determine the number of employees before the addition: 35 - 11 = 24.
Moving on to the information about the year prior, it states that there was a 500% increase in staff.
To calculate this, we need to find the original number of employees and then determine what 500% of that number is.
Let's assume the original number of employees before the increase was x.
If we had a 500% increase, it means the number of employees multiplied by 5. So, we can write the equation:
5 * x = 24
Dividing both sides of the equation by 5, we find:
x = 24 / 5 = 4.8
However, the number of employees cannot be a fraction or a decimal, so we round it to the nearest whole number.
Thus, before the increase, there were 5 employees in the office.
For more questions on staff members
https://brainly.com/question/30298095
#SPJ8
Which of the following is NOT solely an Internet-based company?
Netflix®
Amazon®
Pandora®
CNN®
Answer:
I think it's Pandora, though I am familiar with others
Answer:
CNN
Explanation:
Write a program that reads a person's first and last names separated by a space, assuming the first and last names are both single words. Then the program outputs last name, first name. End with newline.
Example output if the input is: Maya Jones
code in C language
Following are the code to input string value in C Language.
Program Explanation:
Defining header file.Defining the main method.Inside the method, two char array "lname, fname" is declared, which inputs value from the user-end.After input value, a print method is declared that prints the last name with "," and first name.Program:
#include <stdio.h>//header file
int main()//defining main method
{
char lname[15],fname[15];//defining two char array
scanf("%s%s",fname, lname);//use input method that takes string value in it
printf("%s , %s",lname,fname);//use print method that prints string value
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/14436979
Are the actions legal or illegal?
a. Your company is moving toward final agreement on a contract in Pakistan to sell farm equipment. As the contract is prepared, officials ask that a large amount be included to enable the government to update its agriculture research. The extra amount is to be paid in cash to the three officials you have worked with. Should your company pay?
Answer:
No, Company will not pay
Explanation:
At the last point of the final deal, any significant sum of money does not fall into the frame.
It was important to address the exact amount needed to update the research on agriculture. They might be asking for inflated amounts.
Need help with Exercise 7
The method signature in Java syntax based on the information will be:
public boolean has13Digits(String inputString) {
}
How to explain the informationIt should be noted that to design the method that takes a String and returns true if the String has 13 digits and false otherwise, we can follow the following steps:
Declare a method with a return type of boolean, which takes a String parameter.
Check if the length of the input String is exactly 13.
If the length is 13, check if all characters in the String are digits. If yes, return true; otherwise, return false.
Lean more about java on
https://brainly.com/question/25458754
#SPJ1
0.6 tenths of an hour would be how many minutes?
Answer: 3.6 minutes
Explanation:
Describe how you plan to account for the organizational roles and experience level of your audience as you prepare your presentation.
Describe how the educational level of the viewers will impact your presentation.
Answer:
Maybe by how educated you are it can affect the presentation with either grammer,words,and how you explain it.
Explanation:
(can i have brainliest) ^--^
A _________ level breach of security could cause a significant degradation in mission capability to an extent and duration that the organization is able to perform its primary functions, but the effectiveness of the functions is significantly reduced. studylib
Answer:
Moderate.
Explanation:
A breach of security can be defined as any incident which results in an unauthorized access or privileges to a network, computer, software application, classified informations or data and services. There are three (3) levels of impact on an individual or organization when there's a breach of security; low, moderate and high.
A moderate level breach of security could cause a significant degradation in mission capability to an extent and duration that the organization is able to perform its primary functions, but the effectiveness of the functions is significantly reduced. It causes a serious adverse effect on individuals, employees or organizational assets and operations.
However, in order to prevent a breach of security, it is advisable to use the following programs: firewall, demilitarized zone (DMZ), Intrusion Detection Systems (IDS) and Intrusion Prevention Systems (IPS) etc.
What refers to the main screen of the computer
Answer:
Desktop.
Explanation:
Desktop refers to the main screen of the computer.
how can we clearly communicate how to draw something on a screen
The way we can clearly communicate how to draw something on a screen are:
First the person need to be clear on what they what them to drawThen they need to give examples or make use of a diagram that the people are going to draw. Note that one need to also be patient and try to convey the ways to draw every minute.Lastly let them practice what you have said on their own.What is communication and explain?Communication is known to be a term that connote the act of providing, receiving, as well as sharing information.
Note that Good communicators are those that listen carefully, speak and also write clearly, as well as understand the message that is been delivered.
It is seen as the process through which information is said to be exchanged between people through a some system of symbols, signs and others.
Therefore, The way we can clearly communicate how to draw something on a screen are:
First the person need to be clear on what they what them to drawThen they need to give examples or make use of a diagram that the people are going to draw. Note that one need to also be patient and try to convey the ways to draw every minute.Lastly let them practice what you have said on their own.Learn more about communication from
https://brainly.com/question/25793182
#SPJ1
A drink costs 2 dollars. A taco costs 3 dollars. Given the number of each, compute total cost and assign totalCost with the result. Ex: 4 drinks and 6 tacos yields totalCost of 26.
*/
int main() {
int numDrinks = 0;
int numTacos = 0;
int totalCost = 0;
numDrinks = 4;
numTacos = 6;
/* Your solution goes here */
totalCost = (2 * numDrinks) + (3 * numTacos);
cout << "Total cost: " << totalCost << endl;
return 0;
}
Answer:
See Explanation
Explanation:
The question has been answered; however, the program is not dynamic enough because the output will always be 26.
To make it dynamic, replace the following lines of code:
numDrinks = 4;
numTacos = 6;
with:
cout<<"Number of drinks: ";
cin>>numDrinks;
cout<<"Number of Tacos: ";
cin>>numTacos;
The above lines of code will let the user input different values for numDrinks and numTacos each time the program is executed.
Computing the total cost using code can be represented as follows:
def total_cost(no_of_drinks, no_of_talcos):
totalCost = 2*no_of_drinks + 3*no_of_talcos
return totalCost
print(total_cost(4, 6))
Python code explanation:A function named total_cost is declared and it accept the parameters no_of_drinks and no_of_talcos.
The totalCost is used to store the result of the cost of the total drinks and tacos bought in dollars.
Then, we return the totalCost.
Finally, we use the print statement to call the function with its required parameters.
learn more on python code:https://brainly.com/question/14479908?referrer=searchResults
What is the blue screen of death?
Answer:
A blue screen of death, officially known as a stop error, or exception error, blue screen error, is an error screen that the Windows operating system displays in the event of a fatal system error.
Explanation:
Hope it will help you
Answer:
A blue screen of death, officially known as a stop error, or exception error, blue screen error, is an error screen that the Windows operating system displays in the event of a fatal system error
PLS mark me as brainliest. What projects would Excel best be used for?
Answer:
Projects that require spreadsheet organization and/or calculations between data
Explanation:
That is why Excel is a spreadsheet program
• List 2 examples of media balance:
Answer: balance with other life activities
spending time with family
studying / school work
Explanation:
How will Excel summarize the data to create PivotTables? summarize by row but not by column summarize by column but not by row summarize by individual cells summarize by row and by column
Answer:
D. summarize by row and by column
Answer:
D.
Explanation:
What strategy would best help someone manage their feelings of frustration after being cut from a team?
A
Criticizing the other team members, but only when you aren't in front of them
B
Talking to a trusted friend about their feelings
с
Confronting the coach for not giving them a chance
D
Both B and C
Explanation:
B.talking to a trusted friend about their feeling.
What is the correct formula for the IF function in excel
Use the IF function, one of the logical functions, to return one value if a condition is true and another value if it's false. For example: =IF(A2>B2,"Over Budget","OK") =IF(A2=B2,B4-A4,"")
The IF function in Microsoft Excel is the most common function in Excel that allows comparing the data.
The IF function can have two statements that is positive and negative. Like of IF(C2='' Yes'', 1, 2). Which means of c2 is yes then return one or two. Thus IF formula is used to evaluate errors.Learn more about the correct formula for the IF function in excel.
brainly.in/question/5667072.
What is a central idea for 3 Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.
Answer:
Main Idea of Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.
Explanation:
Tuesday
write the
correct
answer
Text can be celected using
2 A mouse
device of
is
ch
3 Scrolls bars are
buttons which assist
upwards downwards
sideways to
skole
Answer:
?
Explanation:
these are instructions to a question?
Match the network media to their characteristic. shielded twisted-pair cable coaxial cable optic-fiber cable used by cable service providers to transmit TV programs arrowRight is heavy and difficult to deploy arrowRight offers the fastest transmission speeds: about 100 Gigabits per second (Gbps)
Optic-fiber cable - offers the fastest transmission speeds: about 100 Gigabits per second (Gbps).
What is Gigabits?Gigabits (Gb) is a unit of measurement for digital information throughput. It is the equivalent of one billion bits, or 1,000 megabits (Mb). Gigabits are commonly used to measure the speed of an Internet connection, and are often referred to as “Gigabit internet speeds”. The amount of data that can be transferred over a Gigabit connection is significantly higher than over a slower connection.
shielded twisted-pair cable - is heavy and difficult to deploy
coaxial cable - used by cable service providers to transmit TV programs
optic-fiber cable - offers the fastest transmission speeds: about 100 Gigabits per second (Gbps).
To learn more about Gigabits
https://brainly.com/question/289615
#SPJ1
Answer:
Offers the fastest transmission speeds
about 100 Gigabits per second (Gbps): optic-fiber cable
is heavy and difficult to
deploy: shielded twisted-pair cable
used by cable service providers to
transmit TV programs: coaxial cable
Explanation:
I hope this helps!
BTW PLATO
Following Aristotle,man by nature is a political animal,justify the above claim in the light of the Russian invasion of Ukraine
Following Aristotle, man by nature is a political animal using the claim in the light of the Russian invasion of Ukraine is that:
Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.What is the quote about?In his Politics, Aristotle was known to be a man who believed man to be a "political animal" due to the fact that he is a social creature that is said to have the power of speech and also one that has moral reasoning:
He sate that man is a lover of war and as such, Aristotle stated that State is natural due to the fact that nature has not made man to be in a self-sufficient state. But Man has a lot of -different type of needs which they want them to be fulfilled. Russian need and Ukraine need differs and as such, man is fighting to satisfy their needs.
Learn more about Aristotle from
https://brainly.com/question/24994054
#SPJ1
After running an algorithm that you wrote, you find that you have made a
mistake. What likely happened to make you realize this?
Answer: First, we can't run an algorithm it's just the syntax or the structure that you write on paper (file editor) before you translate it into an actual program code using a programming language (C, Python, Php, C# ...)
After running an algorithm that you wrote, you find that you have made a mistake. An unexpected outcome was reached with likely happened to make you realize this.
What does a set of rules produce?In the maximum well-known sense, a set of rules is a sequence of commands telling a laptop a way to rework a fixed of records approximately the arena into beneficial facts.
The records are data, and the beneficial facts is know-how for people, commands for machines or enter for some other algorithms software.It is noted that if the output is correct then the algorithm is correct.
Read more about the algorithm:
https://brainly.com/question/20322497
#SPJ2
A chart legend?
A.corresponds to the title of the data series column.
B.provides the boundaries of the chart graphic.
C.is based on the category labels in the first column of data.
D.is used to change the style of a chart.
(problem is given by the image)
The program that prompts the user for three integers and displays their average as a floating point is given below:
The Code:import java.util.Scanner;
public class ArithmeticSmallestLargest {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int num1;
int num2;
int num3;
int sum;
int average;
int product;
int largest;
int smallest;
System.out.print("Enter First Integer: ");
num1 = input.nextInt();
System.out.print("Enter Second Integer: ");
num2 = input.nextInt();
System.out.print("Enter Third Integer: ");
num3 = input.nextInt();
sum = num1 + num2 + num3;
average = sum / 3;
product = num1 * num2 * num3;
largest = num1;
smallest = num1;
if(num2 > largest)
largest = num2;
if(num3 > largest)
largest = num3;
if(num2 < smallest)
smallest = num2;
if (num3 < smallest)
smallest = num3;
System.out.println("The sum is " + sum);
System.out.println("The average is " + average);
System.out.println("The product is " + product);
System.out.println("Largest of three integers is " + largest + " and the smallest is "+ smallest + ".");
}
}
Read more about java programming here:
https://brainly.com/question/18554491
#SPJ1
I NEED HELP ksdnkdcnfsvxn
Note that where 32 teams qualified for the 2014 World Cup. If the names of the teams were arranged in sorted order (an array), the number of items in the array that binary search would have to examine to find the location of a particular team in the array, in the worst case at most 6 (Option C).
What is an array?An array is a data structure in computer science that consists of a collection of items, each of which is identifiable by at least one array index or key. A mathematical method is used to determine the location of each element from its index tuple in an array.
Because they hold items of the same kind, arrays are categorized as Homogeneous Data Structures. Numbers, strings, boolean values (true and false), characters, objects, and other data can be stored in them. However, once you specify the kind of data your array will contain, all of its components must be of the same type.
Learn more about Array:
https://brainly.com/question/19570024
#SPJ1
Build a sequence detector for the following binary input sequence: 000, where the left-most binary input happened first. The sequence detector should detect all instances of the target sequence by outputting 1 when the sequence is detected and when the sequence is not detected. Example, a sequence detector for the different sequence 1101 should have the following pattern. IN : 0 1 1 0 1 1 0 1 0 1 OUT: 0 0 0 0 1 0 0 1 0 0 The 1-bit input to this sequence detector is called i. The 1-bit output to this sequence detector is called
A sequence detector for the binary input sequence "000" can be implemented using a three-bit shift register and a combinational circuit that checks for the desired sequence.
The three-bit shift register will hold the three most recent bits of the input sequence, with the most recent bit in the rightmost position. The combinational circuit will check whether the contents of the shift register match the desired sequence "000".
The implementation of the sequence detector using a shift register and a combinational circuit can be described as follows:
i) Initialize the shift register with all zeros.
ii) For each input bit i:
a. Shift the contents of the shift register one bit to the left.
b. Store the new input bit i in the rightmost position of the shift register.
c. Check whether the contents of the shift register match the desired sequence "000". If the contents of the shift register match the desired sequence, output a 1. Otherwise, output a 0.
iii) Repeat step 2 for each subsequent input bit.
iv) The implementation of the sequence detector can be shown using a state diagram or a truth table. Here is the truth table for the sequence detector:
In this truth table, the "Current State" column represents the current contents of the shift register, the "Input i" column represents the current input bit, the "Next State" column represents the new contents of the shift register after shifting and storing the new input bit, and the "Output o" column represents the output of the sequence detector.
Using this truth-table, we can implement the combinational circuit that checks for the desired sequence, and then build the sequence detector using a shift register and the combinational circuit.
Learn more about truth-table here:
https://brainly.com/question/27989881
#SPJ4
how can you stretch or skew an object in paint
Answer:
Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.
Explanation:
Write a program that calculates the cost of an auto insurance policy. The program prompts the user to enter the age of the driver and the number of accidents the driver has been involved in. The program should adhere to these additional requirements:
- If the driver has more than 2 accidents and is less than the age of 25, deny insurance and in lieu of policy amount, print message: Insurance Denied.
- If the driver has more than 3 accidents, deny insurance and in lieu of policy amount, print message: Insurance Denied.
- Include a base charge of $500 dollars for all drivers
- If a driver has 3 accidents, include a surcharge of $600
- If a driver has 2 accidents, include a surcharge of $400
- If a driver has 1 accident, include a surcharge of $200
- If a driver is less than the age of 25, include an age fee of $100
- The total of the policy amount should include the base, any surcharge, and any age fee
- Use a Boolean variable for the purpose of indicating a driver is insurable
- Use at least one logical operator
- Use at least one if - elif block
- Outputs should display currency format with $ signs and commas for thousands
Here's a Python program that calculates the cost of an auto insurance policy based on the age of the driver and the number of accidents they've been involved in.
# Program to calculate auto insurance policy cost
# Prompt user for driver's age and number of accidents
age = int(input("Enter driver's age: "))
accidents = int(input("Enter the number of accidents the driver has been involved in: "))
# Initialize base charge and insurable variable
base_charge = 500
insurable = True
# Check conditions for denying insurance
if accidents > 2 and age < 25:
insurable = False
print("Insurance Denied")
elif accidents > 3:
insurable = False
print("Insurance Denied")
# Calculate surcharge based on the number of accidents
if accidents == 3:
surcharge = 600
elif accidents == 2:
surcharge = 400
elif accidents == 1:
surcharge = 200
else:
surcharge = 0
# Calculate age fee if driver is less than 25 years old
if age < 25:
age_fee = 100
else:
age_fee = 0
# Calculate total policy amount
policy_amount = base_charge + surcharge + age_fee
# Display the policy amount in currency format
print("Policy Amount: ${:,.2f}".format(policy_amount))
This program prompts the user to enter the driver's age and the number of accidents they've been involved in. It then checks the conditions for denying insurance based on the number of accidents and the driver's age. If the driver is insurable, it calculates the surcharge and age fee based on the number of accidents and age.
The total policy amount is calculated by adding the base charge, surcharge, and age fee. Finally, the program displays the policy amount in currency format with dollar signs and commas for thousands. The program uses logical operators (such as and), if-elif blocks, and a boolean variable (insurable) to meet the requirements.
For more question on Python visit:
https://brainly.com/question/26497128
#SPJ8
What are the characteristics of Instant Search in Outlook 2016? Check all that apply. A)Typing whole phrases makes your search more efficient.
B)An Instant Search box appears in every view in Outlook.
C)Instant Search can be found under the Search tab in Outlook.
D)After typing one word, it immediately begins displaying results.
E)The Search contextual tab appears when Instant Search is selected.
Answer:
B, D, and E.
Explanation:
Answer:
B,D,E
Explanation:
Edg 2021 just took test