Answer:
productivity is the correct answer
what is computer?write feature of computer
Answer:
An electronic device for storing and processing data, typically in binary form, according to instructions given to it in a variable program is computer.
And it's feature are:
Multitasking.Accurate & Speed.Efficient.Reliability.Recoverabilitywhat is a computer?.
a computer is a electronic device that works under the control of information stored in its memory.
features of a computer
multitasking.
what type of things can be marketed
Answer:
Physical goods that can be manufactured, or produced are the major items among those can be marketed. Examples include refrigerators, computers, music systems, food products, etc. Such physical goods constitute the bulk of production and marketing efforts. And here are the types of marketing Traditional Marketing. Traditional marketing refers to brand promotion on any kind of channel that has been around since before the advent of the internet.
A laptop computer is smaller than desktop computer. True or false
Answer:
true
Explanation:
Answer:
true
Explanation:
laptop... sits on ya lap
desktop... sits on the desk
Which of the following statements is true regarding local area networks? SELECT 3 OPTIONS.
A: traditionally used Ethernet cables to connect devices
B: can include wired and wireless connections
C: often used in homes and small businesses
D: uses satellite technology for connections
E: connects devices in a large geographic area
Answer:
A, B and C are correct
Explanation:
A : yes, they did use ethernet cables.
B : Lan networks connected via wires are called , "LAN" and LAN networks that connect to devices wirelessly are called, "WLAN" (Wireless Local Area Networks).
C : LAN networks are a type of network that is based in a small geographical area, therefore, it can be used in homes and small businesses.
Statements that can be considered to be true about local area networks in this question are;
A: traditionally used Ethernet cables to connect devices
B: can include wired and wireless connections
C: often used in homes and small businesses
Local area network can be regarded as is group of two or more connected computers which are positioned in a small geographic area, it could just a small building.This connection can be a wired connection, it can also be a wireless connection.Example if this network is Home networks ,another one is small business networks.
Therefore, option A,BC are all correct.
Learn more at:
https://brainly.com/question/22245838?referrer=searchResults
which hardware device is it most important to an experienced computer professional to install
Answer:
RAM
Explanation:
In the test
Answer:
RAM
Explanation:
I'm doing the unit test.
What is the dependent variable, After learning about electricity, a student wants to see if electricity flows better through different materials. Our wonderful student has different materials: copper wire, aluminum wire, carbon fiber, and gold wire. The student attaches a small lightbulb to a 9 volt battery, and uses each wire to see how bright the lightbulb lights up when connected to each material.
Answer:
The Lightbulb is the dependent variable.
Explanation:
The dependent variable is defined as the variable that the researcher is measuring or testing and it observes the direct effect/change brought by manipulation in the independent variable. In the given experiment, the lightbulb would be characterized as the dependent variable as it is being tested by the researcher. He controls the independent variable(by using different wires) to observe its direct impact on the way the lightbulb lits. Thus, it(lightbulb) is the dependent variable.
Which is the best description of the laws governing IT professionals?
Answer: D, Most laws are directed at the information, data, or intellectual property rather than the IT professional.
Explanation:i just took the test
Fred is interested in creating marketing materials for video games. Which of the following occupations should he pursue?
texture artist
video game designer
graphic artist
video game artist
Answer:
The answer above is wrong well at least for odyssey ware!!
Explanation:
I think D
What are some internet hardware components? What is used to make the internet work?
Answer:
Internet Connection Components and Functions
DSL Modem–
DSL/Broadband Filter.
Firewall and NAT Router.
Computer Firewalls –
ICS (Internet Connection Sharing)-
Network Hub.
Network Switch.
Wireless Access Point.
n what sense is it now possible for a country to be ""occupied"" by an invisible invader that arrives through airwaves and wireless networks? A. It is almost impossible to block foreign countries’ satellite broadcasts and Internet transmissions. B. Spy satellites and other communications technology are increasingly advanced. C. Global positioning systems have allowed detailed mapping of previously inaccessible places. D. The U.S. government can eavesdrop on almost any form of modern communication.
Answer:
Option A. is correct
Explanation:
It now not possible for a country to be "occupied" by an invisible invader that arrives through airwaves and wireless networks. It is almost impossible to block foreign countries’ satellite broadcasts and Internet transmissions inspite of Spy satellites and other communications technology and Global positioning systems.
Option A. is correct
What is the differences between Google Slides and MS Powerpoint?
HOPE IT HELPS
PLEASE MARK ME BRAINLIEST ☺️
How can I crack a computer password?
Lifecycle environmental assessment is based on the important realization that
Answer: Life cycle impact assessment (LCIA) refers to the steps that assess the type and extent of environmental impacts that may arise quantitatively based on data collected in the LCI.
Explanation:
What is the result when you run the following program?
print(“2 + 7”)
print(3 + 1)
Answer:
line 1 = 2+7 (you added quote marks)
line 2 = 4 (you did not add quote marks, which adds both nums together)
Explanation:
________________are programs that designed to help users to be more productive with their personal tasks
Answer:
Application software
Application software consists of programs designed to make users more productive and/or assist them with personal tasks
Explanation:
35. John makes $700.00 per week working as a janitor at Passaic High School.
What is his CASH INFLOW per month? (SHOW YOUR WORK)(3 points) *
Explanation:
a is the answer
In what situations should you show enthusiasm at work? Check all of the boxes that apply.
when you are congratulated on a job well done
when you are offered a new project
when you know that gossip is occurring among colleagues
when you are running a team meeting
when you are offered a promotion
Answer: A, B, D, E
Explanation: edge 2022
write a letter to your friend telling him how computer has made learning easier to students
Answer:
Dear friend
How are you i am writing this letter to tell you how computer has made my learning easier to students.Computer is a great device to help in school work.Because it processes information and your school work,it evens help you to get done work easier and quicker.It dosent matter which coumpuer you use.Technology is a very useful source i hope you see it easier to use.I hope you enjoy what i write to you
Yours truly
Explanation:
i hope you enjoy my letter that i help you with message me
When writing a letter to your friend, it is important to:
State the reason you are writing to him.Let him know the specific ways the computer has made learning easier.Make some jokes and lighthearted comments.Promise to keep in touch.End the letter.What is an Informal Letter?This refers to the type of letter where a person writes to a friend or acquaintance and makes use of slangs and informal language.
Read more about informal letter here:
https://brainly.com/question/18879087
Write a program that will add up the series of numbers: 99,98, 97...3.2.1. The program should print the running total as well as the total at the end.
The program should use one for loop, the range() function and one print() command.
Sample Run
99
197
294
390
-
4940
4944
4947
4949
4950
Answer:
result = 0
for i in range(99, 0, -1):
result += i
print(result)
Explanation:
It gives back a series of numbers that begin at zero, increase by one by default, and end just before the specified number. There are three criteria total, and two of them are optional.
What range() function and one print() command?For the range() method to produce the integers in reverse order, use a negative step value. For instance, the expression range(5, -,1, -1) will result in the integers 5, 4, 3, 2, and 1.
By setting the step argument of a range() function to -1, you may effectively reverse a loop. Reverse iteration of the for loop's iterations will result.
The range() function returns a series of numbers that, by default, starts at 0 and increments by 1 before stopping in a given number.
Therefore, Instead of being a physical hardware device, a software calculator is one that has been implemented as a computer program.
Learn more about function here:
https://brainly.com/question/18065955
#SPJ5
A user left a comment. Which best describes where will it be seen?
Answer:
IN the comment section usually at the bottom
Explanation:
Answer:
The comments section, usually left under the question answered, or being asked.
Explanation:
What would be the state of the following list after each of the first four passes in a Bubble sort, sorting into ascending sequence?
(a) 65, 34, 28, 68, 52, 21
Answer:
21,28,34,52,65,68
Explanation:
Following are the Python program to Bubble sort the given array value.
Program:def sort(l):#defining the a method sort that takes list value in parameter
for n in range(len(l)-1, 0, -1):#defining a loop that counts list value and performs the swapping
for i in range(n):#defining another loop that counts range of list
if l[i] > l[i + 1]:#defining if block that check list number value
l[i], l[i + 1] = l[i + 1], l[i]#performing the swapping
l=[ 65, 34, 28, 68, 52, 21]#defining a list l that holds integer value
print("Unsorted list: ")#print message
print(l)#print list value
sort(l)#calling the sort method
print("Sorted Array: ")#print message
print(l)#print sorted list value
Output:
Please find the attached file.
Program Explanation:
Defining the method "sort" that takes list value "l" as a parameter, and defines a loop that counts list values and performs the swapping.Inside the loop, another loop is defined that counts the range of the list and uses a conditional statement.In this case, it uses an if block that checks the list number value and performs the swapping.Outside the method, a list "l" that holds integer values is used, and the print method that calls and prints its value.
Find out more about the sorting here:
brainly.com/question/18568184
What is a feature of webmail
Answer:
Webmail allows the users to access their emails as long as they have access to an Internet connection and a web browser. This also means that the user cannot read an old email or draft a new email offline.
Which future US President attacked a French fort in the Ohio River Valley? A. John Adams B. George Washington C. Alexander Hamilton D. James Braddock
Answer:
George Washington
Explanation:
Which layer of the TCP/IP model is concerned with the physical transportation and delivery of network data?
application
network access
internet
transport
Answer:
network accsses
Explanation:
Answer:
Network Access
Explanation:
divisions of a keyboard
Answer:
There are 4 SECTORS!
Explanation:
Alphabetical (Word keys, main function keys), Numeric (Number keys. which is the number pad to your right), The function keys (Like Num. lock, and the F keys that go through F1 to F12), and the Cursor keys (Which is LITERALLY just the arrow keys) But if you were a gamer like me, you'd know that WASD is better for gamers.
Another mention: Control Keys ( Includes your Windows Icon, Left Ctrl, Alt, Fn(If it's there) Your Tab key, your Caps, Shift, and Right Ctrl.)
In one or two short paragraphs, explain a few different ways you could get more involved in your own community. Think about the issues that concern you and how you could get involved to have an effect on those concerns.
Answer:
Ways people get more involved in your community are by stoping to help when and where you're needed. It's a simple way to make your community better and help to create the kind of vibe that makes people feel safe and happy. If you see someone in need of assistance, come to their aid instead of averting your eyes. Do for others what you'd want them to do for you if you were in their situation. Support your local economy. Healthy communities have healthy local economies. People work together to help each other make a living and thrive. You can help improve the health of your local economy in many different ways, from changing your shopping habits to starting a business of your own.
Recycle and compost. Many communities are experiencing problems with landfills that are getting too full. Producing too much trash pollutes the environment, and that's not good for your community's long-term health. You can do your part to help improve the situation by recycling and composting as much of your waste as possible.Save energy and water. Using excessive electricity and water strains community resources.Saving energy and water is good for the planet as well as your local environment. Do your best to conserve energy and water and it will become an investment in your community's long-term health. By doing some of these simple things you can be involved and help the community you live in.
Explanation:
Hope this helps
Answer:
Answers will vary but should include some specific examples with common elements such as:
organizing a food drive or fundraiser to benefit a local charity
volunteering at a home for the elderly
donating clothes or other goods
getting a school sports team involved in a local service project
finding an organization where you can volunteer with your parents
Explanation:
PLATO
To reduce costs and the environmental impact of commuting, your company decides to close a number of offices and to provide support for staff to work from home. However, the senior management who introduce the policy are unaware that software is developed using Scrum. Explain how you could use technology to support Scrum in a distributed environment to make this possible. What problems are you likely to encounter using this approach
Answer:
The description including its query is provided throughout the section of the elaboration elsewhere here.
Explanation:
Coordination between teams is the main challenge that this new strategy can make. Agile creation is focused on the teamwork of cross-functional teams, where every other mission is identified and distinct teams are formed. All the departments collaborate and afterward work in stages until the completion of this research project.Unless the organization shuts several departments, contact with various teams and peers will be disrupted and contact differences with workers as well as the team would be established. The best approach will be to provide regular communication calls with multiple project managers such that each project stage is synchronized. In turn, this same project coordinator should always have numerous calls with his group members to even get construction progress.Which of the these is tool for creating mobile apps? A:C# B:Apple Pie C:Appy Pie D:C++
Answer:
Appypie
Explanation:
Have a good day
The tool used for creating mobile apps is C#. The correct option is A.
What is C#?C# is a multi-paradigm, broad sense programming language. C# programming areas of study encompassing static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented, and component-oriented programming.
C++ is an intermediate-level language that extends C with object-oriented features, whereas C# is a high-level language.
C++ compiles programs to Machine Codes, whereas C# compiles programs to Common Language Runtime, abbreviated as CLR.
C# is a popular programming language for Windows desktop apps, enterprise solutions, and even game development, as the Unity game engine is built on it.
C# or F# can be used to create native apps for Android, iOS, and Windows (Visual Basic is not supported at this time).
Thus, the correct option is A.
For more details regarding programming language, visit:
https://brainly.com/question/14379391
#SPJ5
True False Technology Type The 6x6 rule means to keep all objects smaller than 6 inches tall and 6 inches wide. You can set the duration of an animation. Most presentation software lets you post and share presentations online. You cannot change the direction of the transition. A slide can contain a link to another slide, another document, or a Web page.
Answer:
Follows are the true and false statement:
Explanation:
The true statements:
This slide may include a path to a specific slide, paper, or web browser.
The length of the animation could be determined.
Many apps for demonstrations enable you to post and distribute online demonstrations.
The false statements:
Every course of the transformation could not be changed.
The with 6x6 rule, all objects are kept smaller than 6 inches tall and 6 inches wide.
modern warfare players here lol
Answer:
The answer to this is: lol
Explanation:
Answer:
Gimme Dat UserName
Mine is meterhopper
Explanation: