The rectangular shape in a flowchart is used to show a task or a process to be done to proceed the process further.
What is a flowchart?A flowchart is a diagrammatical representation of a task that is to be conducted and performed in a proper sequence. There are various types of flowcharts shapes, that represent something different for task completion.
The actual purpose of rectangular shape in middle of the flowchart is to instruct the reader or the performer to complete the task or perform the action for the completion of the process.
Learn more about flowchart, here:
https://brainly.com/question/14956301
#SPJ2
The study and practice of information storage and retrieval is called
Ava is at her first job interview, and the interviewer asks her a difficult question she hasn't prepared to answer. What should Ava do?
Helpppp!!!!! im giving Brainliest
Answers: It's A. Or C. sorry that the best i got
Explanation:
Answer:
Take a deep breath and gather her thoughts.
Explanation:
Just took it and got full marks
The process of editing includes which of the following?
(A) Transferring photos to a computer
(B) Combining media
(C) Naming Files
(D) Keeping files secure
5
Type the correct answer in the box Spell all words correctly.
Which kind of devices uses radio waves to transport data?
devices use radio waves to transport data.
Reset
Next
Answer:
RF devices use radio waves to transport data
Explanation:
RF devices are used to refer to equipment in the wireless communication industry that transmit data and sound using radio frequency waves from point to point. Network devices that alternatively transmit data signals over a distance using radio waves and not telephone lines or data cables are known as RF devices.
HELP!!!!!
Match the term and definition. An address that refers to another
location, such as a website, a different slide, or an external file.
Active Cell
Hyperlink
Clipboard
Insertion Point
Answer:
Hyperlink
Explanation:
The contrast ratio of blue 80 text on a yellow-10 background is __ to 1.
80
8
70
4
Answer:
The Answer is 8...
Explanation:
Answer:
8
Explanation:
80/10= 8
The Open Systems Interconnection (OSI) Reference Model: defines standards for many aspects of computing and communications within a network. is a generic description for how computers use multiple layers of protocol rules to communicate across a network. defines standards for wireless local area network (WLAN) communication protocols. details the advantages and disadvantages of various basic network cabling options.
Answer:
is a generic description for how computers use multiple layers of protocol rules to communicate across a network.
Explanation:
OSI model stands for Open Systems Interconnection. The seven layers of OSI model architecture starts from the Hardware Layers (Layers in Hardware Systems) to Software Layers (Layers in Software Systems) and includes the following;
1. Physical Layer.
2. Data link Layer.
3. Network Layer.
4. Transport Layer.
5. Session Layer.
6. Presentation Layer.
7. Application Layer.
Hence, the Open Systems Interconnection (OSI) Reference Model is a generic description for how computers use multiple layers of protocol rules to communicate across a network.
Additionally, each layer has its unique functionality which is responsible for the proper functioning of the communication services.
thick is incorrect does anybody know the correct answer? please don’t send any files i can’t open them
Answer:
i think its new
Explanation:
if this is incorrect i apologize
If you selected row 17 and then selected Insert Sheet Rows, row 17 _____.
a.
is deleted
b.
becomes row 18
c.
becomes row 16
d.
is moved to the top of the worksheet
Answer:
that answer is a and all that is the math
how many colors are in microsoft word?
Answer:
4 Owo
Explanation:
XOXO
Kit
please answer no files !!
Answer:
im not exactly sure but i think its c
Explanation:
At what point of a project does a copy right take effect?
Creation
Publishing
Research
Brainstorming
Describe the difference between the circumscribed and inscribed options when using the AutoCAD Polygon command
Answer: Describe the difference between circumscribed and inscribed options when using the autocad polygon tool. Circumscribed draws the object around the circle while inscribed draws the object inside the circle. The Length is equal to 5.3151 and the Angle is equal to 41 degrees.
Explanation:
Which specialized information system is used by passport agencies and border inspection agencies to check the names
of visa and passport applicants?
Emergency Department Information Systems
Superfund Information Systems
Consular Lookout and Support Systems
Geographic Information Systems
Answer:
Consular Lookup and Support System
URGENT!!! DUE IN 5 MINUTES!!!!!
Why do we need things like sequence, selection, iteration, and variables. Why are they needed in Coding? Why are variables important?
Answer:
Sequencing is the sequential execution of operations, selection is the decision to execute one operation versus another operation (like a fork in the road), and iteration is repeating the same operations a certain number of times or until something is true.
Explanation:
Which titles fits this Venn diagram best?
A Venn diagram with 2 circles. The left circle is titled Title 1 with entries a group of occupations with similar tasks; examples: law enforcement, agriculture, pharmaceuticals. The right circle is titled Title 2 with entries a specific set of responsibilities and tasks performed; examples: waitress, peach farmer, police dispatcher. The middle has entries involve a person's daily work, done to earn money.
Title 1 is “Jobs” and Title 2 is “Careers.”
Title 1 is “Careers” and Title 2 is “Jobs.”
Title 1 is “Self-Employed” and Title 2 is “Company-Employed.”
Title 1 is “Company-Employed” and Title 2 is “Self-Employed.”
Answer:
B. Title 1 is “Careers” and Title 2 is “Jobs.”
Explanation:
edg 22 unit test in career explorations A
3. Output the following:
a.
21%4
Answer:
21 % 4 is 24 modulus 4. The remainder you get when you divide 21 by 4. 21 divided by 4 is 5, remainder 1.
So, 21 % 4 = 1.
An essential field which is central to Artificial Intelligence research is?
Answer:
The appropriate answer is "Due Diligence".
Explanation:
Throughout terms of monitoring an arrangement or a contract, conducting legal analysis, or execute electronic investigation or exploration tasks.Legal software seems to be the amount of precaution or vigilance required just for a particular circumstance and seems to be convenient or time-intensive.Please help
What are keywords?
Keywords are the words and phrases that people type into search engines to find what they're looking for.
data can only be entered maually into a computer true or false
Answer:
True :)
Explanation:
Answer:
True
Explanation:
You can stick a flash drive into a computer but you have to manually transition the files from the flash drive into the computer.
Write a program to find all integer solutions to the equation 4x + 3y -9z = 5 for values of x, y, and z between 0 to 100.
Answer:
Following are the code to the given question:
#include <iostream>//header file
using namespace std;
int main()//main method
{
int c= 0;//defining integer variable to count number of solutions
int x,y,z;//defining integer variable which is used in the loop
for (x = 0; x <= 100; x++)//defining for loop to x value
for (y = 0; y <= 100; y++)//defining for loop to y value
for (z = 0; z <= 100; z++)//defining for loop to z value
if (4 * x + 3 * y - 9 * z == 5)//use if to check given condition
{
c++;//increment count value
cout << "(" << x << "," << y << "," << z << ")";//print solutions
cout << (c % 11? " " : "\n");//use for add file solution in a row
}
cout << "\n\nThere are " << c << " solution(s)\n";//print solution couts
return 0;
}
Output:
Please find the attached file.
Explanation:
In the above-given code four integer variable "x,y,z, and c" is declared, in which "x,y, and z" is used in the for loop with the if conditional statement that checks the given condition and prints the solution and the "c" variable is used to counts the number of solution, and at the last, it uses the print method to print its values.
Choose the words that complete the sentences.
A_______
is used to edit raster images.
A_______
is used to edit vector images.
A_______
is used to control a scanner or digital camera.
Answer:
A paint application
is used to edit raster images.
A drawing application
is used to edit vector images.
A digitizing application
is used to control a scanner or digital camera.
Explanation:
got it right on edg
Which type of testing is used to test how well the system will perform with a workload?
Integration testing
performance testing
unit testing
acceptance testing
Answer:
Performance Testing
Explanation:
The Correct option is - Performance Testing
Reason -
INTEGRATION TESTING is a level of software testing where individual units / components are combined and tested as a group. The purpose of this level of testing is to expose faults in the interaction between integrated units.
PERFORMANCE TESTING is a testing measure that evaluates the speed, responsiveness and stability of a computer, network, software program or device under a workload.
UNIT TESTING is a type of software testing where individual units or components of a software are tested. The purpose is to validate that each unit of the software code performs as expected.
Acceptance testing, a testing technique performed to determine whether or not the software system has met the requirement specifications.
Give two benifets to the supermarket maneger and two benifets of customers of using barcods on all items
Answer:
The benefit of barcodes on items for the manager and the customers are as follow-
Explanation:
Benefits of using bar codes on all items to the manger are as follow -
The process of customer dealing increases by quickly scanning the item, rather than manually noting down the details.The track record of all the items can be maintained properly.Benefits of using bar codes on all items to the customers are as follow -
The time period to purchase any item increases, hence the customer can shop for many items in short span of time.The chances of any mistake gets reduced, as everything is done digitally.Select the correct text in the passage.
Select the appropriate guidelines to create and manage files in the passage given below. (In parentheses)
Guidelines for organizing files and folders
First, (select a central location to organize all your files, folders, and sub-folders).
Then double-click the folder or folders to identify which file you want to move. Now (use Windows Explorer to navigate and paste the file in the
required location).
Effective file management helps reduce the stress of looking for files and saves you a lot of time. All file types have unique file extensions that helpyou (determine which program to use to open a particular file and to access its data.)
If your computer crashes, all files and folders on the desktop are lost and it is often impossible to recover them. You should (maintain your
personal and professional files separately.) The file system on your computer already (keeps track of the date the file was created and modified,)
Therefore, chronological sorting is not necessary.
It is a great idea to (categorize your data into folders.) It is even better to (segregate them further into sub-folders.) If you maintain a list of
sub-folders under every main folder, you will be able to access all your tasks easily. For example, you could put your school subjects under
different sub-folders to organize your data efficiently on your computer.
Any file you create and use should have a proper description. It is important to create accurate names for each file, especially if you have a large
number of files in a folder, and you need to (select a single file to work on.)
Answer:
The appropriate guidelines to create and manage files in the passage:
O. First, (select a central location to organize all your files, folders, and sub-folders).
O. Then double-click the folder or folders to identify which file you want to move.
O. Now (use Windows Explorer to navigate and paste the file in the
required location).
The correct text in the passage is:
O. It is a great idea to (categorize your data into folders.) It is even better to (segregate them further into sub-folders.) If you maintain a list of sub-folders under every main folder, you will be able to access all your tasks easily. For example, you could put your school subjects under different sub-folders to organize your data efficiently on your computer.
Explanation:
Answer:
Behold.
Explanation:
so this is what i use to code and all of that
Answer: yeah!
Explanation:
Have a good day!
What are 3 tools you would use to make the spreadsheet look nicer? Explain what
it does and how you would use.
Answer:
Add-Ons, Add-Ins and use Excel
Explanation:
Add-Ons, Add-Ins and Excel use to make the spreadsheet look nicer, the spreadsheet uses these tools to enhance work speed.
Spreadsheet and tools:In just a few clicks, you can add reports, statistics, data analysis, and even emailing schedule tools to your spreadsheets using the Sheets Add-ons Gallery.
An add-in is a piece of software that extends the functionality of Microsoft Excel. Add-ons let you save time.
Workbooks are the name given to Excel documents. Sheets, often known as spreadsheets, are included in each workbook.
Find out more information about 'Spreadsheet'.
https://brainly.com/question/26079895?referrer=searchResults
image
Determine the value of x in the figure.
Question 1 options:
A)
x = 135
B)
x = 90
C)
x = 45
D)
x = 85
Answer:
B. x = 90
Explanation:
180 = 135 + yy = 4545 + 45 = 90the corner above 135 is 45 so the other side that isnt x is also 45, leaving a total of 90 degrees left, making x 90 degrees
x=90°
PLEASE HELP IM GIVING BRAINLIEST!!
Create properly formatted works cited page for a research paper about the dangers of cell phone use on the road. Follow the MLA citation format, and make sure to correctly italicize each citation. For the purpose of this activity, it is not necessary to observe the MLA rules for indentation. Use the six sources provided to support the research paper.
Answer:
Cell phone use causes traffic crashes because a driver's cognitive performance significantly decreases when they are using a cell phone. Texting is also dangerous because the driver is taking their eyes away from the road and their hands away from the wheel. Driving demands a high level of concentration and attention.
Explanation:
PLz brainlyest
What legal protection would cover a person invention?
Plagiarism
A trademark
A copy right
A patent
Answer:
Option 4, A patent
According to Wikipedia, a patent is defined as, "A title that gives its owner the legal right to exclude others from making, using, or selling an invention for a limited period of years in exchange for publishing an enabling public disclosure of the invention."