*explain why computer literacy is vital to access in today’s business work

Answers

Answer 1

Answer:

Computer literacy is vital to access in today’s business work because of advanced technology which ensured that most companies run a computerized system as against the manual one which was existent in the past.

The use of computerized system enables work to be done faster and in a more accurate manner which is why bring a computer literate is widely embraced in the world today.


Related Questions

how do I make my own algorithms ​

Answers

Answer:

Step 1: Determine the goal of the algorithm. ...

Step 2: Access historic and current data. ...

Step 3: Choose the right model(s) ...

Step 4: Fine tuning. ...

Step 5: Visualise your results. ...

Step 6: Running your algorithm continuously.

Get a basic understanding of the algorithm.
Find some different learning sources.
Break the algorithm into chunks.
Start with a simple example.
Validate with a trusted implementation.
Write up your process.

How do professionals address their problems?


a.
With grace and malfeasance
b.
With grace and maturity
c.
With griping and maturity
d.
With griping and malfeasance

Answers

Answer:

b, with grace and maturity

B) Grace and maturity is the most professional way you could address problems

What breakthrough in sound recording facilitated stereophonic recording? Ο Α. overdubbing O B. multitrack recording O C. digital recording OD. Invention of the microphone O E. invention of the coaxial cable​

Answers

Answer:

D. Invention of the microphone

Explanation:

Indeed, as a result of the invention of the Microphone, stereophonic recordings were made possible. Note that stereophonic recording in simple terms involves the recording of sound by simultaneously using two microphones in other enrich the human hearing experience.

Thus, without such a breakthrough, stereophonic recording technology might have not been facilitated.

When a new user visits your proprietary site, what is typically the first method of interaction with them

Answers

Answer:

Log file entry notifying you of new user activity

Explanation:

Log files are records of the timeline of activities in a computer system. These files contain information about new users of a site as well as the activities they performed on the site.

The internet protocol address of the visitor, the time of visit, as well as the features clicked on, or accessed by him, example, videos or images are all registered in the log file. The owner of the site can use the information sourced from the log files to perform site analytics.

What symbol should you look for to determine who owns the intellectual property of a website?

Answers

Answer:

the logo of the company or corporation

Explanation:

Usually, the symbol that determines who owns the intellectual property is the logo of the company or corporation. The logo of a website is technically the logo of the brand which has the rights to all of the information represented on the site and ultimately the intellectual property of the site itself. Since there are various board members that usually make up the company that owns the intellectual property, the logo is a way of representing all of these members as a single entity.

Answer: D the copyright symbol

Explanation: I hope this helps you out

To fix a problem you are having with you PC, you have determined that you must flash the computer's BIOS. Which of the following would MOST likely need to be completed prior to flashing the BIOS?

a. Download the flash utility or tool from the manufacturer's website
b. Properly identify the motherboard
c. Locate the flash utility or tool that was shipped with your PC
d. Test the memory to ensure that it is functioning properly

Answers

Answer:

a. Download the flash utility or tool from the manufacturer's website

b. Properly identify the motherboard

Explanation:

In this scenario, you are trying to fix a problem you are having with your PC, you have determined that you must flash the computer's BIOS. The following would most likely need to be completed prior to flashing the BIOS;

a. Download the flash utility or tool from the manufacturer's website

b. Properly identify the motherboard.

3. Assuming that this incident took place in the United States, what law or laws has Henry violated?

Answers

Answer:

not enough info

Explanation:

who is Henry fdddd

On early computers, every byte of data read or written was handled by the CPU (i.e., there was no DMA). What implications does this have for multiprogramming

Answers

Answer:

Multiprogramming will be extremely difficult to be achieved.

Explanation:

If every byte of data read or written is handled by the CPU the implications this will have for multiprogramming are not going to be satisfactory.

This is because, unlike before, after the successful completion of the input and output process, the CPU of a computer is not entirely free to work on other instructions or processes.

What is the worst case time complexity of insertion sort where position of the data to be inserted is calculated using binary search

Answers

Answer:

O(n²)

Explanation:

The worse case time complexity of insertion sort using binary search for positioning of data would be O(n²).

This is due to the fact that there are quite a number of series of swapping operations that are needed to handle each insertion.

Consider an array of integers consisting of the numbers: 8 12 19 32 45 55 67 72 89 90 92. Suppose the binary search algorithm is applied to this list to search for the key 56 ( not in the list). Answer the following questions: What is the index of the first element in the array that is compared with the key and how is this index evaluated

Answers

Answer:

Answered below

Explanation:

Index of the first element compared to the key is 5. The element itself is 55.

This index is evaluated by the addition of the index of the first element which is 0(zero) and the the index of the last element which is 10.

( Index of the last element is determined by subtracting the one from the total number of elements)

After the addition, the result is divided by 2 to get the first index from which the binary search begins.

firstIndex = 0

lastIndex = array.length - 1

midpoint = (firstIndex + lastIndex) / 2

when you heat a pot on a stove, the handle gets warm. which type of heat transfer is possible

Answers

Answer:

conduction

Explanation:

The handle will warm up until it's total heat losses equal the total heat coming in. Heat comes in mostly by conduction from the body of the pot.

Answer:

Conduction, I think

Explanation:

Conduction is the heat transfer through objects touching.

Hope this helps :)

describe what measures should have been taken by the educational service and test preparation provider to avoid the security breach

Answers

Incomplete question. Here's part of the missing question;

The EducationS Review, a fictional company, is hit with a data breach that is making headlines. The Olianas-based educational service and test preparation provider inadvertently exposed files of at least 100,000 students in various parts of the country through its Web site. News of the breach was made public on Tuesday morning by a report in the local newspaper.

The files were exposed after the company switched the Internet service providers earlier this year. The sensitive information, which included personal data such as names, birth dates, ethnicities, and learning disabilities, as well as test performance, were easily accessed through a simple Web search and were available for at least seven weeks, according to the report. None of the information was password protected and was intended only to be viewed by EducationS authors.

Explanation:

It is important to note that the company did not make the information password protected, which creates a vulnerability.

Measures 1: only those with authentication password should have been allowed to access the information.

Measures 2:  prior to switching to a new internet service provider, an information risk assessment should have been done to ensure information security.

Assume the names variable references a list of strings. Write code that determines whether 'Ruby' is in the names list. If it is, display the message 'Hello Ruby'. Otherwise, display the message 'No Ruby'. starting out with python

Answers

names = []

if "Ruby" in names:

   print("Hello Ruby")

else:

   print("No Ruby")

Just populate the names variable with whatever strings you want.

The code to display 'Hello Ruby' is shown below:

if 'Ruby' in names:

 print(' Hello Ruby')

else:

 print(' No Ruby')

What is If- else Statement?

The true and false parts of a given condition are both executed using the if-else statement. If the condition is true, the code in the if block is executed; if it is false, the code in the else block is executed.

In Python, the if statement is a conditional statement that determines whether or not a block of code will be performed. Meaning that the code block inside the if statement will be executed if the programme determines that the condition defined in the if statement is true.

Given:

We write an if- else statement  code using the 'Ruby' in names will True if 'Ruby' is in names as our condition

if 'Ruby' in names:

 print(' Hello Ruby')

else:

 print(' No Ruby')

Learn more about if- else statement here:

https://brainly.com/question/14003644

#SPJ5

tip! if you want to not see notifications, just go to settings, go to notifications, and turn off notifications!​

Answers

Answer:

thanks that helps

Explanation:

Answer:

okok

Explanation:

Write a java program to create and display unique three digit number using 1,2,3 and 4 also count how many three digit number are there.

Expected

123

124

---

---

431

432

Answers

Answer:

Answered below

Explanation:

Class Unique{

public static void main(String args[]){

int myArray[] = {1, 2, 3, 4};

int newArray[];

int i;. int j; int k;

for(i = 0; i < myArray.length; I++)

for(j = 0; j< myArray.length; j++)

for(k = 0; k< myArray.length; k++){

if(i != j && j!= k && i != k ){

newArray.add(myArray[i] + myArray[j] + myArray[k]);

}

}

int count = 0;

for(int m = 0; m < newArray.length; m++){

count++;

}

System.out.print(newArray, count)

}

}

The code repeat 3 [forward 50 right 120] creates which shape?
a square
a circle
a pentagon
a triangle

Answers

Answer:

Triangle. D

Explanation:

I have no Idea, I was searching for the answer like most of you guys are doing. But my best guess is Triangle

Answer:

D. A triangle is your answer

Explanation:

The triangle is the only shape in this list that has 3 sides.

Answerer's Note:

Hope this helped :)

How many steps are in the SECRET to keyboarding success video?
4
5
6
7

Answers

Answer:

5

Explanation:

Answer:

there is 6 secrets

Explanation:

1. sit up straight

2.keep eyes on the txt

3.use the correct finger

4. keep a reasonable rhythm

5.erase your errors

6.tap the keys quickly

Determine the distance between point (x1, y1) and point (x2, y2), and assign the result to points Distance. The calculation is:
Distance =
(x2 – 21)2 + (y2 – yl)2

Answers

Answer:

2 feet

Explanation:

Match the appropriate words to complete the paragraph.Wireless networks have no clear boundaries, therefore securing communications requires strong (a)_____, (b)_____, and (c)_____ protocols. One of the most common wireless security threats is the presence of (d)_____ access points (APs). Rogue points can be set up for the benign purpose of free wireless access or for malicious purposes, such as gaining access to confidential data. Using an (e)_____ wireless hotspot, like so many found in public settings, leaves you vulnerable to become the victim of (f)_____.

Answers

Answer:

a. Encryption.

b. Authentication.

c. Strong.

d. Rogue.

e. Insecure.

f. Hacking.

Explanation:

In Computer technology, authentication can be defined as the process of verifying the identity of an individual or electronic device. Authentication work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials.

Basically, authentication ensures a user is truly who he or she claims to be, as well as confirm that an electronic device is valid through the process of verification.

Encryption is a form of cryptography and typically involves the process of converting or encoding informations in plaintext into a code, known as a ciphertext. Once, an information or data has been encrypted it can only be accessed and deciphered by an authorized user.

Some examples of encryption algorithms are 3DES, AES, RC4, RC5, and RSA.

Wireless networks have no clear boundaries, therefore securing communications requires strong encryption, authentication, and strong protocols. One of the most common wireless security threats is the presence of rogue access points (APs). Rogue points can be set up for the benign purpose of free wireless access or for malicious purposes, such as gaining access to confidential data. Using an insecure wireless hotspot, like so many found in public settings, leaves you vulnerable to become the victim of hacking.

The marketing team at Universal Containers wants to send an email to each lead received from its website. The country of the incoming lead should determine the language of the email that will be sent to the lead. How can system administrator automate this process

Answers

Complete Question:

The marketing team at Universal Containers wants to send an email to each lead received from its website. The country of the incoming lead should determine the language of the email that will be sent to the lead. How can system administrator automate this process?

Group of answer choices.

A. Create an email template for each language and an assignment rule to send the appropriate template.

B. Create an email template for each language and an auto-response rule to send the appropriate template.

C. Create an email template for each language and a workflow rule to send the appropriate template

D. Create a single email template and use the translation workbench to translate and send the appropriate template

Answer:

B. Create an email template for each language and an auto-response rule to send the appropriate template

Explanation:

Workflow management systems can be defined as a strategic software application or program designed to avail companies the infrastructure to setup, define, create and manage the performance or execution of series of sequential tasks, as well as respond to workflow participants.

Basically, workflow management systems facilitates the automation and management of business processes and controls the movement of work through the business process.

Some examples of workflow management systems used around the world are YAWL, Windows Workflow Foundation, Apache ODE, Collective Knowledge, Workflow Gen, PRPC, Salesforce.com, jBPM, Bonita BPM etc.

In this scenario, the marketing team at Universal Containers wants to send an email to each lead received from its website.

Hence, the system administrator can automate this process by creating an email template for each language representing the leads received from various countries and an auto-response rule to send the appropriate template that match a specific lead.

In the lab, you experimented with three different antivirus software applications: AVG, Windows Defender, and MalwareBytes. Why might someone use more than one application to protect their computer

Answers

Answer:

Explanation:

Different antivirus softwares use different techniques for analyzing data on a computer in order to find malware or any harmful data. This can provide extra layers of security to your computer and hopefully prevent harmful software from causing serious damage if they enter the system. Also every antivirus software has their own database of virus signatures which they use to compare and detect these viruses. Some may have info on these harmful viruses that others do not. Regardless it is not smart to have various antivirus software because they consume lost of computer resources and will ultimately slow down your computer.

have you ever had to adjust your communicatio style to egage a customer or roommate? what was the situation and outcome?

Answers

Answer: When I was the HR of my bank, one of our good customer was disappointed and was wanting to close his account. BM didn't want to loose him.Everybody tried to convince him but all in vain.Then ,I in my regional language and communication skills not only stopped him to close the account but also made him open a new account of his wife.

How does the Evaluate Formula dialog box help fix errors?

A. The dialog box checks the entire worksheet for any errors present.

B. A quick run of the entire worksheet checks all the formulas at once.

C. Each element of the formula is added to the box individually for checking.

D. The entire formula is entered into the dialog box and checked step by step. (:THE CORRECT ANSWER IS D :)

Answers

Answer:

D

Explanation: :)

this term describes a box opens up to provide additional options for working with a file

Answers

Answer:

Dialog box.

Explanation:

Dialog box describes a box that opens up to provide additional options for working with a file.

In Computer programming, software developers usually designed and develop a box-like area attached to all software applications or programs and file explorer for the completion of various tasks by the end users such as requesting for additional information or presentation of extra informations.

Some examples of the additional options made available by the dialog box are save as, rename, delete, copy etc.

A pitch can help convey important information in pre-production for it to receive the green light into production. True or false

Answers

Hdjdicodxjxjcjxjjxjxixisiwiwididiicjci hfkdixiwiejen dixicisjen djdjkd

use the internet to research the SYSTEM account. Why is it nessesary to include this account with full control on a directory

Answers

Answer:

It is essential for the existence of a helicopter administration over all other users on the system.

 

Explanation:

A system account is a computer user account that is generated by an operating system (OS) during installation of the OS and that is utilized by the user in accordance to the parameters with which it has been designed and the purpose which it was created.

A System account is usually referred to as a privileged account because it comes with full control on one or more directories. A directory is simply a location for file storage on a computer. Full access or control includes the ability to:

read directorieswrite to directoriesmake changes to and delete files, folder and subfolders. alter authorization settings for all files and subdirectories.

Besides control on the directory level, System Accounts which are also called Super Accounts which in addition to the above have permission to

install  and remove software applicationsupdate and or upgrade the computers operating system access directories and files which normal users cannot and should not.

System Accounts are therefore important for security reasons. They are configured to act as a supervisory account which can create, authorise and terminate other accounts and processes.

Some of their merits include the ability to:

Oversee, audit, and completely control all other privileges. forestall cyber attacks on the system from internal users or insiders. Establish and provide evidence for compliance with regulatory codes

Cheers

Select the correct answer.

Cynthia is using a social media app on her mobile device, but the device’s battery is running out. What trend in app development will enable her to continue using the app on another device?

A.

coding in HTML5

B.

cloud technology

C.

enterprise app development

D.

standardizing the hardware input in different devices

Answers

Answer:

B. cloud technology

Explanation:

There are various ways to make this possible but the best way would be using cloud technology. This would allow the entire media application to run on a server somewhere else and have the images and inputs completely streamed to and from the user's device. This allows the application to be able to run on any device that the user may have and even start on one device and transfer over to another while still having all your information and data saved and usable on each device.

Which sensitivity level is not a default available in Outlook 2016?


Normal

Personal

Confidential

Company Only

Answers

Answer:

Company only

Explanation: The sensitivity levels available for Outlook 2016 are Normal, personal,private and confidential, this sensitivity levels helps users to the intentions of the user of the product and it will help to give their plan on what and how to utilize the product. It is very important to make use of the sensitivity levels in your Outlook for better usage of the Microsoft Outlook.

Answer:

company only

Explanation:

because i took the test edge2020

One problem with dynamic arrays is that once the array is created using the new operator the size cannot be changed. For example, you might want to add or delete entries from the array similar to the behavior of a vector. This project asks you to create a class called DynamicStringArray that includes member functions that allow it to emulate the behavior of a vector of strings.
The class should have:
A private member variable called dynamicArray that references a dynamic array of type string.
A private member variable called size that holds the number of entries in the array.
A default constructor that sets the dynamic array to NULL and sets size to 0.
A function that returns size.
A function named addEntry that takes a string as input. The function should create a new dynamic array one element larger than dynamicArray, copy all elements from dynamicArray into the new array, add the new string onto the end of the new array, increment size, delete the old dynamicArray, and then set dynamicArray to the new array.
A function named deleteEntry that takes a string as input. The function should search dynamicArray for the string. If not found, return false. If found, create a new dynamic array one element smaller than dynamicArray. Copy all elements except the input string into the new array, delete dynamicArray, decrement size, and return true.
A function named getEntry that takes an integer as input and returns the string at that index in dynamicArray. Return "" string if the index is out of dynamicArray’s bounds.
Overload the operator[] so that you can get and change an element by an index integer. If the index is out-of-bounds, return a "" string.
A copy constructor that makes a copy of the input object’s dynamic array.
Overload the assignment operator so that the dynamic array is properly copied to the target object.
A destructor that frees up the memory allocated to the dynamic array.
Create a suitable test program to test your class.
You should name the project ASG10. When you zip up the project folder, ASG10, include all the files (.sln, .cpp, etc) and subdirectories (Debug, etc.).
**************************************************
Copy your DynamicStringArray from Assignment 10. Fix the program so all 13 tests work properly. Modify the definition of the overloaded operator [] and getEntry so they throw an OutOfRange exception if an index that is out of range is used. OutOfRange is an exception class that you define. The exception class should have a private int member and a private string member, and a public constructor that has int and string arguments. The offending index value along with a message should be stored in the exception object. You choose the message to describe the situation. Modify your test program and add tests that catch the new exception class.
You should name the project ASG14. When you zip up the project folder, ASG14, include all the files (.sln, .cpp, etc) and subdirectories (Debug, etc.).

Answers

Answer:

Un problema con las matrices dinámicas es que una vez que se crea la matriz utilizando el nuevo operador, no se puede cambiar el tamaño. Por ejemplo, es posible que desee agregar o eliminar entradas de la matriz de manera similar al comportamiento de un vector. Este proyecto le pide que cree una clase llamada DynamicStringArray que incluye funciones miembro que le permiten emular el comportamiento de un vector de cadenas.

La clase debe tener:

Una variable miembro privada llamada dynamicArray que hace referencia a una matriz dinámica de tipo cadena.

Una variable de miembro privada llamada tamaño que contiene el número de entradas en la matriz.

Un constructor predeterminado que establece la matriz dinámica en NULL y establece el tamaño en 0.

Una función que devuelve el tamaño.

Una función llamada addEntry que toma una cadena como entrada. La función debe crear una nueva matriz dinámica un elemento más grande que dynamicArray, copiar todos los elementos de dynamicArray en la nueva matriz, agregar la nueva cadena al final de la nueva matriz, incrementar el tamaño, eliminar el antiguo dynamicArray y luego establecer dynamicArray en el nueva matriz.

Una función llamada deleteEntry que toma una cadena como entrada. La función debe buscar la cadena en dynamicArray. Si no lo encuentra, devuelva falso. Si lo encuentra, cree una nueva matriz dinámica con un elemento más pequeño que dynamicArray. Copie todos los elementos excepto la cadena de entrada en la nueva matriz, elimine DynamicArray, reduzca el tamaño y devuelva verdadero.

Una función llamada getEntry que toma un número entero como entrada y devuelve la cadena en ese índice en dynamicArray. Devuelve la cadena "" si el índice está fuera de los límites de dynamicArray.

Sobrecargue el operador [] para que pueda obtener y cambiar un elemento por un índice entero. Si el índice está fuera de los límites, devuelve una cadena "".

Un constructor de copia que hace una copia de la matriz dinámica del objeto de entrada.

Sobrecargue el operador de asignación para que la matriz dinámica se copie correctamente en el objeto de destino.

Un destructor que libera la memoria asignada a la matriz dinámica.

Cree un programa de prueba adecuado para evaluar su clase.

Debería nombrar el proyecto ASG10. Al comprimir la carpeta del proyecto, ASG10, incluya todos los archivos (.sln, .cpp, etc.) y subdirectorios (Debug, etc.).

************************************************

Copie su DynamicStringArray de la Tarea 10. Corrija el programa para que las 13 pruebas funcionen correctamente. Modifique la definición del operador sobrecargado [] y getEntry para que generen una excepción OutOfRange si se usa un índice que está fuera de rango. OutOfRange es una clase de excepción que define. La clase de excepción debe tener un miembro int privado y un miembro string privado, y un constructor público que tenga argumentos int y string. El valor del índice infractor junto con un mensaje deben almacenarse en el objeto de excepción. Tú eliges el mensaje para describir la situación. Modifique su programa de prueba y agregue pruebas que detecten la nueva clase de excepción.

Deberías nombrar

Explanation:

A circle is represented as a set of x and y coordinates of the screen pixel, where the shape of the circle is drawn, and an integer represent the diameter of the circle. Please design and implement the Circle class with. A constructor that take in parameter to initialize the member data fields of the class A method to set the coordinates of the Circle to a different location Give code to create a Circle object

Answers

Answer:

Answered below

Explanation:

//Program is written in Kotlin programming language

Class Circle(xCoordinate: Double, yCoordinate: Double, diameter: Int){

var coordinateX = xCoordinate

var coordinateY = yCoordinate

var circleDiameter = diameter

fun diffLocation(x1: Double, y1: Double){

coordinateX = x1

coordinateY = y1

print (coordinateX, coordinateY)

}

}

//Tester class

Class Main{

fun main( ){

val circle = Circle(2.34, 4.56, 10)

print(circle.coordinateX)

print (circle.coordinateY)

circle.diffLocation( 3.4, 2.8)

}

}

Other Questions
Who kidnapped Leo frank A __________ is two or more atoms joined together. (4 points)celltissuemoleculeparticle can someone please help ;) Figurative language word/ advertisement What is the equation of the sinusoid shown in the graph?A. y=3cos(pi/2x)B. y=3cos(4x)C. y=cos(4x)D. y=3cos(1/4x) Plz answer fast and answer right I really need this Zachary had $95. He spent $3 per day for 8 days. Then he was given $24 to divide equallybetween himself and his 2 brothers. The following expression can be used to find theamount of money Zachary had after that.95 - 3.8+ 24 3Based on this expression, what is the amount of money Zachary had remaining?F $24G $71H $79J $253 (90 points) HELP ME IM TIMED Analyze the map below and answer the question that follows. A satellite map of Eastern Europe and Russia. Four arrows on the map point inwards from north, south, east, and west. The north arrow points from the Arctic. The west arrow points from the Atlantic and Western Europe. The south arrow points from Southern Asia. The east arrow points from the Pacific. Image courtesy of NASA The ocean to the east of Russia is the __________ Ocean. A. Arctic B. Pacific C. Indian D. Atlantic Please select the best answer from the choices provided In Mr. Johnsons third and fourth period class, 30% of the students scored an A or higher on a quiz. If 15 students scored an A or higher, how many students are in Mr. Johnsons third and fourth-period classesAnswer quickly THANK YOU!! Tour measures.10. Peace and development are complementary to each other. Justify. 32. Which idea do the authors of both "Eat Local"and "Let Them Eat Bananas" use to supporttheir different positions?A Food production gives people jobs.BFood grown locally often tastesbetter.C Food grown locally can be moreexpensive.Food transportation increases globalwarming. Find the volume of the solid generated by revolving the shaded region about the X-axis. Y y = sin x cos x Which resource best completes the diagram find each quotient -18/3 -5/-124/-6-10/-1-25/5-8/2 Someone plz help me plz ;-; on both plzzzz hey wut do yall think of my new song "Nothing Without You" by lucy i wrote this for u dkpls come back to me i cant survive on my own u were always by my side u were there for me and i wanna do the same but im nothing without u u were always there for me nothing without u because i wanna be with u iv seen dark days but u were there to keep me up and i wanna do the same but im nothing without u u taught me to be myself but im nothing without u when ur not around so pls come back to me Where is the Sun located O A. The Sun is the closest object to Earth in our solar system. B. The Sun is at the center of our solar system. c. The sun is the farthest object from Earth in our solar system O D. The Sun is at the edge of our solar system. Hal is three times as old as his nephew. Hal is 12 years old. Write a multiplication equation and solve the equation to determine his nephew's age. Suppose you flip a coin 100 times, with 53 tosses landing heads up. What percentage of the tosses would be tails? pppppppplllllllllllllllzzzzzzzzzzzzzzzzzzzzzzzzzzz help me