Answer:
surveys and questionnaires
Answer:
Survey
Explanation:
A collection of programs which make computer work:--------
This collection of programs, named the operating system, is as important to the process of a computer system as its hardware.
What is a collection of programs known as?A collection of program that governs how your computer system runs and processes information is called Compiler. Computer network A group of. computing devices that are connected in. different ways in order to communicate and. share resources.The another term for computer programs is software system, software program, software package, software, Computer Software, packageWhat is the extensive collection of computer called?
A network is a collection of computers or others types of hardware, which is joined by communication channels that allow sharing of resources and information.
To learn more about operating system, refer
https://brainly.com/question/22811693
#SPJ9
Hospitality choices declined with the introduction of jet airline service. true or flase
Answer:
true
Explanation:
The variable "num" holds an integer user input
Write a conditional statement that does the following:
If num is positive, print "__ is positive"
If num is negative, print "__ is negative"
Answer:
import java.util.*;
class Main {
public static void main(String[] args) {
Scanner inp = new Scanner(System.in);
System.out.print("In");
int num = inp.nextInt();
if(num>0) {
System.out.println(num + "is positive");
}
else if(num < 0) {
System.out.println.(num+ "is negative");
}
}
}
9. Which of the following is the
leading use of computer?
Complete Question:
What is the leading use of computers?
Group of answer choices.
a. web surfing.
b. email, texting, and social networking.
c. e-shopping.
d. word processing.
e. management of finances.
Answer:
b. email, texting, and social networking.
Explanation:
Communication can be defined as a process which typically involves the transfer of information from one person (sender) to another (recipient), through the use of semiotics, symbols and signs that are mutually understood by both parties. One of the most widely used communication channel or medium is an e-mail (electronic mail).
An e-mail is an acronym for electronic mail and it is a software application or program designed to let users send texts and multimedia messages over the internet.
Also, social media platforms (social network) serves as an effective communication channel for the dissemination of information in real-time from one person to another person within or in a different location. Both email and social networking involves texting and are mainly done on computer.
Hence, the leading use of computer is email, texting, and social networking.
Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies. Ex: If the input is: 0 or less, the output is: no change Ex: If the input is: 45 the output is: 1 quarter 2 dimes
Answer:.
// Program is written in C++.
// Comments are used for explanatory purposes
// Program starts here..
#include<iostream>
using namespace std;
int main()
{
// Declare Variables
int amount, dollar, quarter, dime, nickel, penny;
// Prompt user for input
cout<<"Amount: ";
cin>>amount;
// Check if input is less than 1
if(amount<=0)
{
cout<<"No Change";
}
else
{
// Convert amount to various coins
dollar = amount/100;
amount = amount%100;
quarter = amount/25;
amount = amount%25;
dime = amount/10;
amount = amount%10;
nickel = amount/5;
penny = amount%5;
// Print results
if(dollar>=1)
{
if(dollar == 1)
{
cout<<dollar<<" dollar\n";
}
else
{
cout<<dollar<<" dollars\n";
}
}
if(quarter>=1)
{
if(quarter== 1)
{
cout<<quarter<<" quarter\n";
}
else
{
cout<<quarter<<" quarters\n";
}
}
if(dime>=1)
{
if(dime == 1)
{
cout<<dime<<" dime\n";
}
else
{
cout<<dime<<" dimes\n";
}
}
if(nickel>=1)
{
if(nickel == 1)
{
cout<<nickel<<" nickel\n";
}
else
{
cout<<nickel<<" nickels\n";
}
}
if(penny>=1)
{
if(penny == 1)
{
cout<<penny<<" penny\n";
}
else
{
cout<<penny<<" pennies\n";
}
}
}
return 0;
}
ov. 1 Dollar Store purchases merchandise for $1,400 on terms of 2/5, n/30, FOB shipping point, invoice dated November 1. 5 Dollar Store pays cash for the November 1 purchase. 7 Dollar Store discovers and returns $150 of defective merchandise purchased on November 1, and paid for on November 5, for a cash refund. 10 Dollar Store pays $70 cash for transportation costs for the November 1 purchase. 13 Dollar Store sells merchandise for $1,512 with terms n/30. The cost of the merchandise is $756. 16 Merchandise is returned to the Dollar Store from the November 13 transaction. The returned items are priced at $260 and cost $130; the items were not damaged and were returned to inventory. Journalize the above merchandising transactions for the Dollar Store assuming it uses a perpetual inventory system and the gross method.
On November 1, Dollar Store purchased $1,400 of merchandise with terms 2/5, n/30, FOB shipping point. On November 7, $150 of defective merchandise was returned for a cash refund. On November 10, Dollar Store paid $70 for transportation costs. On November 13, Dollar Store sold merchandise for $1,512 with terms n/30, and on November 16, returned $260 of merchandise that was not damaged and returned to inventory. Journal entries are required.
As per the given scenario, on November 1, Dollar Store purchased merchandise worth $1,400 on terms of 2/5, n/30, FOB shipping point.
On November 5, the store paid cash for the purchase.
On November 7, defective merchandise worth $150 was returned for a cash refund.
On November 10, the store paid $70 cash for transportation costs related to the November 1 purchase.
On November 13, Dollar Store sold merchandise worth $1,512 with terms n/30, and the cost of goods sold was $756.
On November 16, $260 of merchandise was returned to the store, which was not damaged and returned to inventory.
The journal entries for these transactions would be:
Nov. 5: Merchandise Inventory $1,400
Accounts Payable $1,400
Nov. 7: Accounts Payable $150
Merchandise Inventory $150
Nov. 10: Merchandise Inventory $70
Cash $70
Nov. 13: Accounts Receivable $1,512
Sales $1,512
Cost of Goods Sold $756
Merchandise Inventory $756
Nov. 16: Accounts Receivable $260
Sales Returns and Allowances $260
Merchandise Inventory $130
Cost of Goods Sold $130
In summary, these transactions involve purchases, sales, returns, and allowances, and are recorded in the respective accounts in the perpetual inventory system using the gross method.
For more such questions on Merchandise:
https://brainly.com/question/27773395
#SPJ11
what is the role of product management in agile safe
Product management plays a crucial role in Agile SAFe (Scaled Agile Framework) by defining desirable, viable, feasible, and sustainable solutions that meet customer needs and supporting development across the product life cycle.
In an Agile SAFe environment, product management acts as the bridge between the customer and the development teams. They are responsible for understanding customer needs, gathering feedback, and translating those needs into actionable requirements.
By collaborating with stakeholders, product management ensures that the product vision aligns with customer expectations.
To define desirable solutions, product management conducts market research, user interviews, and analyzes customer feedback. They identify market trends, user pain points, and prioritize features accordingly.
They work closely with customers to gather insights and validate product ideas through iterative feedback loops.
Viable solutions are determined by evaluating market demand, competitive landscape, and business objectives. Product management considers factors like revenue potential, market share, and return on investment to ensure the product is financially sustainable.
Feasible solutions require close collaboration with development teams. Product management works with engineering, design, and other teams to assess technical feasibility, define scope, and establish delivery timelines.
They engage in Agile ceremonies such as sprint planning, backlog refinement, and daily stand-ups to facilitate efficient development.
Sustainable solutions are designed with long-term success in mind. Product management focuses on creating scalable, adaptable products that can evolve with changing customer needs and market dynamics. They continuously monitor and analyze product performance, customer feedback, and market trends to make informed decisions and drive iterative improvements.
In summary, product management in Agile SAFe is responsible for understanding customer needs, defining desirable and viable solutions, ensuring technical feasibility, and supporting development teams throughout the product life cycle to deliver sustainable products that meet customer expectations.
For more such questions Product,click on
https://brainly.com/question/28776010
#SPJ8
Dan notices that his camera does not capture pictures correctly. It appears that less light is entering the camera. Which component of the camera could be responsible for the problem?
In order to make burger a chef needs at least the following ingredients: • 1 piece of chicken meat • 3 lettuce leaves • 6 tomato slices Write down a formula to figure out how many burgers can be made. Get values of chicken meat, lettuce leaves and tomato slices from user. Hint: use Python’s built-in function
Answer:
how many burgers would you have to make ?
Explanation:
this is a question ot an answer
Upload your completed Lesson 8 Simulation here. 8.Organizing Content in Tables
Tables are an effective way to organize and present information in a structured and easy-to-read format.
How to explain the tableHere are some tips on how to effectively organize content in tables:
Determine the purpose of the table: Before creating a table, identify the purpose and the message you want to convey. Determine what kind of information you want to include in the table and how it can be best presented.
Use clear and concise headings: Use headings that are brief and clearly describe the content in each column or row. Headings help the reader to quickly identify the content and understand the structure of the table.
Keep the table simple and easy to read: Avoid using too many colors, borders, and font styles. Keep the table clean and simple, with clear lines and easy-to-read fonts.
Use consistent formatting: Ensure that the table formatting is consistent throughout the document. Use the same font size, style, and color for all the tables.
Group similar items together: Organize the table by grouping similar items together. This makes it easier for the reader to compare and analyze the information.
Use appropriate units of measure: Use appropriate units of measure for the data presented in the table. For example, use dollars for financial data, and use percentages for statistical data.
Use appropriate table type: Choose the appropriate table type to present the data. There are various types of tables such as comparison tables, frequency tables, and contingency tables, among others. Choose the type that best suits your data.
Consider accessibility: Ensure that the table is accessible to everyone, including those with visual impairments. Use alt text to describe the content of the table, and ensure that the table is navigable with a screen reader.
By following these tips, you can create effective and easy-to-read tables that convey the message you want to share with your readers.
Learn more about tables on;
https://brainly.com/question/28768000
#SPJ1
what is the name of the program or service that lets you view e -mail messeges?
The program or service that allows you to view email messages is called an email client.
What is the name of the program?An email client is a software program or service that enables users to access, manage and view their email messages. It provides user-friendly interface for reading, composing and organizing emails.
Popular examples of email clients include Micro/soft Outlook, Gm/ail, Mo/zilla Thunderbird and Ap/ple Mail. These clients allow users to connect to their email accounts, retrieve messages from email servers and display them in an organized manner for easy viewing and interaction.
Read more about email client
brainly.com/question/24688558
#SPJ1
Question 3 of 5.
Which of the following option(s) explain the need for ETL?
O ETL provides a method of moving the data from various sources into a data warehouse.
ETL is a predefined process for accessing and manipulating source data into the target database.
Allow verification of data transformation, aggregation and calculations rules.
O All of the above
The correct option is "All of the above".
ETL simply means “extract, transform, and load.” ETL is a vital process in the strategies of data integration.
ETL also allows for verification of data transformation, aggregation and calculations rules.
Furthermore, ETL enables companies to be able to gather data from different sources and then consolidate the data hats gathered into a single and centralized location.
ETL also allows different types of data to be able to work together.
In conclusion, based on the information given above, the answer will be All of the above.
Read related link on:
https://brainly.com/question/13333461
h) Choose suitable devices for each of the following applications. In each case, give a reasons for your choice. (i) A report 'in the field' sending data back immediately to head office. (ii) A person wishing to monitor their health/exercises while 'on the go' wherever they are.
(i) For sending a report 'in the field' back to the head office, a suitable device would be a smartphone or a tablet with internet connectivity.
(ii) For monitoring health/exercises while on the go, a suitable device would be a wearable fitness tracker or a smartwatch.
What is the smartphone?To send a report from the field, use a smartphone or tablet with internet connectivity. Smart devices are portable, lightweight, and have communication capabilities. They can run apps and access email or cloud storage.
Wearable devices monitor health and fitness data. Devices track steps, distance, calories, heart rate, sleep, and offer exercise coaching. They sync wirelessly with smartphones for accessing data analysis, setting goals, and receiving notifications.
Learn more about smartphone from
https://brainly.com/question/25207559
#SPJ1
who is known as father of computer
Charles Babbage KH FRS was an English polymath. A mathematician, philosopher, inventor and mechanical engineer, Babbage originated the concept of a digital programmable computer. Babbage is considered by some to be "father of the computer"
Which of the following choices BEST explains the purpose of developing a research plan?
A.
Research plans are ONLY used by teachers to plan their daily classroom activities.
B.
Research plans are ONLY used by experts who have to write articles for scholarly journals in various fields.
C.
Research plans are used by any person who is critically evaluating a topic; since research papers involve multiple stages and multiple sources, the writer uses the plan for time management.
D.
A research plan is the term to describe the research paper and the bibliography.
Please select the best answer from the choices provided
A
B
C
D
Answer:
C
Explanation:
Because the research is for everybody
xamine the following output:
Reply from 64.78.193.84: bytes=32 time=86ms TTL=115
Reply from 64.78.193.84: bytes=32 time=43ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=47ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=73ms TTL=115
Reply from 64.78.193.84: bytes=32 time=46ms TTL=115
Which of the following utilities produced this output?
The output provided appears to be from the "ping" utility.
How is this so?Ping is a network diagnostic tool used to test the connectivity between two network devices,typically using the Internet Control Message Protocol (ICMP).
In this case, the output shows the successful replies received from the IP address 64.78.193.84,along with the response time and time-to-live (TTL) value.
Ping is commonly used to troubleshoot network connectivity issues and measureround-trip times to a specific destination.
Learn more about utilities at:
https://brainly.com/question/30049978
#SPJ1
If I am designing an application, which code to I input to create a link
Answer:
\({ \tt{ < a \: href = url > < a > }}\)
The last must be a closing tag
check image dont answer if you dont know please
Answer:
Explanation:
1-2nd option
2-1st option
3-last option
hope this helps!! have a good rest of ur day!! <3
Digital ethics define clear right and wrong answers to dilemmas faced by technology users. a. True b. False
The statement that digital ethics define clear right and wrong answers to dilemmas faced by technology users is true.
According to this question, digital ethics is been explained as as one which define clear right and wrong answers to dilemmas faced by technology users.
As a result of this we can say that digital ethics stressed about the rules, that should be followed by user in having best experience.
Therefore, Digital ethics define clear right and wrong answers to dilemmas faced by technology users.
Learn more about Digital ethics at:
https://brainly.com/question/7647511
What is the difference between a Is your Milling machine and grinding machine
Answer:
one is used for milling and one is used for grinding
Explanation:
Which actions show the characteristics of a static website? (sentences with the * before and after them are the choices)
Ben created a website. He *chose bold font for the heading* of a web page. He *used a light-colored background.* On the Contact Us page, he *inserted a form* where you could *post a query.* He also posted links to external websites on another page in the website. On clicking these links, the user would be *directed to the external website*
The action that show the characteristics of a static website is that;
He *chose bold font for the heading* of a web page. He *used a light-colored background.What are the characteristics of a static website?A Static Website is known to be a term that is also called a flat or stationary page.
This is known to be a web that is displayed in a web browser in the same way as it is stored. It is made up of web pages that has fixed content coded in HTML and saved on a web server.
Learn more about static website from
https://brainly.com/question/1538272
The ______________ shows that you have fully researched the topic and gives you a chance to prove your claim.
a
Conclusion
b
Introduction
c
Counterclaim
d
Topic Sentence
Question 9 (5 points)
Answer:
D. Topic Sentence
Explanation:
A trace table is used for
Answer:
Trace tables are used to allow programmers to trace the value of variables as each line of code is executed.
Explanation:
The values of the variables are displayed in a table and assist the programmer in identifying any potential errors.
Answer:
Trace tables can enable a programmer to trace the values of variables as each line is executed/processed/ran through the program. And yes, can aid programmers to identify potential errors in the code.
Explanation:
What are the challenges associated with not being ‘tech savvy’ in 2023?
In 2023, not being 'tech-savvy' can present several challenges due to the increasing reliance on technology in various aspects of life.
Some challenges associated with not being tech-savvyDigital Communication: Communication has largely shifted to digital platforms, such as email, messaging apps, and video conferencing. Not being tech-savvy can make it difficult to effectively communicate and connect with others, especially in professional settings where digital communication is prevalent.
Online Information and Resources: The internet is a primary source of information and resources for various purposes, including education, research, and everyday tasks. Not being tech-savvy may hinder the ability to navigate and access online information, limiting opportunities for learning, decision-making, and staying informed.
Digital Skills Gap: Many job roles and industries now require basic digital skills. Not being tech-savvy can create a skills gap, making it challenging to find employment or succeed in the workplace. Basic skills such as using productivity software, digital collaboration tools, and online research are increasingly expected in many job positions.
Learn more about tech savvy at
https://brainly.com/question/30419998
#SPJ1
If there is more than one speaker, how should they be all noted?
a.) Speaker X: and the editor will correct it.
b.) Speaker 1, Speaker 2, eat cetera.
c.) Speaker 1, Speaker 2, et cetera. if you can distinguish a speaker’s role in the conversation, you should make it as descriptive as possible.
Answer:
I think is C but I'm not completely sure
Write a function named multi that takes in three integers, multiplies them, and then returns a statement showing the three numbers that were multiplied and then the result in the following format:
I wrote my code in python 3.8.
Need to use Python to create the below function;
''' This function takes as input two lists of same length. It outputs net correlation value between these two lists. To compute correlation between two lists:
1. Compute the average of each list
2. Subtract a list's average from every element in the list (repeat for both lists)
3. Multiply corresponding differences from each list to compute the element-wise correlation
4. Sum all the values from step 3 to compute the net correlation value
Example: [-10,0,10,20],[20,10,10,20] -> 0
def compute_net_correlation(self,data_series_1,data_series_2):
''' #### FILL IN CODE HERE ####
net_correlation = # fill in computation
return net_correlation
Answer:
The function is as follows:
def compute_net_correlation(data_series_1,data_series_2):
series1 = 0; series2 = 0
for i in range(len(data_series_1)):
series1+=data_series_1[i]
series2+=data_series_2[i]
avg_series1 =series1/len(data_series_1)
avg_series2 =series2/len(data_series_1)
for i in range(len(data_series_1)):
data_series_1[i]-=avg_series1
data_series_2[i]-=avg_series2
data_series_1[i]*=data_series_2[i]
net_correlation = 0
for i in range(len(data_series_1)):
net_correlation +=data_series_1[i]
return net_correlation
Explanation:
This defines the function
def compute_net_correlation(data_series_1,data_series_2):
This initializes the sum of each series to 0
series1 = 0; series2 = 0
This iterates through each data series
for i in range(len(data_series_1)):
This adds series 1
series1+=data_series_1[i]
This adds series s
series2+=data_series_2[i]
This calculates the average of data series 1
avg_series1 =series1/len(data_series_1)
This calculates the average of data series 2
avg_series2 =series2/len(data_series_1)
This iterates through each data series
for i in range(len(data_series_1)):
This subtracts the average from series 1
data_series_1[i]-=avg_series1
This subtracts the average from series 2
data_series_2[i]-=avg_series2
This multiplies the corresponding elements of both series
data_series_1[i]*=data_series_2[i]
This initializes the net correlation to 0
net_correlation = 0
This iterates through each data series
for i in range(len(data_series_1)):
This adds up the corresponding elements of both series
net_correlation +=data_series_1[i]
This returns the net correlation
return net_correlation
phanteks (ph-p1000gc) revolt pro series, 80plus gold, fully modular, patented power combo technology, 1000w atx power supply review
Power combo technology with a 1000w atx power supply, 670 Review of all high grade construction.
Is Phanteks a reliable brand of PSU?A potent yet effective PSU is the Phanteks AMP 1000W White Edition. It received an 80 Plus Gold rating because it is 92% efficient at half load.
How effective is Phanteks?When it comes to mainstream ATX chassis, the Phanteks Eclipse G360A stands out because it offers good airflow and RGB. It has some design flaws, but for $100 and with three aRGB PWM fans that help deliver excellent thermal performance, it's a fantastic chassis for builders on a budget.
To know more about technology visit:-
https://brainly.com/question/9171028
#SPJ4
Select the correct answer.
Lavinia wants to use a protocol for sharing files on a computer network. Which protocol is designed for that purpose?
A. DHCP
B. DNS
C. FTP
D. HTTP
Answer:
C. FTP
Explanation:
FTP is a network protocol for transmitting files between computers.
ill try to post the program needed in comments
This assignment will use Practical Assignment-7 as a foundation. Modify the .py resulted fron Practical Assignment 7 to meet the following requirements:
- If the file name that the user inputs does not exist in the folder, the user should be asked to try again two times. If the input file is still missing after the third attempt, the program should exit with a message;
- Automatically delete the original file after the encryption is done; use the option where the deleted file is not recoverable;
- For the option requiring a password to encrypt and decrypt, if the decryption password is wrong, the user should be asked to try again two times. If the password is still wrong after the third attempt, the program should exit with a message;
Answer:
Explanation:
what program do we use for ths