Answer:
A. Show View
Explanation:
PowerPoint application can be defined as a software application or program designed and developed by Microsoft, to avail users the ability to create various slides containing textual and multimedia informations that can be used during a presentation.
Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.
Basically, the views that are available on the Microsoft PowerPoint application includes;
1. Slide Sorter.
2. Notes Page.
3. Reading Pane.
Hence, show view is not one of the views available in the PowerPoint application.
On what basis computer can be classified into different categories?
Please answer these question and you will get 16 points
Computers are classified into 4 different sizes:
- Mini Computers
- Micro Computers
- Super Computers
- Mainframe Computers
Micro Computers are small computers that are usually called PCs, or personal computers. They complete general purpose tasks and can be from $400 home computers to $15000 workstations. These are the most common types of computers, and most people have them in the forms of desktop computers to laptop computers. Even phones and tablets are considered micro computers because they meet the basic criteria of having local storage, a processor, a graphics coprocessor, and a compatible operating system.
Mini Computers are smaller than Micro Computers and are usually thin clients (which are computers that have a neural connection to a server / mainframe). They are usually employed by businesses becuase they are cheap and they have the processing power to tackle word processing, spreadsheet production, and presentation creation. Mainframe computers are in charge of providing this data at extremely high speeds through cloud networking, or through running an ethernet cable for speeds exceeding 50 GBps.
Super Computers are the fastest computer on the planet, and are usually lined up in rows that take up large rooms. These computers are usually stored like servers: on racks where they link up to other servers in order to quantify large amounts of data at extremely high speeds. These have lots of storage, but since storage isn't their primary use case, it isn't as much as a minframe computer, whose sole purpose is in fact storage and data networking.
Mainframe Computers are servers, and they hold data that is utilized by thin clients and and personnel at a business, or they are used to store massive amounts of data. Servers also act as a checkpoint, espeically networking / internet servers, where if you want to access a website, the website's servers need to access the search request for the specific URL and send you the output (the webpage). Mainframe computers do not have as much processing power as Super Computers, but they provide massive data storage options, which is their main purpose.
Answer:
computers can be classified into 4 types
mainframecomputer
minicomputer
supercomputer
microcomputer
Paraphrase the following passage:
All employee e-mail accounts should be used only for business purposes; use of company e-mail accounts for personal
messages is strictly prohibited. All e-mail is company property and the company reserves the right to access any e-mail sent to
or from any company personal computer. E-mails sent from company e-mail accounts may not contain libelous, slanderous, or
generally offensive content and may not be used to harass any other employee or customer. Employees who violate this policy
are subject to HR discipline up to and including termination, depending on the violation and its consequences.
Answer:
The usage of official e-mail accounts by employees should be strictly restricted to business-related communication only. Personal messages must not be sent through company e-mails. The company owns all e-mail correspondence, and can review any e-mail sent or received on office computers. Any e-mails transmitted through official accounts should not contain any abusive, defamatory, or insulting content, nor should they be used to harass fellow employees or customers. Those violating this policy are liable to HR penalties, which may lead to their termination, depending on the severity and consequences of the offense.
All _______ that store more than one piece of data
Answer:All data structure that store more than one piece of data
.
Explanation:
Plotting in MATLAB
Use the code below to generate 4 arrays in Matlab, x1, y1, x2, y2
Generate 10 random numbers
x1 = 1:10;
y1 = round (100*rand (1, numel (x1)));
Generate interpolated data step= 100;
x2 = 0:1/step: max (x1);
y2 = spline (x1,y1,x2);
Design Goal: Plot both data sets in the same figure
(1) Generate a new figure with a grid
(2) Plot y1 vs x1 in BLUE, with LINEWIDTH 3 (x1 is on the x-axis, y1 is on the y-axis) (3) Plot y2 vs x2 in RED, with LINEWIDTH 2 (x2 is on the x-axis, y2 is on the y-axis) (4) Add a legend: Raw Data, Spline Fit Data
Submit: Submit a copy of your code and the plot AND the list of the ten numbers YOUR copy of Matlab produces that you use in the spline function (meaning, also provide as a list of numbers your y1 array)
The provided MATLAB code generates the required arrays and plot, and it also displays the list of ten random numbers used in the spline function.
Here's the MATLAB code to generate the arrays x1, y1, x2, and y2 as described:
% Generate 10 random numbers
numbers = randi([1, 100], 1, 10);
% Generate x1 and y1
x1 = 1:10;
y1 = round(numbers);
% Generate interpolated data
step = 100;
x2 = 0:1/step:max(x1);
y2 = spline(x1, y1, x2);
% Plotting
figure;
grid on;
hold on;
plot(x1, y1, 'b', 'LineWidth', 3);
plot(x2, y2, 'r', 'LineWidth', 2);
legend('Raw Data', 'Spline Fit Data');
xlabel('x-axis');
ylabel('y-axis');
title('Raw Data and Spline Fit');
% Display the generated numbers used in y1
disp('Numbers used in y1:');
disp(numbers);
Explanation:
The code generates 10 random numbers using the randi function and stores them in the variable numbers.
The arrays x1 and y1 are generated, where x1 contains the values from 1 to 10, and y1 is obtained by rounding the generated random numbers.
The interpolated data is generated by using the spline function with x1, y1, and x2. x2 is created with a step size of 1/step from 0 to the maximum value in x1.
A new figure is created, the grid is turned on, and both data sets are plotted on the same figure. The raw data is plotted in blue with a linewidth of 3, and the spline fit data is plotted in red with a linewidth of 2.
A legend is added to the plot, labeling the two data sets.
x-axis and y-axis labels are added, and a title is given to the plot.
The generated numbers used in y1 are displayed.
To know more about MATLAB code visit :
https://brainly.com/question/31502933
#SPJ11
The number of e-mails that were sent but never reach the intended receiver.
The number of emails that were sent but never reached the intended receiver is known as email bounce.
Email bounces occur when an email message is returned to the sender, either because the recipient's email address is invalid or because the recipient's email server is unable to deliver the message. Bounces can be classified into two types: hard bounces and soft bounces.
Hard bounces occur when the recipient's email address is invalid or does not exist. This can happen when the recipient has changed their email address or when there is a typo in the email address. Hard bounces are permanent and the email message cannot be delivered to the recipient. In this case, the sender may receive a notification that the message was not delivered.
Soft bounces, on the other hand, are temporary and occur when the recipient's email server is unable to deliver the message at the time it was sent. This can happen when the recipient's mailbox is full, when the recipient's email server is down, or when the message is too large. In this case, the sender may receive a notification that the message was delayed or not delivered, and the email server may try to deliver the message again later.
To learn more about Soft bounces, visit:
https://brainly.com/question/30000159
#SPJ11
To collaborate on a project using Pinterest, students can___
You are working as a project manager. One of the web developers regularly creates dynamic pages with a half dozen parameters. Another developer regularly complains that this will harm the project’s search rankings. How would you handle this dispute?
From the planning stage up to the deployment of such initiatives live online, web project managers oversee their creation.They oversee teams that build websites, work with stakeholders to determine the scope of web-based projects, and produce project status report.
What techniques are used to raise search rankings?
If you follow these suggestions, your website will become more search engine optimized and will rank better in search engine results (SEO).Publish Knowledgeable, Useful Content.Update Your Content Frequently.facts about facts.possess a link-worthy website.Use alt tags.Workplace Conflict Resolution Techniques.Talk about it with the other person.Pay more attention to events and behavior than to individuals.Take note of everything.Determine the points of agreement and disagreement.Prioritize the problem areas first.Make a plan to resolve each issue.Put your plan into action and profit from your victory.Project managers are in charge of overseeing the planning, execution, monitoring, control, and closure of projects.They are accountable for the project's overall scope, team and resources, budget, and success or failure at the end of the process.Due to the agility of the Agile methodology, projects are broken into cycles or sprints.This enables development leads to design challenging launches by dividing various project life cycle stages while taking on a significant quantity of additional labor.We can use CSS to change the page's background color each time a user clicks a button.Using JavaScript, we can ask the user for their name, and the website will then dynamically display it.A dynamic list page: This page functions as a menu from which users can access the product pages and presents a list of all your products.It appears as "Collection Name" in your website's Pages section.To learn more about search rankings. refer
https://brainly.com/question/14024902
#SPJ1
Learning Task 5. Identify the terms being described below. Write your answer in your answer
sheet.
1. This refers to the collection, transportation, processing or disposal, managing and
monitoring of waste materials.
2. This refers to the hazard control which involves the measure of replacing one hazardous
agent or work process with less dangerous one.
3. A very important method of controlling hazards which involves proper washing of your hair,
skin, body and even your clothes.
4. This refers to the preparedness for the first and immediate response in case of any type of
emergency.
5. This hazard control refers to the removal of a specific hazard or hazardous work process.
6. What is the term used to call the range of concentration over which a flammable vapor
mixed with air will flash or explode if an ignition is present?
7. A cross-disciplinary area concerned with protecting the safety, health and welfare of people
engaged in work or employment.
8. The term used in hazard control which involves changing a piece of machinery or work
process.
9. The term used to call any piece of equipment which is used to protect the different parts of
the body such as ears and eyes such as respirators, face mask, face shield, gloves, boots,
etcetera.
10. This is a form of hazard control which involves manipulation of worker/employee’s schedule
and job rotation.
Answer:
1. Waste management.
2. Substitution.
3. Personal hygiene practices.
4. Emergency preparedness.
5. Elimination.
6. Flammability limit.
7. Occupational safety and health (OSH).
8. Engineering controls.
9. Personal protective equipment (PPE).
10. Administrative controls.
Explanation:
1. Waste management: this refers to the collection, transportation, processing or disposal, managing and monitoring of waste materials.
2. Substitution: this refers to the hazard control which involves the measure of replacing one hazardous agent or work process with less dangerous one.
3. Personal hygiene practices: a very important method of controlling hazards which involves proper washing of your hair, skin, body and even your clothes.
4. Emergency preparedness: this refers to the preparedness for the first and immediate response in case of any type of emergency.
5. Elimination: this hazard control refers to the removal of a specific hazard or hazardous work process.
6. Flammability limit: is the term used to call the range of concentration over which a flammable vapor mixed with air will flash or explode if an ignition is present.
7. Occupational safety and health (OSH): a cross-disciplinary area concerned with protecting the safety, health and welfare of people engaged in work or employment.
8. Engineering controls: the term used in hazard control which involves changing a piece of machinery or work process.
9. Personal protective equipment (PPE): the term used to call any piece of equipment which is used to protect the different parts of the body such as ears and eyes such as respirators, face mask, face shield, gloves, boots, etcetera.
10. Administrative controls: this is a form of hazard control which involves manipulation of worker/employee’s schedule and job rotation.
eBay uses all of the following business models except:
A) B2C market creator.
B) C2C market creator.
C) content provider.
D) e-commerce infrastructure provider.
eBay does not operate as a content provider.
eBay is an online marketplace that utilizes multiple business models to facilitate transactions. These models include:
B2C market creator: eBay allows businesses to sell their products directly to consumers through its platform. This model enables businesses to reach a wide customer base and sell their products efficiently.C2C market creator: eBay also enables individuals to sell products to other individuals. This model allows individuals to become sellers and connect with potential buyers.content provider: eBay provides various content, such as product descriptions, images, and reviews, to enhance the buying and selling experience. This content helps buyers make informed decisions and sellers effectively showcase their products.e-commerce infrastructure provider: eBay offers a robust e-commerce infrastructure that supports online transactions. It provides features like secure payment processing, listing management, and customer support, making it easier for sellers to conduct business online.However, eBay does not operate as a content provider. While it does provide content related to products, it primarily focuses on facilitating transactions between buyers and sellers rather than generating and distributing content.
Learn more:About eBay here:
https://brainly.com/question/28463142
#SPJ11
The correct option is (C) content provider. eBay uses all of the following business models except: Content Provider.
eBay is a multinational corporation that operates as an online marketplace. The company's primary website, eBay.com, is one of the world's most popular shopping destinations. eBay provides a platform for consumers and businesses to purchase and sell a wide range of goods and services.
The company has been in operation since 1995 and has a presence in over 190 countries worldwide. eBay's business model is primarily focused on creating a marketplace that connects buyers and sellers.B2C (Business-to-Consumer) market creator, C2C (Consumer-to-Consumer) market creator, and e-commerce infrastructure provider are three of eBay's main business models. eBay does not operate as a content provider, which means that "C) content provider" is the correct answer.
A business model is a blueprint for generating revenue and profits. It defines how a company creates, delivers, and captures value. A company's business model is an essential component of its overall strategy and guides how it competes in the marketplace.
Know more about content provider here:
https://brainly.com/question/28424264
#SPJ11
Is this statement true or false? Factual data is always the best data because it is based on facts. true false
Answer:
The statement is true
Explanation:
In order to sell a new product to a store owner, taking the store owner into trust is the most important stage. We must provide proper details and the proofs that our product will make his business more effective. All of the above statements are part of the deal and they can be used to assure the store owner that the product we are selling to him is trustworthy.
Overview Write a program that reads an integer from the user and then prints the Hailstone sequence starting from that number "What is the hailstone sequence?" you might ask. Well, there are two rules: • If n is even, then divide it by 2 • If n is odd, then multiply it by 3 and add 1 Continue this sequence until you hit the number 1.
n=int(input("Enter number: "))
while n != 1:
print(n)
if n%2==0:
n//= 2
else:
n = (n*3)+1
print(n)
I wrote my code in python 3.8. If you want to print the 1, keep the last line of code otherwise delete it.
which type of digital picture can be scaled to any size without losing quality?
Answer:
vector graphics
Are computer science jobs in demand?
Explanation:
Yes. they're because the world has evlolve to be a global village
suppose you are working with the tiny clothes database. write one sql query to find the name and address of everyone who bought pants.
SELECT Name, AddressFROM Customers
JOIN Orders ON Customers.CustomerID = Orders.CustomerIDJOIN OrderItems ON Orders.OrderID = OrderItems.OrderID
JOIN Products ON OrderItems.ProductID = Products.ProductIDWHERE Products.ProductType = 'pants';
The SQL query above retrieves the Name and Address of customers who bought pants from the Tiny Clothes database.
by joining multiple tables: Customers, Orders, OrderItems, and Products. The query links the CustomerID in the Customers table to the CustomerID in the Orders table, then joins the OrderID in Orders with the OrderID in OrderItems, and finally links the ProductID in OrderItems with the ProductID in Products. The WHERE clause filters the results to only include products with the ProductType of 'pants'. This query provides the desired information about customers who pants.
Learn more about SQL here:
https://brainly.com/question/31663284
#SPJ11
Which options are qualities of all good requirements documents?
Consistent
llustrated
verifiable
printed
scholarly
feasible
Your computer uses 4 bits to represent decimal numbers (0, 1, 2, 3 and so on) in binary. What is the SMALLEST number for which an overflow error occur?
A. 14
B. 15
C. 16
D. 17
Answer:d
Explanation:
Using numeric representations in computers, it is found that the smallest number for which an overflow errors occurs is 16, option c.
----------------------
In an unsigned n-bit arithmetic in a computer, the numbers represented are in the following range: From 0 to \(2^{n} - 1\). If a value is greater than \(2^{n} - 1\), an overflow error occurs, as there are not enough bits to represent the number.----------------------
In this question, the computer uses 4 bits, thus \(n = 4\).The largest number that is represented without causing overflow is \(2^n-1 = 2^4 - 1 = 16 - 1 = 15\)Thus, the smallest number which causes overflow is 16, option c.A similar question is found at https://brainly.com/question/18379853
How to delete nodes having greater value on right Java?
An algorithm to remove nodes with a higher value on the right,
Use a loop to repeatedly iterate over each node.In each node. Verify if a node with a higher value is on the node's right side. Delete the current node if you answered "yes," otherwise continue.What is node?Developers can use Node to create JavaScript code that executes within the computer's operating system rather than a browser. As a result, Node may be used to create server-side apps that have access to the operating system, file system, and all other necessary resources to create fully-functional applications. A node is the fundamental building block of a data structure, such as a linked list or tree data structure. Nodes have two functions: they can link to other nodes and store data. Pointers are frequently used to implement connections between nodes. A node is a data structure that houses a value that can be of any data type and holds a pointer to another node.To learn more about node, refer to:
https://brainly.com/question/13992507
To delete nodes having greater value on right in Java, you can traverse the linked list from right to left, and keep track of the maximum value seen so far. If the current node's value is less than the maximum value, delete the current node.
Here is a sample code that implements this logic:
```
public ListNode deleteNodes(ListNode head) {
if (head == null) {
return null;
}
ListNode dummy = new ListNode(-1); // create a dummy node to simplify deletion
dummy.next = head;
ListNode cur = head;
ListNode prev = dummy;
int max = Integer.MIN_VALUE;
while (cur != null) {
if (cur.val < max) {
prev.next = cur.next; // delete the current node
cur = prev.next; // move to the next node
} else {
max = cur.val; // update the maximum value seen so far
prev = cur; // move to the next node
cur = cur.next;
}
}
return dummy.next;
}
```
Note that this code assumes that the linked list contains only positive integers. If the linked list can contain negative integers as well, you should initialize `max` to `Integer.MIN_VALUE` instead of `0`.
Hi! To delete nodes in a Java-linked list with a greater value on the right, you can use the following approach:
1. Iterate through the linked list from the beginning to the end.
2. For each node, compare its value with the maximum value seen so far (initialized to Integer.MIN_VALUE).
3. If the node's value is greater than the maximum value, update the maximum value.
4. If the node's value is less than the maximum value, remove the node from the linked list by updating the previous node's "next" pointer.
Here's a code snippet that demonstrates this approach:
```java
class Node {
int data;
Node next;
}
public void removeNodesWithGreaterValueOnRight(Node head) {
Node prev = null;
Node current = head;
int maxValue = Integer.MIN_VALUE;
while (current != null) {
if (current.data >= maxValue) {
maxValue = current.data;
prev = current;
} else {
prev.next = current.next;
}
current = current.next;
}
}
```
This code defines a `Node` class representing an element in the linked list and a `remove Nodes With Greater Value On Right` function that takes the head of the linked list as an input and removes the nodes with a greater value on the right.
Learn more about Java here:
https://brainly.com/question/29897053
#SPJ11
What system acquisition method has the advantages of helping clarify user requirements for ill-defined problems, verifying the feasibility of the design, promoting genuine user participation and a close working relationship between systems developers and users?.
Prototyping is a system acquisition approach that offers the benefits of clarifying user needs for ill-defined issues, evaluating the feasibility of the design, encouraging true user engagement, and fostering a tight working connection between system developers and users.
What precisely is prototyping?Design teams test their ideas by creating tangible prototypes, which can range from paper to digital.
Teams construct prototypes with varying levels of realism to capture design thoughts and conduct user testing. Using prototypes, you may refine and analyze your ideas, helping your organization to release the right items.
It is a term used in a variety of domains, including semantics, design, electronics, and software development. A prototype is generally used by system analysts and users to evaluate a new design that intends to improve precision.
Learn more about Prototyping:
https://brainly.com/question/28187820
#SPJ1
Which of these would make text on a slide difficult to read?
Ohigh contrast between text and background
Olow contrast between text and background
O a sans serif font
O a large font when the presentation is in a large room
5. Explain one reason why you might experience long response times in getting a Web page from a server in your own city.
One reason why someone might experience long response times in getting a web page from a server in their own city is network congestion.
Network congestion occurs when there are too many users trying to access the same network resources at the same time, resulting in a slowdown or delay in the transmission of data. This can happen due to various reasons, such as a sudden increase in the number of users or devices trying to access the network, outdated network infrastructure, or inadequate bandwidth. In such cases, the traffic needs to be prioritized, and data needs to be transmitted in a queued manner, which can cause significant delays in response times. Furthermore, other factors such as server overload or software/hardware issues could also cause delays in response times even if the server is located in the same city.
To learn more about network click the link below:
brainly.com/question/30208157
#SPJ11
did all of the data in the transferred file fit into this single segment?
A TCP segment is a portion of data that is being sent from one device to another over the Internet, and the answer to whether all the data in the transferred file fits into a single segment depends on the size of the data.
What is TCP segmentTCP stands for Transmission Control Protocol, and it is one of the core protocols used on the Internet. TCP is responsible for ensuring that data is transferred correctly and reliably between devices, and it works by breaking up the data into smaller units known as TCP segments, which are then transmitted over the network.
One of the key features of TCP is its ability to handle data of varying sizes. For small amounts of data, such as a single web page or email message, the data may be small enough to fit into a single TCP segment. However, for larger amounts of data, such as a video file or software application, the data will be split into multiple segments and sent across the network in pieces.
In conclusion, whether all the data in a transferred file fits into a single TCP segment depends on the size of the data. If the data is small enough, it can fit into a single segment. However, for larger data sets, the data will be split into multiple segments to ensure reliable transmission.
To know more about single visit:
https://brainly.com/question/19227029
#SPJ11
I need Help. so i start up my desktop hp computer and log in as normal but when i log in i come to a black screen with the taskbar flashing. i tried dism and sfc but neither worked. i tried to reset my pc but it says an error occured please help.
Answer:
Step 1:
Try to boot into Safe Mode with Networking and perform the Clean Boot.
Press and hold the shift key while clicking on Restart at the login Screen (Bottom right corner).
1. Select Troubleshootand click on Advanced Options.2. Select Startup Settingsand click on Restart.
3. After restarting, choose Enable Safe modewith networking.
If the issue does not persists in Safe Mode, then perform a Clean Boot to check if any third party application is causing the issue, as Clean Boot helps in eliminating software conflicts.
Step 2:
Put the computer in Clean Boot and check if it helps.
By setting your system in Clean Boot state helps in identifying if any third party applications or startup items are causing the issue.
Explanation:
hy does payments constitute such a large fraction of the FinTech industry? (b) Many FinTech firms have succeeded by providing financial services with superior user interfaces than the software provided by incumbents. Why has this strategy worked so well? (c) What factors would you consider when determining whether an area of FinTech is likely to tend towards uncompetitive market structures, such as monopoly or oligopoly?
(a) lengthy and complex processes for making payments (b) legacy systems and complex interfaces (c) regulatory requirements and substantial initial investment, can limit competition
(a) Payments constitute a significant portion of the FinTech industry due to several factors. First, traditional banking systems often involve lengthy and complex processes for making payments, leading to inefficiencies and higher costs. FinTech firms leverage technology and innovative solutions to streamline payment processes, providing faster, more secure, and convenient payment options to individuals and businesses. Additionally, the rise of e-commerce and digital transactions has increased the demand for digital payment solutions, creating a fertile ground for FinTech companies to cater to this growing market. The ability to offer competitive pricing, improved accessibility, and enhanced user experience has further fueled the growth of FinTech payment solutions.
(b) FinTech firms have succeeded by providing financial services with superior user interfaces compared to incumbents for several reasons. Firstly, traditional financial institutions often have legacy systems and complex interfaces that can be challenging for users to navigate. FinTech companies capitalize on this opportunity by designing user-friendly interfaces that are intuitive, visually appealing, and provide a seamless user experience. By prioritizing simplicity, convenience, and accessibility, FinTech firms attract and retain customers who value efficiency and ease of use. Moreover, FinTech companies leverage technological advancements such as mobile applications and digital platforms, allowing users to access financial services anytime, anywhere, further enhancing the user experience.
(c) Several factors contribute to the likelihood of an area of FinTech tending towards uncompetitive market structures such as monopoly or oligopoly. Firstly, high barriers to entry, including regulatory requirements and substantial initial investment, can limit competition, allowing a few dominant players to establish market control. Additionally, network effects play a significant role, where the value of a FinTech service increases as more users adopt it, creating a competitive advantage for early entrants and making it challenging for new players to gain traction. Moreover, data access and control can also contribute to market concentration, as companies with vast amounts of user data can leverage it to improve their services and create barriers for potential competitors. Lastly, the presence of strong brand recognition and customer loyalty towards established FinTech firms can further solidify their market position, making it difficult for new entrants to gain market share.
To learn more about technology click here: brainly.com/question/9171028
#SPJ11
Is this statement true or false?
When copying a pie chart from Calc or Excel to Impress or PowerPoint, once the chart has been pasted, it cannot be edited.
A. true
B. false
C. It depends on what paste option was selected.
True
pls Mark as brainlist
If your earning potential is higher than the cost of your higher education,
you will have a
Loans take for Higher education does have a positive ROI because you are building skills and work experience that can increase your future earnings.
If your earning potential is higher than the cost of your higher education,
you will have a positive return of investment.
The more education is linked with higher lifetime. Based on U.S. Bureau of Labor, college graduates earn an average of 61% more than non-college graduates.The likelihood of earning more income over the course of a lifetime with a college degree is the main factor in considering if or not to pursue a diploma.
The higher income that is gotten from a college degree is known as the "college wage premium."
Learn more from
https://brainly.com/question/21069873
2. Say whether these sentences are True or False. a. Input is the set of instructions given to a computer to change data into information. the form of words numbers, pictures, sounds .it is true or false
Answer:
I think it is false bcz the set of instruction given to computer is program.
offerup how to change the address for a shipped item
You can not change your address after an item has shipped.
A pre-paid shipping label is instantly emailed to a seller when they accept an offer. They simply package the item, label it, and mail it. There's no need to hassle them about getting the right contact information. You can then concentrate on the enjoyable aspect of tracking your order.
What change the address for a shipped item?Every time you submit an offer for a product, as the buyer, you have the option to modify your shipping address. If you're a seller, and you're assessing an offer, you can modify your address.
Offering the easiest and most reliable means of buying and selling, Offer Up protects its sellers through a combination of partnerships, policies, and world-class fraud detection, automation, machine learning, and data models. Teams from Offer Up are working round-the-clock to stop and reduce fraudulent activity.
Therefore, You cannot modify your address for a specific item once your offer has been accepted by the seller and dispatched.
Learn more about item here:
https://brainly.com/question/29664238?
#SPJ2
45 points pls help
_______ refers to achieving synchronization of similar elements in a design.
Explanation:
Harmony is the unity of all the visual elements in a composition. It is often achieved through the use of repetition and simplicity. A principle of design that refers to a way of combining elements in involved ways to achieve intricate and complex relationships.
hope it helps you...
name tow ways to render a program as a single file
Answer:
*two
Explanation: and im not sure but have a great day and good luck on whatever you are doing!
Which 2 tools are useful to remote employees and coworkers.