information in society

Answers

Answer 1

Answer:

Information Society is a term for a society in which the creation, distribution, and manipulation of information has become the most significant economic and cultural activity. An Information Society may be contrasted with societies in which the economic underpinning is primarily Industrial or Agrarian.


Related Questions

Please Help!
I need good Anime to watch!

Answers

Answer:

attack on titan

kakegurui

kuroko's basketball

haikyuu

One piece

Mha

fruits basket

naruto

the great pretender

tokyo ghoul

Darling in the Franxx

Toradora

death note

Explanation:

Answer:

Hunter x Hunter

The Promised Neverland

Magi

Gurren Lagann (The second season isnt that good though)

My Hero Academia

Bleach

One Piece

Fairy Tail

Demon Slayer

Naruto

Haikyuu

Toradora (This one is alright if you like romance anime)

Thats all I can think of right now

Explanation:

What are the challenges of Cyber Law???? Needed ASAP ​

Answers

Answer:

Explanation:

Few challenges that the technology space faces in cyber security are the following:

Digital Data Threat: Growing online transactions generate bigger incentives for cybercriminals. Besides, establishments looking to mine data—for instance, customer information, results of product surveys, and generic market information—create treasured intellectual property that is in itself an attractive target.

Supply Chain Inter-connection: The supply chains are increasingly interconnected. Companies are urging vendors and customers to join their networks. This makes a company’s security wall thin.

Hacking: This action is penetrating into someone’s system in unauthorized fashion to steal or destroy data, which has grown hundred folds in the past few years. The availability of information online makes it easier for even non-technical people to perform hacking.

Phishing: The easiest to execute and can produce the results with very little effort. It is the act of sending out Fake emails, text messages and create websites to look like they're from authentic companies.

Which areas of a business would most benefit from using the Workday platform?

Answers

Answer:

Human resources, compliance, recruiting, and finance would benefit the most from using the workday platform.

Explanation:

The workday platform is used in human resources, compliance, recruiting, and finance department where it is a helpful platform that brings great mobile experience for managers, recruiters, employees that is in need of information access elsewhere. It also helps in organizing, and find candidacies for their respective departments. It is also perfect for any kind of management that can be helpful for the team.

The Workday Platform will provide the most benefit to Human resources, compliance, recruiting, and finance in business.

Workday PlatformThe Workday platform is a cloud-based software vendor whose specialty in business is in the areas of human capital management, enterprise resource management, and financial management applications Benefits of workday platform

In the business world, the Workday Platform will provide the most benefit to Human resources, compliance, recruiting, and finance in the following ways:

It is used in human resources for recruitment purpose.It also helps in organizing, and find candidacies for their respective departments.it provides a useful management system

Learn more about Business and Workday platform at: https://brainly.ph/question/11472985

Two workers in a farms will plucking a strawberry.
30% of the collection belongs to the owner.
40% of strawberry will devide by each workers.
Balanced will make a drinking juice.​

Answers

Answer:

20%

Explanation:

20% only I know the answer cus I already did it it’s 20% and yeah

What makes a source credible?

It is found online.
It contains bias.
It is believable or trustworthy.
It supports multiple perspectives.

Answers

Answer:

C It is believable or trust worthy

Answer:

It's C: It is believable or trustworthy.

Explanation:

I got it right.

Create a Program that asks the user for their age. If their age is older than 65, print how old they are and tell them their ticket price is $5. If their age is between 25 & 65, print how old they are and tell them their ticket price is $10. Otherwise print their age and that their ticket price is $5. You should use elifs and concatenation

Answers

age = int(input('Age: '))

if age >= 65:

   print(f'You are {age} years old and your ticket is $5')

elif age >= 25 and age < 65:

   print(f'You are {age} years old and your ticket is $10')

else:

   print(f'You are {age} years old and your ticket is $5')

1- every employee’s salary lies within a job grade. Use your HR ERD to show the employee ID, first and last names, salary, job name, and job grade
2- displaying employees and their managers, along with the department names in which they belong. Display the employee ID, first and last name, manager ID and department name. The output must be arranged so that departments are shown together before another one is displayed.
3- Write suitable SQL statement to show this scenario: The HR department needs you to produce a report on job grades and salaries. Write a query that will display the names, job name, department name, salary, and grade for all employees.
4- subquery that reports the last name, department ID, and job ID of all employees whose department location ID is 1700 or 1800.​

Answers

Answer:

share full detail of your question categorically.

Explanation:

Please answer.

For this Code Practice, use the following initializer list, terms:

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]
Write a sort program to alphabetize the list of computer terms, much like the preceding question. However, this time, define and use a function named swap as part of your solution. The swap function should not be a sort function, but should instead implement the swap functionality used in sorting. This function should swap the elements in the array at each of the indexes by comparing two elements to one another, and swapping them if they need to be in a different alphabetical order.

Your function should take three parameters: the first is the array name, and the second and third are the indexes to swap. Print the terms array before and after it is sorted.

Expected Output
['Bandwidth', 'Hierarchy', 'IPv6', 'Software', 'Firewall', 'Cybersecurity', 'Lists', 'Program', 'Logic', 'Reliability']
['Bandwidth', 'Cybersecurity', 'Firewall', 'Hierarchy', 'IPv6', 'Lists', 'Logic', 'Program', 'Reliability', 'Software']

Answers

Answer:

def swap (ar, a, b):

   temp = ar[a]

   ar[a] = ar[b]

   ar[b] = temp

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]

print(terms)

for i in range(len(terms)):

   for j in (range(i, len(terms))):

       if(terms[i] > terms[j]):

           swap(terms, j, i)

print(terms)

Explanation:

I got 100% on edhesive.

The code practice requires the uses of loops and conditional statements.

Loops are used for repetition of operations, while conditional statements are used for making decisions.

The sort program in Python, where comments are used to explain each line is as follows:

#This defines the swap function

def swap (terms, a, b):

   #This creates a temporary variable

   temp = terms[a]

   #The next two lines swap the elements

   terms[a] = terms[b]

   terms[b] = temp

#This initializes the list

terms = ["Bandwidth", "Hierarchy", "IPv6", "Software", "Firewall", "Cybersecurity", "Lists", "Program", "Logic", "Reliability"]

#This prints the list before sorting

print(terms)

#This calculates the length of the list

n = len(terms)

#This iterates through the list

for i in range(n):

   #This iterates through every other element of the list

   for j in (range(i, n)):

       #This swaps the elements

       if(terms[i] > terms[j]):

           swap(terms, j, i)

#This prints the list after sorting

print(terms)

Read more about sort programs at:

https://brainly.com/question/15263760

What is the exact number of bytes in a system that contains (a) 32K bytes, (b) 64M bytes,
and (c) 6.4G bytes
I need the answer as soon as possible please

Answers

Answer:

32K significará 32768 bytes, 64M = 67108864, 6.4G = 6851834668

Busque la diferencia entre kilobyte (kB = 1000) y kibibyte (KiB = 1024)

Explanation:

Which areas of a business would most benefit from using the Workday platform?


Enterprise resource planning, supply chain, and inventory management


Human resources, compliance, recruiting, and finance


Private equity issuance and listing on a public exchange


Compliance, server machine administration, and anti-money laundering

Answers

Answer:

The first option would be the best I think

Explanation:

Enterprise resource planning, supply chain, and inventory management would most benefit from using the Workday platform. Thus, option A is correct.

What is a business?

A business is defined as an organization that does monetary transactions. It usually means that the product is being made manufactured, processed, or even repacked in a business. the sole reason to create money by exchanging goods or services with the purchaser or the buyer.

Every form of company, including small, medium, and large organizations, uses Workday's numerous capabilities. They are a cloud-based system and the software helps to create it internally and manage the resources to know when to have new products, and also it is made online managed. Therefore, option A is the correct option.

Learn more about the Workday platform, here:

https://brainly.com/question/21941429

#SPJ2

If I wanted to design an app for world peace, what problems could a computer help me to solve? Select ALL that apply *


A. Ranking countries and their peacefulness based on war history, taking into consideration World War participation, Civil Wars, number of years at war over the last 100 years, and total deaths as a direct result of war over the last 100 years


B. Create a forum where people wanting to promote world peace can meet and discuss strategies.


C. Design an interactive map where people can see where war is taking place

D. Make the leader of a country change his/her mind about going to war

E. Stop a war that is currently happening

Answers

Answer:

I believe B is the correct answer.

Explanation:

A is quite useful, but it's not necessary for our goal of world peace.

E is too vague and doesn't help the cause. How do you simply 'stop a war' and how can we ensure that more wars won't arise in the future?

D does stop a war from going on, but it doesn't solve the problem of wanting world peace, as more wars can arise in the future.

C, as the idea, is really cool, again, how will it help our cause of wanting world peace?

I understand that you can choose multiple answers here, but you can't simply change one's mind just for the sake of wanting peace. Wars are a problem and do take part in world peace, but that doesn't change the fact that someone is not at peace with others. You've got to change their minds, not just the idea of wanting to go to war.

Please, do tell me if I got this incorrect.

(k + 3)by the power of 3​

Answers

Answer:

k^3 + 9k^2 +27k +27

Explanation:

hope this helps

Pls help I'm trying not to fail.​

Answers

Answer:

18

Explanation:

tryIt(2) will return 9 because 2+7 is 9 (7 is the default value of b)

9 * 2 = 18.

You can try this yourself at replit.

Which is an advantage of using a flat file instead of a relational database?
A flat file is easier to set up.
It is easier to assign foreign keys to a flat file.
A flat file reduces storage of redundant data.
A flat file reduces storage of irrelevant data.

Answers

Answer:

An advantage of using a Flat file instead of a relational database is;

A Flat file is easier to set up

Explanation:

The Flat file database is a database developed by IBM and it is the primary type of database for storing data in text files such as in Microsoft Excel

Individual database records are stored in a line of plain text and are separated from other records by delimiters including commas and tabs

The advantages of a Flat file database are;

1) The records of the database are stored in a single place

2) A Flat file is easier to set up with Microsoft Excel or other office applications

3) The Flat file database is easier to comprehend and understand

4) The records of the database can be simply stored

5) Simple criteria can be used for viewing or extracting data from a Flat file database

Answer:

b

Explanation:

vegetable farming is a good source of income explain this statement

Answers

Answer:

Answer:qwertyuioplkjhgfdsazxcvbnm

Answer:qwertyuioplkjhgfdsazxcvbnmExplanation:

Answer:qwertyuioplkjhgfdsazxcvbnmExplanation:qwertyuioplkjhgfdsazxcvbnm

write an algorithm to sum all numbers between 0 and 1000 that are divisible by ,7​

Answers

Answer:

The algorithm is as follows:

1. START

2. SUM = 0

3. FOR NUM = 0 TO 1000

3.1 IF NUM % 7 == 0

3.1.1 SUM = SUM + NUM

3.2 END IF

4. END FOR

5. PRINT SUM

6. END

Explanation:

This begins the algorithm

1. START

This initializes sum to 0

2. SUM = 0

This iterates from 0 to 1000

3. FOR NUM = 0 TO 1000

This checks if the current number is divisible by 7

3.1 IF NUM % 7 == 0

If yes, the number is added

3.1.1 SUM = SUM + NUM

End the if condition

3.2 END IF

End loop

4. END FOR

This prints the calculated sum

5. PRINT SUM

The algorithm ends here

6. END

With whom does the success of information processing in the firm lie with?

Answers

Answer:

depends

Explanation:

it lies with the entire firm and its ability to utilize or process the information in the most efficient way.

Need more info man sorry

how can the use of ICT ​

Answers

Answer:

ICT allows students to monitor and manage their own learning, think critically and creatively, solve simulated real-world problems, work collaboratively, engage in ethical decision-making, and adopt a global perspective towards issues and idea.

1A.) What can cause a threat to a computing system?

A. Nick scans his hard drive before connecting it to his laptop.

B. Julie turns off the power before shutting down all running programs.

C. Steven has created backup of all his images.

D. Cynthia uses a TPM.

E. Monica has enabled the firewall settings on her desktop computer.

1B.) Which step can possibly increase the severity of an incident?

A. separating sensitive data from non-sensitive data

B. immediately spreading the news about the incident response plan

C. installing new hard disks

D. increasing access controls

Answers

1A

B. Julie turns off the power before shutting down all running programs.

1B

B. immediately spreading the news about the incident response plan

Hope this helps :)

Are computer software programs an example of land, labor or capital?

Answers

Answer:

Labor

Explanation:

William created a spreadsheet and he would like to enter the data he collected. What information should he put in the first row?

A. A pie chart for the data
B. His survey question
C. How many people he surveyed
D. Where he asked his questions

Answers

how many people he surveyed

What is MS Paint ?
[tex] computer[/tex]

Answers

Answer:

Microsoft Paint, also known as Paint, is a simple program that allows users to create basic graphic art on a computer. Included with every version of Microsoft Windows since its inception. Paint provides basic functionality for drawing and painting in color or black and white, and shaped stencils and cured line tools.

Which type of loan is based on financial need

Answers

Answer:

Direct Subsidized Loans are based on financial need.

hope my ans helps

be sure to follow me

pls give brainlist to my answer

stay safe

have a good day

System.out.print(two.indexOf('r'));

Answers

What is this I can’t comprehend

Identify five type of application software​

Answers

Application Software and Types of Application Software
Word processors.
Graphics software.
Database software.
Spreadsheet software.
Presentation software.

Explanation:

Word processors.

Graphics software.

Database software.

Spreadsheet software.

Presentation software.

Web browsers.

Enterprise software.

Information worker software.

distiguish between file organisation and file access​

Answers

Answer:

A set of records constitutes a file

what is information

Answers

Answer:

Information can be thought of as the resolution of uncertainty; it is that which answers the question of "What an entity is" and thus defines both its essence and the nature of its characteristics. The concept of information has different meanings in different contexts.

Explanation: idek if that helps let me kno

10
80 remo
9.0 25 alls
b0o* -a
*2
x 20
90x2 = 180
.
ec - = 42
",
nc - 42
90-42
x=48
3
luate
Solution
Assignment
the following ett Statement clearly
clearly showing your
I regt 3+32 lish - 2 +12 ts 2-9/3
I b=12+4 +976 412/3
Ghow the steps of
your
mathematical equati
(=Programy
Integer
.
ett
3
as
osters​

Answers

Answer:

i need more \\

Explanation:

Chemical cold packs should be used for bone and joint injuries because they are generally colder than ice and stay cold longer.

A.  

True

B.  

False

Reset

underfloor, cellular concrete floor, cellular metal floor, surface, wireway and busway are all kind of
A. raceways
B. conduit
C. wiring
D.NEC rules

Answers

Answer:

Option C

Explanation:

Underfloor, cellular concrete floor, cellular metal floor, surface, wireway and busway are all kind of wiring.

In these wiring method, a conduit body or a box is installed at  conductor splice, outlet, switch, junction, termination or pull point.

Hence, option C is correct

8.3 code practice edhesive PLEASE HELP AND HURRY
Write a program that uses an initializer list to store the following set of numbers in an array named nums. Then, print the array.

14 36 31 -2 11 -6

Sample Run
[14, 36, 31, -2, 11, -6]

ALSO I DONT NEED A SUM I NEED AN ARRAY

Answers

Answer:

numbers = '14 36 31 -2 11 -6'

nums = numbers.split(' ')

for i in range(0, len(nums)):

  nums[i] = int(nums[i])

print(nums)

The program is an illustration of arrays and lists.

Arrays and lists are variables that are used to hold multiply values in one variable

The program in Python, where comments are used to explain each line is as follows:

#This gets input for the list of numbers

numbers = input()

#This splits the numbers into a list

numList = numbers.split(' ')

#This iterates through the list

for i in range(len(numList)):

   #This converts each element to an integer

   numList[i] = int(numList[i])

#This prints the list

print(numList)

Read more about Python lists at:

https://brainly.com/question/24941798

Other Questions
What does the term "catastrophic event" mean to you Find the equation (in terms of x ) of the line through the points (-1,0) and (4,5) Calculate the volume of this cone.Give your answer to 1 decimal place.11 cm height 6 cm across What makes people speak out against vicious laws?WILL MARK BRAINLIEST IF IS AT LEAST A HALF A PAGE LONG! Which system is made up of the fluids and cellsthat help protect the body against infection?O the endocrine systemO the integumentary systemO the circulatory systemO the lymphatic system According to the graph, which of these statementsis true?O Over history, the source of immigration to theUnited States has shifted from Europe to Asiaand the Americas.O Over history, the source of immigration hasstayed the same.Over history, Europe has become a moredominant source of immigration to the US. Sequence and Chronological are synonyms. What is the difference between the two? PLEASE HELP! What is the speaker's overall opinion of the subject in "The Unknown Citizen"? A) He is of value to society. B) He has a great influence on others. C) He is a sad and worthless person. D) He should make better decisions. Help me please... please I beg of you.. PLEASEE HELP WILL GIVE BRAINLIEST SHOW STEPSSSA water tank holds 1,216 gallons but is leaking at a rate of 5 gallons per week. A second water tank holds 1,520 gallons but is leaking at a rate of 9 gallons per week.After how many weeks will the amount of water in the two tanks be the same? A 1.50 kg rock is thrown up into the air from ground level, reaches a maximum height of 7.00 m, then returns to the ground. Calculate the rock's momentum as it strikes the ground What is the area of the composite figure? A religious war fought between the Christians and the Muslims.1. crusades2. pope3. feudal system4. hierarchy I NEED ASAP DUE IN 20 MINS Question 9 of 10Soul music captured the feelings of pain, pride, passion, love, hope, anddespair that many African Americans were feeling.A. TrueB. False Kareem is a salesman at Best Buy. On each sale, he earns a commission of 12%. One of his customers bought a TV for $550 and a video game for $65. How much did Robert earn in commissions from these sales? What is an advantage of a "compact-size" over a "elongated-size" nation?A Compact nations will have greater access to seaports.B. Compact nations population will be composed of many diverse ethnic groups.C. Compact nations will have an effective internal communication system.D. Compact nations tend to be more pro-democratic. that is 137 words and thank ypou marked brainliest Jabal walks at a rate of 2.5 meters per second (m/s).Michael walks at a rate of 2 meters per second (m/s).They both leave their houses at the same time to walk to school.They walk down the same street in the same direction.Michael's house is 100 meters closer to school than Jabal's house. *7. A family going on vacation rents a van for $160 plus $75 per day. The total bill was $760. How many days was the van rented? *A. 7 daysB. 8 daysC. 9 daysD. 10 days