Answer:
Creating charts or graphs
Bringing data together
Storing Financial data
Explanation:
Excel is great at creating charts and graphs
Also good at compiling data
You wouldn't necessarily want to type an essay in excel, so not for writing an essay
You cannot schedule appointments through excel, although I guess if you really wanted to you could organize them in excel
Excel is fine for storing financial data, you can even manipulate it in the program
You cannot draw conclusions using excel directly, although you can organize data in such a way using excel that it makes it easy to identify trends and such for you to draw your conclusions
Answer: A B E F
Explanation:
If your company increases its market penetration, what is happening?
A.
The target market is growing.
B.
More people in the target market are buying the company's product.
C.
The market saturation of the target market has decreased.
D.
Competitors who offer similar products are entering the market.
D.
Your company collects credit card information from customers.
Answer: (A, B, E)
A. ) The target market is growing.
B. ) More people in the target market are buying the company's product.
E. ) Your company collects credit card information from customers.
Explanation: Simply what was on the assignment. Correct on Edge.
I hope this helped!
Good luck <3
Answer:
a,b,e like the top one said
Explanation:
this is late but thats okay
When a recipient responds to a meeting request, which statement most accurate descries what occurs?
O The meeting is confirmed, and the time is shown as Busy on the recipient's calendar.
O The meeting is confirmed, and the time is shown as Free on the recipient's calendar.
O The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on
the recipient's calendar.
O Nothing occurs because a recipient does not need to respond to a meeting request.
Answer:
I believe the answer is: O Nothing occurs because a recipient does not need to respond to a meeting request.
Explanation:
Well, it's true. I've got a response from a meeting request and it was irrelevant, so nothing would be happening.
Sorry for the delayed response, hope this helps :)
The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.
What happens when one can request for meeting on Microsoft Outlook?Upon acceptance of a meeting request on Microsoft Outlook, the schedule is added to your calendar, and the time period is displayed as busy, while the email invite is deleted from your email.
The following steps are required when it is desired to retain meeting requests and store them within the email or a subfolder for future references
1) Click on the Tools menu
2) Click on Options in the Tools Menu
3) Click E-mail Options in the Options menu
4) Click on Advanced E-mail Options and
5) Uncheck the Delete meeting request from Inbox when responding.
The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Nothing occurs because a recipient does not need to respond to a meeting request.
Therefore, The meeting request is removed from the inbox, the meeting is confirmed, and the time is shown as Busy on the recipient's calendar. Thus, option C is correct.
Learn more about meeting request on:
https://brainly.com/question/2931702
#SPJ6
How many of the colonists of Jamestown died before they made it to shore, due to the difficult voyage?
half
almost all
one third
nonE
A program that doesn’t work properly needs to be debugged. true or false
Answer:
the answer is most likely True,
Explanation:
Make a presentation on ms word
Answer:
presentation on what????
Plz I’ll mark Brainliest
When programming, why should you frequently save your work?
O
to check for errors
O so your work won't get lost if you have a computer problem
O to distinguish your
project from other projects
O to keep your categories separated logically
I’m leaning toward B.
Answer:
It's B cuz if somehow the power went off your work won't be saved. So it's best to save your work frequently.
What would this look like if you were to write the pseudocode but for c++?
Answer:
when make a task list you would not include commands that are for any specific language like C++
Explanation:
pseudocode should be universal. So when creating the task list, you would not include commands that are for any specific language like C++, java, C#, or perl. The point of pseudocode is to design a program that can be translated in to any language.
Using database software, you can?
a. Add, change and delete data;
b. Sort and retrieve data;
c. Create forms and report;
d. All of the above.
Answer:
d
Explanation:
Blair is the director of information systems at a marketing firm. She creates a set of guidelines that dictate everything an employee must do on his or her computer before leaving for the evening. This situation relates to which of the following components of information system security?
A. Software
B. Data
C. People
D. Procedures
Answer:
data
Explanation:
Because i said so
A student entering high school is pursuing STEM education. What can you infer about this student?
Answer: according to my calculations, we can infer that the student is pursuing a STEM education
Explanation:
Answer:
he likes Science, technology, engineering, and mathematics
Explanation: beacause it makes sense
1byte= ________ bits
1 nibble= __________ bits
1 MB= _________ bits
1PB= ____________ TB
1 ZB= ___________ EB
Explanation:
1 byte=8bits
1 nibble = 4bits
1MB= 8000000bits
1PB= 1000TB
1ZB= 1000000000000EB
1. Select the Volatile Memory *
RAM
ROM
Secondary Memory
2. A Malware is a *
program that enables the computer to run faster.
software in a computer that fights against VIRUS.
Harmful software to the computer
3. The full form of LAN is *
Locally Area Network
Local Area Network
Local Area Networking
4. The smallest Unit of data is called as *
Bit
Byte
Megabyte
5. The permanent memory built in your computer is *
Monitor
ROM
RAM
6. Which one of the following is a VIRUS *
Morris Malware
ILOVEYOU Malware
Mellisa malware
7. Which of the following storage devices are found inside the computer? *
Hard disk drive
SSS Drive
Magnetic Tape
8. The full form of ROM is *
Read Only Memory
Reading Only Memory
Read On Memory
9. Choose the Highest Unit of Data from the following. *
Megabyte
Gigabyte
Answer:
1 no.
ram
2
harmful software to the computer
3
local area network
4
bit
5
ram
6
morris malware
7
hard disk drive
8
read only memory9
gigabyte
hope this will help u
WILL GIVE BRAINLIEST!!!!!!!
In a series circuit, electricity flows along more than one path.
True
False
Compared with other PC operating systems, the
Apple OS:
A. is less secure
B. has fewer available applications
C. is typically only available on Apple hardware.
D. costs much less.
Answer:
C. Is typically only available on Apple hardware.
Explanation:
Answer:
c
Explanation:
Write a couple of paragraphs about the usefulness of computer
Answer:
computer is an electronic device
Explanation:
computer have many advantages like
it help us to find answer questions
it helps us to employing
it gives some knowledge like how to play games
it help me to talk with friends
Write a program that: Takes the list lotsOfNumbers and uses a loop to find the sum of all of the odd numbers in the list (hint: use Mod). Displays the sum.
Answer:
Following are the code to this question:
#include <iostream>//defining header file
using namespace std;
int main()//defining main method
{
int x[]={2,3,4,6,7,8,9,1,11,12};//defining 1-D array and assign value
int i,sum=0;//defining integer variable
for(i=0;i<10;i++)//defining loop for count value
{
if(x[i]%2==1)//defining if block to check odd value
{
sum=sum+x[i];//add value in sum variable
}
}
cout<<sum;//print sum
return 0;
}
Output:
31
Explanation:
In the above-given program, an integer array "x" is declared that holds some integer values, and in the next line two integer variable "i and sum" is defined which is used to calculate the value.
In the next line, a for loop is declared, that counts all array value, and it uses the if block to check the odd value and add all the value into the sum variable.
The code is in Java.
It uses for loop, if-else structure, and mod to calculate the sum of odd numbers in a list.
Comments are used to explain each line of code.
You may see the output in the attachment.
//Main.java
import java.util.*;
public class Main
{
public static void main(String[] args) {
//create a list with some numbers
List<Integer> lotsOfNumbers = Arrays.asList(7, 20, 1002, 55, 406, 99);
//initialize the sum as 0
int sumOfOdds = 0;
//create a for each loop to iterate over the lotsOfNumbers list
//check each number, if it is odd or not using the mod
//if it is odd, add the number to the sum (cumulative sum)
for (int number : lotsOfNumbers){
if(number % 2 == 1)
sumOfOdds += number;
}
//print the sum
System.out.println("The sum of odd numbers: " + sumOfOdds);
}
}
You may check out another question at:
https://brainly.com/question/24914609
What is the best yellow thing you can think of? (I need this for a presentation to turn it black and white.) Please no lemons.
Answer:
Pineapple some types of apples, yellow roses
Explanation:
Use the drop-down menus to complete statements that describe SmartArt categories.
Information that does not need to be shown sequentially can be displayed as a_
A _shows a continuous process.
The way various elements in a system interconnect can be shown as a_
A _ displays different elements according to importance or size.
i did this because we don't have a lot of answers for computer classes I know the answers no need to answer
Answer:
List, Cycle, Relationship, Pyramid.
Explanation:
100%
Please help with this coding question
Who got social media that is smart in English subject a lot pass it here your social media pls?
Answer:
I'll help with work for a low price HMU
_kay.sanchez_ Instagram
How many 1000-Watt lights can be plugged into a standard 120-Volt, 15-Amp outlet? (Hint: W/V=A) *
Answer:
There are up to 12 lights and or plugs on that circuit. A 1000w HPS or Metal Halide light takes 9 amps at 120 volts so you can only run one on a wall outlet circuit. A standard dryer outlet is 220 volts and 30 amps so you can power up to six 1000 watt lights on that circuit.
what is the importance of the international employment
Answer:
People who went overseas to work can learn different skills and technologies which can be beneficial for the development of our own country.
Help 50 POINTS How can algorithmic thinking skills be used across multiple disciplines?
Answer:
Algorithmic thinking is the use of algorithms, or step-by-step sets of instructions, to complete a task. Teaching students to use algorithmic thinking prepares them for novelty.
Answer:
As defined by Jeannette Wing, computational thinking is “a way of solving problems, designing systems, and understanding human behavior by drawing on the concepts of computer science.” To the students at my school, it’s an approach to tackling challenging questions and ambiguous puzzles. We explicitly integrate computational thinking into all of our classes, allowing students to draw parallels between what they’re learning and how they’re approaching problems across all disciplines.
Our students rely on four computational thinking skills, as well as a set of essential attitudes.
An office uses an application to assign work to its staff members. The application uses a binary sequence to represent each of 100 staff members. What is the minimum number of bits needed to assign a unique bit sequence to each staff member?
A 5
B 6
C 7
D 8
Answer: I believe the answer is: A, 5.
Explanation:
The minimum number of bits required to assign a unique bit sequence is 7.
Binary numbers are represented as 0's and 1's
Let n = number of bits [tex] {2}^{n} = required \: sequence[/tex]Therefore,
[tex] {2}^{n} \geqslant 100[/tex]The whole number value of n, which is greater than or equal to 100;
[tex] {2}^{7} = 128[/tex]The value of n which satisfies the inequality is 7
Therefore, the minimum number of bits required is 7.
Learn more : https://brainly.com/question/20865548?referrer=searchResults
Critical Thinking Questions
You learned that there are many different programming languages, just like there are many different spoken languages throughout the world. And programming languages have certain syntax, or rules, they have to follow in order for the computer to understand the commands. Give one example of syntax for one of the programming languages listed in the unit. Then give two examples of syntax from a language you know. Describe what will happen if you do not follow these rules in your language.
Answer:
One example of syntax in Logo is “[”. Two examples of Java are “;” and “{“or “}”. If you don’t use these parts of syntax then you could get a Syntax error, this will make you have to stop the code and debug.
Explanation:
Answer:
I am giving this answer so the other person can get brainliest
Explanation:
Are robots that fix other robots engineers or doctors.
When moving pictures and graphics around on the slide you can use these to help you line things up on your slide.
Question 3 options:
Smart Guides
Guide Lines
Line Help Tools
Slide Lines
Answer:
Smart Guides
Explanation:
When moving pictures and graphics around on the slide you can use SMART GUIDES to help you line things up on your slide.
To access Smar Guides, clicking and dragging the object will automatically bring Smart Guides, then a user can align and space the object accordingly.
Other options for aligning and spacing in Microsoft PowerPoint are:
1. Align Object: this can be assessed through the Format tab
2. Gridlines: this can be assessed through View Tab
3. Guides: this can be assessed from View Tab
4. Using keys Arrows to move the object around
On which tab are the print commands in Excel 2016 accessed?
Home
File (Backstage)
View
Edit
Answer:
file (backstage)
Explanation:
edginuity 2020
The tab that is the print commands in Excel 2016 accessed is File (Backstage). The correct option is b.
What is Excel?Microsoft produced Microsoft Excel, a spreadsheet, for Windows, macOS, Android, and iOS. It has calculation, graphing tools, pivot tables, and Visual Basic for Applications, a macro programming language. Microsoft created a spreadsheet for it.
It has calculation, graphing tools, pivot tables, and Visual Basic for Applications, a macro programming language. A spreadsheet application that is a part of the Microsoft Office suite of programs. Spreadsheets display value tables arranged in rows and columns that can be mathematically manipulated using both fundamental and sophisticated functions.
Therefore, the correct option is b. File (Backstage).
To learn more about Excel, refer to the link:
https://brainly.com/question/24202382
#SPJ5
draw block diagram of the computer system
who elso does their online school in their bed cause i do
Answer:
yeah same
Explanation:
I do
it just feels right