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.
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:
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.
resources that can be saved through the use of computers
Answer:
Yes. That's what the internet is all about. Saving resources through interconnected computers.
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
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:
What is the purpose of this rectangular shape in a flowchart?
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
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
Which best describes how a supporting database will be structured?
data operations
Data systems
data functionalities
Data modeling
Answer:
DATE SYSTEMS
Explanation:
DATA SYSTEMS
SO SORRY IF IM WRONG
FREE POINTTTTTTTTTTTTTTTTTTT
Answer:
THXXXXXXXXXX
Explanation:
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;
}
}
1
How were stories told in the earliest days of human civilization?
they were written in books
they were crafted in stained-glass art in religious buildings
they were traded as currency
they were told by elders around fires at night
2
Which skill-based video games mostly involve critical thinking or problem solving?
puzzle games
role-playing games
shooter games
platformer games
3
What is an example of an operation for a game?
jumping over Bowser in a Mario game
motion-capture devices (e.g., Kinect, WiiMote)
matching three-of-a-kind to clear obstacles
achieving a high score in Pac-Man
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
If u get it right u get brainliest
1
they were crafted in stained-glass art in religious buildings
2
puzzle games
3
motion-capture devices (e.g., Kinect, WiiMote
4
puzzle
simulation
7. On a control drawing, what's indicated by the bar under the rung location for a set of relay contacts?
Answer:
On a control drawing , the bar under the rung location for a set of relay contacts indicates (d) normally closed relay contact on that rung.
Explanation:
On a control drawing , the bar under the rung location for a set of relay contacts indicates normally closed relay contact on that rung.
As , when it resets that , the relay is in open. Normally relays works on low current rating upto 10A°
Edhesive 9.1 lesson practice answers
Answer:
1. False
2. Rows and columns
3. Grid
Explanation: Bam
Describing the technologies used in diffrent generation of computer
Answer:
1940 – 1956: First Generation – Vacuum Tubes. These early computers used vacuum tubes as circuitry and magnetic drums for memory. ...
1956 – 1963: Second Generation – Transistors. ...
1964 – 1971: Third Generation – Integrated Circuits. 1972 – 2010: Fourth Generation – Microprocessors.
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
Which of the following cloud features is represented by leveraging remote monitoring and system tuning services?
Reliability
Performance
Utilization
Maintenance
Answer:
Reliability
Explanation:
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.
heyyyyyy
byeeeeeeeeeeeeeeeeeeeeeee
Answer:
byeeeeeeee
Explanation:
Answer:
Heyyyyyyy
Byeeeeeee
Explanation:
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.
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
Which of the following statements are true of
software engineers? Check all of the boxes that
apply.
They are responsible for writing programming
code.
They are usually strong problem-solvers.
They spend most of their work hours running
experiments in a laboratory.
They must hold advanced degrees in
computer science.
Answer:
Option A - They are responsible for writing programming
Option B - They are usually strong problem-solvers
Explanation:
A software engineer needs to be a strong problem solver and he/she must be able to write program/code. He/She is not required to conduct experiments in labs and also it is not essential for them to hold masters degree as even the non computer science or IT background people are working as software engineer.
Hence, both option A and B are correct
Answer:
A & B
Explanation:
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)
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
What must an individual understand to create websites using professional software?
(A) Graphic design
(B) Coding languages
(C) Preset layouts
(D) Photography
Answer:
(B) Coding languages
Explanation:
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
condition of watering a plant
Answer:
Hydration?
Explanation:
3. Wi-fi connections have limited range of :
A.10 metres
B.600 metres
C.20 metres
D.300 metres
Answer: D) 300 metres would be my choice because our wifi can only go that far outdoors, inside wifi can only travel up to 150 metres.
Explanation: Hope this helps! Have a wonderful day!
Don’t forget to thanks & Brainliest is always appreciated!
Select all that apply. What two values do comparison operators return ?
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
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