Brenda should use the Ctr+F shortcut to quickly find a specific information in the spreadsheet file.
List good and bad points about play a team sport!
Answer:
Good:
You learn to be friendly.
You can work together to avoid problems.
Sportsmanship comes easily.
You can help each other up when needed
Bad:
Fights can happen
You'll have that one person who tries to be the boss.
You'll have that point where you compete against each other instead of the other team
You might disagree and it'll ruin the whole game.
Hope this helped!!
Explanation:
01:5
Which setting is used to determine the order of printing pages?
O Collation Settings
O Orientation Settings
O Margin Settings
O Scaling Settings
Save and Exit
the Next
Submit
Mark this and retum
Answer:
A.
Explanation:
Collation settings, means order of pages printed
The setting which is used to determine the order of printing pages is Collation Settings. Thus, option A is correct.
What are the options available in Microsoft Word?In Microsoft Word, we are given several setting options (e.g. Collation, Orientation, Margin and Scaling) to print our documents. Collation is one of the given settings that allows us to adjust the order of printing pages. There are only two options in Collation Setting (Collated or Uncollated).
If Collated is chosen, the pages will be printed in sequential order (e.g. Page 1, Page 2 and Page 2) and followed by another copy of pages with same sequential order. On another hand, if Uncollated is chosen, All copies of Page 1 will be printed first then only followed by the Page 2 for all copies and so on.
Therefore, The setting which is used to determine the order of printing pages is Collation Settings. Thus, option A is correct.
Learn more about Collation Settings on:
https://brainly.com/question/16548425
#SPJ7
Which piece of evidence from the article MOST
appeals to the reader's sense of logic?
A
Many of you have seen teachers who read the
slides on the screen word-for-word, which is
dull and repetitive.
B.
In comparison, 38 percent of the impact comes
from what you say and 7 percent from the text
on each slide.
C
Green, for instance, is commonly associated
with the stoplight and the dollar bill, so you can
use the color to signify action or wealth.
D
Kawasaki, for example, thinks that an ideal
PowerPoint presentation should last no longer
than 20 minutes.
Answer:
A - Many of you have seen teachers who read the
slides on the screen word-for-word, which is
dull and repetitive.
When you use the Insert Sheet Rows command, the Insert dialog box lets you specify where the new column is to be located.
Please select the best answer from the choices provided
T
F
Answer: False
Explanation:
There are a number of ways to insert blank columns or rows in spreadsheet program e like Microsoft excel. The method referred to above, which is using the insert option in the home tab. In Microsoft Excel 2016, once the insert option is chosen, there is an option to insert cells, insert sheet rows, insert sheet columns and insert sheets. Click on the insert sheet columns, a new column is automatically right before the location of the current selected cell. There is no dialog box which pops up to enable user specify the location of the new column when using this column addition option.
For this exercise, you will complete the TicTacToe Board that we started in the 2D Arrays Lesson.
We will add a couple of methods to the TicTacToe class.
To track whose turn it is, we will use a counter turn. This is already declared as a private instance variable.
Create a getTurn method that returns the value of turn.
Other methods to implement:
printBoard()- This method should print the TicTacToe array onto the console. The board should include numbers that can help the user figure out which row and which column they are viewing at any given time. Sample output for this would be:
0 1 2
0 - - -
1 - - -
2 - - -
pickLocation(int row, int col)- This method returns a boolean value that determines if the spot a user picks to put their piece is valid. A valid space is one where the row and column are within the size of the board, and there are no X or O values currently present.
takeTurn(int row, int col)- This method adds an X or O to the array at position row,col depending on whose turn it is. If it’s an even turn, X should be added to the array, if it’s odd, O should be added. It also adds one to the value of turn.
checkWin()- This method returns a boolean that determines if a user has won the game. This method uses three methods to make that check:
checkCol- This checks if a player has three X or O values in a single column, and returns true if that’s the case.
checkRow - This checks if a player has three X or O values in a single row.
checkDiag - This checks if a player has three X or O values diagonally.
checkWin() only returns true if one of these three checks is true.
public class TicTacToeTester
{
public static void main(String[] args)
{
//This is to help you test your methods. Feel free to add code at the end to check
//to see if your checkWin method works!
TicTacToe game = new TicTacToe();
System.out.println("Initial Game Board:");
game.printBoard();
//Prints the first row of turns taken
for(int row = 0; row < 3; row++)
{
if(game.pickLocation(0, row))
{
game.takeTurn(0, row);
}
}
System.out.println("\nAfter three turns:");
game.printBoard();
}
}
public class TicTacToe
{
private int turn;
private String[][] board = new String[3][3];
public TicTacToe()
{
for(int i = 0; i < 3; i++)
{
for(int j = 0; j < 3; j++)
{
board[i][j] = "-";
}
}
}
//this method returns the current turn
public int getTurn()
{
return turn;
}
/*This method prints out the board array on to the console
*/
public void printBoard()
{
}
//This method returns true if space row, col is a valid space
public boolean pickLocation(int row, int col)
{
return true;
}
//This method places an X or O at location row,col based on the int turn
public void takeTurn(int row, int col)
{
}
//This method returns a boolean that returns true if a row has three X or O's in a row
public boolean checkRow()
{
return true;
}
//This method returns a boolean that returns true if a col has three X or O's
public boolean checkCol()
{
return true;
}
//This method returns a boolean that returns true if either diagonal has three X or O's
public boolean checkDiag()
{
return true;
}
//This method returns a boolean that checks if someone has won the game
public boolean checkWin()
{
return true;
}
}
IS EVERYONE ASLEEP!!!!
where the smart people at
PLEASEEEEE HELPPPPPP
you can use the [nav] element to contain the major navigational blocks on the page, as well as links to such things as
a. privacy policy, terms, and conditions.
b. [div] elements
c. header and footer information
d. [article] and [section] elements
Answer:
a. privacy policy, terms, and conditions
Explanation:
The nav element usually includes links to other pages within the website. Common content that is found within a webpage footer includes copyright information, contact information, and page links
Dan's team has to develop billing software for a supermarket. During which step will they write the program for the software?
Which step will involve finding errors in the software?
Answer:
coding phase
testing/debugging phase
Explanation:
During the coding phase they will write the actual code which creates the functionality/program which is added to the software. This phase comes after the dev team designs the algorithm and creates a flow chart of the algorithm. This flow chart is what is used to create the code itself. After the code is complete then the dev team will go into the testing/debugging phase where they will test the program with different test cases. If any bugs/errors are found they will return to the code and implement changes to fix these errors.
oml this question has 500+ thanks...HOW
Answer:
nice
Explanation:
:)
Answer:
cool congratulations
heyyyyyy
byeeeeeeeeeeeeeeeeeeeeeee
Answer:
byeeeeeeee
Explanation:
Answer:
Heyyyyyyy
Byeeeeeee
Explanation:
Recommend how could you integrate positive aspects of digital literacy into your own
practice of learning.
PLEASE HELP
Answer:
please give me brainlist and follow
Explanation:
7 Ways to Teach Digital Literacy
Emphasise the importance of critical thinking. ...
Use social media for learning and collaborating. ...
Provide guidance on how to avoid plagiarism. ...
Teach students to manage their online identity. ...
Help students manage digital distractions. ...
Provide authentic contexts for practice. ...
Guide students out of their comfort zone.
how does one go about making a robot
Answer: huh I would like to play barbie
Explanation:
are used in the Excel application to create calculations
Answer:
I think the answer is formulas
Write a program that creates a two-dimensional array named height and stores the following data:
16 17 14
17 18 17
15 17 14
The program should also print the array.
Expected Output
[[16, 17, 14], [17, 18, 17], [15, 17, 14]]
Answer:
Explanation:
The following code is written in Java and it simply creates the 2-Dimensional int array with the data provided and then uses the Arrays class to easily print the entire array's data in each layer.
import java.util.Arrays;
class Brainly {
public static void main(String[] args) {
int[][] arr = {{16, 17, 14}, {17, 18, 17}, {15, 17, 14}};
System.out.print(Arrays./*Remove this because brainly detects as swearword*/deepToString(arr));
}
}
Answer:
height = []
height.append([16,17,14])
height.append([17,18,17])
height.append([15,17,14])
print(height)
Explanation:
I got 100%.
Your _______ can help block inappropriate content online.
1. web browser
2. Password
Answer:
web browser.
Explanation:
yea let me go post my password to block content (sarcasm)
Which of the following cloud features is represented by leveraging remote monitoring and system tuning services?
Reliability
Performance
Utilization
Maintenance
Answer:
Reliability
Explanation:
Select all that apply. What two values do comparison operators return ?
how many colors are in microsoft word?
Answer:
4 Owo
Explanation:
XOXO
Kit
Salim wants to add a device to a network that will send data from a computer to a printer. Which hardware component should he use?
A.
repeater
B.
modem
C.
switch
D.
bridge
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.
suggest me horror movies that r genuinely scary
Answer:
It depends on your power of resisting fears. everyone have their own tastes.
Explanation:
Answer:
The Exorcist (1973) (Photo by ©Warner Bros. ...
Hereditary (2018) (Photo by ©A24) ...
The Conjuring (2013) (Photo by Michael Tackett/©Warner Bros. ...
The Shining (1980) (Photo by ©Warner Brothers) ...
The Texas Chainsaw Massacre (1974) (Photo by Everett Collection) ...
The Ring (2002) ...
Halloween (1978) ...
Sinister (2012)
Is a system software that manages the hardware resources and provides services 5o the application software
Answer:
"Operating system" is the right response.
Explanation:
The key program collection on something like a computer device that maintains it interacts mostly with underlying hardware of that system is considered as an Operating system.Even without the need for an OS, every consumer isn't able to access either equipment, monitor as well as portable phone or devices.NEXT
Internet and World Wide Web: Mastery Test
1
Select the correct answer
An instructor receives a text message on her phone. Next, she reads out the text to the whole claws. Which network component plays a similar
role by receiving a message and broadcasting it to all other computers connected to the component?
OA Switch
OB .
hub
OC bridge
OD
router
Reset
Wext
Answer:
hub is the correct answer
hope it is helpful to you
An organization would like to determine which streams will carry certain levels of fertilizer runoff from nearby agricultural
areas.
Which specialized information system does this situation represent?
Superfund Information Systems
Geographic Information Systems
Electronic Medical Record Systems
Emergency Department Information Systems
Answer:
GIS - Geographic Information System
Lillian is creating a presentation about social media and she would like to include transitions to add flair. What does she need to do to make sure her transitions are balanced?
Apply one simple transition to all of her slides.
Use a different transition for each slide.
Add a subtle transition to every other slide.
Give each slide a different duration time.
Answer:
A: Apply one simple transition to all of her slides.
Explanation:
I got it correct on a quiz I did that had this question.
1 Which skill-based video game requires quick reflexes and skills with weapons?
role-playing games
shooter games
puzzle games
visual novel games
2 Thinking about the operations needed in these games, which game is likely to be one of the oldest games in the world?
tag
dice throwing
jump-rope
tic-tac-toe
3 What is the difference between “games” and “play?”
games are organized play
play has no consequences
games last longer
children play; adults game
4 What describes a special kind of game that is designed to mimic an experience or activity so that you can learn about it first-hand?
simulation
adventure
role-playing
puzzle
5 What is the advantage of learning through story compared to learning through personal experience?
stories are “more real” than personal experience
stories are easier to remember than personal experiences
stories have no rules to follow
you can learn from countless other lifetimes through stories
6 What term describes the story of a game?
tale
fable
narrative
setting
7 Game have been a part of human life only recently in human history—about 1100 AD.
True
False
8 In the outdoor game four-square, players attempt to bounce a ball in such a way that another player cannot return the ball. When someone fails to return the ball, they move out of their square, and everyone else advances a square hoping to reach the server square where they get to dictate what types of bounces everyone can make. Dictating the tricky bounces that everyone has to make is an example of what element of a game?
objective
operation
obstacles
outcome
The Answer to Number 1 is Shooter Games
The Answer to Number 2 is Dice Throwing
The Answer to Number 3 is Games are organized play
The Answer to Number 4 is Either Simulation or Adventure
The Answer to Number 5 is Stories have no rules to follow, you can learn from countless other lifetime through stories
The Answer to Number 6 is Setting
The Answer to Number 7 is False
The Answer to Number 8 is Objective
Which sentences use antonyms to hint at the meaning of the bolded words? Check all that apply.
The dog cowered and hid behind the couch during thunderstorms.
Most of the house was destroyed by the tornado, but the kitchen remained intact.
He was extravagant with money, buying everything in sight whenever he had the means.
Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.
The opportunity didn't last long; it quickly dwindled, or went away.
Hello
Answer:
Most of the house was destroyed by the tornado, but the kitchen remained intact.
Performing onstage caused him discomfort; he felt comfortable staying out of the spotlight.
Explanation:
I got it right on Edge, good luck :)
Answer:
b,d
Explanation:
edge 22
A programmer writes a program to feed a wide variety of data to a program to test it many times. This is an example of
O a customer satisfaction survey
O automated testing
O a test case
O print debugging
Answer:
automated testing
Explanation:
to make sure that the item works
7.2 code practice edhesive pleaseee helpppp
Answer:
Explanation:
got a 100
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
7.2 code practice edhesive
Answer:
Explanation:
got a 100
The python program method code and its description can be defined as follows:
Python code:def ilovepython():#defining the method ilovepython
for i in range(0,3):#defining a loop that prints value 3 times
print ("I love Python")#print message
ilovepython()#calling the method
Output:
Please find the attached file.
Code Explanation:
Defining the method "ilovepython".Inside the method, a for loop is declared that uses the range method in which it prints the value 3 times. Inside the loop, a print method is used that prints the message value that is "I love Python".Outside the method, method "ilovepython" is called that prints the given message value 3 times.Find out more about the loop here: