Answer:
There are four predominant functions of a computer. Inputting data and or instructions, processing, output, or grabbing data and or information, storing data and or information.
hope this helps :D
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.
How have computers changed people's ability to access information?
O A. Because there is so much information available, people need to
wait longer to download it onto their devices.
O B. People can access information about almost any topic through
their devices instead of asking someone
C. Because devices are small people are accessing less information
than they did in the past.
D. People can access a limited amount of information on their
devices, but most information needs to be researched at a library
Answer:
B. People can access information about almost any topic through their devices instead of asking someone.
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.
Can someone pls help due today !!
Answer:
a1 timing a2 speed
Explanation:
Genetics Vocabulary: no
Allele: Different versions of the same qene (Aa, Bb)
Choose the words that make the following sentence true.
Primary memory is (not volatile, volatile) and (not permanent, permanent).
Answer:
Primary memory is volatile and not permanent.
Answer:
Primary memory refers to the memory that is accessed by the CPU and is not permanent.
It is volatile, since it is cleared out when the device is powered off.
Explanation:
Edge 2022
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;
}
}
oml this question has 500+ thanks...HOW
Answer:
nice
Explanation:
:)
Answer:
cool congratulations
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:
Describing the technologies used in diffrent generation of computer
Windows 98, Windows XP, Windows vista, Windows 7, Windows 8 y Windows 10.
Answer:
Evolution of Computer can be categorised into five generations. The First Generation of Computer (1945-1956 AD) used Vacuum Tubes, Second Generation of Computer (1956-1964 AD) used Transistors replacing Vacuum Tubes, Third Generation of Computer (1964-1971AD) used Integrated Circuit (IC) replacing Transistors in their electronic circuitry, Fourth Generation of Computer (1971-Present) used Very Large Scale Integration (VLSI) which is also known as microprocessor based technology and the Fifth Generation of Computer (Coming Generation) will incorporate Bio-Chip and Very Very Large Scale Integration (VVLSI) or Utra Large Scale Integration (ULSI) using Natural Language.
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
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
please fill in the blank and don’t send me files i can’t open them!!
please actually answer don’t send me a file !!
Answer:
CSS- Styling Language
JavaScript- Scripting Language
HTML- Markup Language
Explanation:
*Also verified answers with a Computer expert and the Internet*
===================================================================
Hope I Helped, Feel free to ask any questions to clarify :)
Have a great day!
More Love, More Peace, Less Hate.
-Aadi x
What is data and information
Answer:
data is the unprocessed information where as information is a processed output
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."
what are the things that must be included when using online platform as means of communicating deals,?
Answer: Terms of Service or Disclaimer
Explanation:
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.
drag each type of document to the correct location on the table. Drag each document to its respective category
Answer:
What? I don't get it.
Explanation:
The correct document to be assorted as per the table of contents and nature thereof. So the Business Documents are Sales Report, Pay slip and Resignation letter. Further the Non-Business Documents are Review Article, Mathematics Assignment and Letter to classmate.
What is business documents?Business documents are a variety of files that include information on a company's internal and external dealings.
They typically play a crucial role in a company's administration since they offer both the data necessary to run the business effectively and the specifics of various business dealings with third parties.
Further examples of Business documents such as Invoices to clients, price lists, and offers are examples of business paperwork. The business documents also include the terms and conditions of the contract.
Therefore the legal structure of the firm, the location of the company, its corporate identity number, and its VAT number are business documents.
Learn more about business documents:
https://brainly.com/question/12654413
#SPJ2
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°
Select all that apply. What two values do comparison operators return ?
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.
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:
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
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.
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.
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:
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
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
Help pls due today
Select the correct answer. Mike needs to export some animation videos
from his smartphone to an online platform. Which common file format can
he use for this purpose?
1) .swf
2 ) flv
3) .mov
4) .3gp
The Correct Answer:
3) .mov
Answer:
D. .3gp
Explanation: