_____ oversee the work of various types of computer professionals and must be able to communicate with people in technical and nontechnical terms.

Answers

Answer 1

Systems analysts oversee the work of various types of computer professionals and  communicate with people in technical and nontechnical terms.

Who works in an information systems?

The information systems field is known to be made up of people in a firm who set up and build information systems, the individuals who use those systems, and the people who are known to managing them.

Note that there is high demand for IT staff whose common example includes programmers, business analysts, systems analysts, etc.

Learn more about computer from

https://brainly.com/question/24540334


Related Questions

Web are websites that allow people to congregate online and exchange views on topics of common interest.

a. True

b. False

Answers

Answer:

B

Explanation:

B. False a web is not a Website

Electronic résumés have an attractive, highly formatted appearance. please select the best answer from the choices provided t f

Answers

Answer:

true

Explanation:

An electronic resume can carry so much data about the person, and it includes images also. Then the statement is true.

What is an electronic resume?

An electronic resume is termed as a resume that is read by a computer program that summarizes the information of each person.

The electronic resume has the data such as their parent name, education, skills, job experience, hobbies, languages, and so on.

Thus, the photo of the document about the project or internship that has been done in the past can be given on the electronic resume by uploading the certificate on the computer system along with the resume.

For example, in companies like Linkedin, and so on there are many companies that ask about the person before creating an account.

More about the electronic resume link is given below.

https://brainly.com/question/2798964

A network administrator is importing a list of certificates from an online source, so that employees can use a chain of trust and communicate securely with public websites. Which type of certificates are the network administrator currently importing

Answers

The type of certificates that the network administrator is currently importing is Root.

What do root certificates  mean?

Root certificates are known to be the backbone of any form of authentication and security in the area of software and also usually in  the Internet.

Note that they are often  issued by the certified authority (CA) and can also be  verified by its owner and as such it is the best for the network administrator  to use.

Learn more about certificates from

https://brainly.com/question/24931496

Post-production editing can only occur on a Mac computer, not a PC.
True
False

Answers

Answer:

false there is no real difference that would affect post production

You will read in two strings from a file cp4in_1. Txt at a time (there will be 2n strings, and you will read them until EOF) and then do the following. You alternately take characters from the two strings and string them together and create a new string which you will store in a new string variable. You may assume that each string is no more than 20 characters long (not including the null terminator), but can be far less. You must use pointers. You may store each string in an array, but are not allowed to treat the string as a character array in the sense that you may not have statements like c[i]

Answers

Use the knowledge in computational language in C++ to write the  a character array .

How to define an array in C++?

An Array is a set of values ​​arranged in lists and accessible through a positive numeric index. So, we have that each position of our Array is a variable of the type of our Array, so we have to have a way to initialize this set of variables.

So in an easier way we have that the code is:

#include <stdio.h>

#include <studlib.h>

int main()

{

File*fp;

fp=fopen("cp4in_1.txt","r");

char ch;

//while(1)

//{

while(!feof(fp))

{

char *s1,*s2,*s3;

s1 = (char*)malloc (20 *sizeof (char));

s2 = (char*)malloc (20 *sizeof (char));

s3 = (char*)malloc (20 *sizeof (char));

int i=0,j=0,x,y;

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s1+i)=ch;

i++;

}

while(1)

{

ch=getc(fp);

if(ch=='\n')

break;

*(s2+j)=ch;

j++;

}

for(x=0;x<i;x++)

{

*(s3+x)=*(s1+x);

}

for(y=0;y<j;x++,y++)

{

*(s3+x)=*(s2+y);

}

for(x=0;x<i+j;x++)

{

printf("%c",*(s3+x));

}

printf("\n");

getc(fp);

}

}

See more about C++ code at brainly.com/question/19705654

A ________ is a type of virus that self-propagates using the internet or other computer network.

Answers

Answer:

A computer worm

Explanation:

.....................................

Consider the following instruction mix: R-type I-type (non-lw/sw) Load Store Branch Jump 24% 28% 25% 10% 11% 2% a. What fraction of all instructions use data memory

Answers

Based on the number of instructions that use Data memory, the fraction of instructions that use data memory is 35%.

Which instructions use data memory?

The instructions that use data memory in the above table are Load and Store.

This means that the fraction is:

= Store + Load

Solving gives:

= 10% + 25%

= 35%

Find out more on executing instructions at https://brainly.com/question/26949355.

Write a statement that assigns the value 10 to the first element of an array of integers named minutes.

Answers

Answer:

Explanation:

i do not know what language you need because it has different syntax

Javascript:

const minutes = [];

minutes.push(10);

What is the intermediate value of arr after two iterations of the outer for loop in the call sort(arr)

Answers

Answer: D: "Ann" "Mike " "Bill " "Lisa" "Mary" "Jose" " Shari" "Walt"

Explanation:Goes through selection sort and after 2 iterations, the largest elements are swapped with the last 2 elements of the array.

The intermediate value of arr after two iterations of the outer for loop in the call sort(arr) is option C of the image attached.

What is intermediate value in programming?

This is known to be a variable that is often employed in assisting so that one can be able to compute what they want

Concluisvely, The intermediate value of arr after two iterations of the outer for loop in the call sort(arr) is option C of the image is because it will help you to have what you are after with the codes.

Learn more about ntermediate value from

https://brainly.com/question/11195842

#SPJ2

What are you doing to an image when you manipulate it?
A. downgrading the integrity of the image

B. creating a digital footprint of the image

C. digitally altering it

D. erasing the intrinsic data

Answers

Answer:

c digitally altering it

What do we call the kernel program that moves all of a process's frames from main memory to the disk or the other way around

Answers

Answer:

This is called the swapper

Explanation:

The swapper's main job is to move processes between memory, and storage.

A stream cipher encrypts data by XORing plaintext with the encryption key. How is the ciphertext converted back into plaintext

Answers

Answer:

A block cipher breaks down plaintext messages into fixed-size blocks before converting them into ciphertext using a key.

Explanation:

A ______ system writes data on two or more disks simultaneously, thereby creating a complete copy of all the information on multiple drives. Select the two correct answers, then click Done.

Answers

A raid 1 and mirrored system writes data on two or more disks simultaneously, thereby creating a complete copy of all the information on multiple drives.

What is Disk mirroring?

In data storage, disk mirroring is a term that connote the doubling of logical disk volumes into a different physical hard disks so that it will always be available.

Conclusively, Note that this is mostly used in RAID 1. A mirrored volume is known to be full logical depiction of separate volume copies and as such the answer above is correct.

Learn more about system from

https://brainly.com/question/25594630

A company notices their software is prone to buffer overflow attacks. They choose a popular development environment, Microsoft Visual Studio, to help avoid future attacks. What development environment feature would most help the company avoid future buffer overflows

Answers

Answer:

Compiler Option

Explanation: These help prevent buffer overflow attacks

Click this link to view O*NET’s Work Activities section for Petroleum Engineers. Note that common activities are listed toward the top, and less common activities are listed toward the bottom. According to O*NET, what are some common work activities Petroleum Engineers perform? Select four options.


performing for or working directly with the public

interacting with computers

getting information

analyzing data or information

making decisions and solving problems

assisting and caring for others

Answers

Answer: 2 3 4 5

Explanation:i got it wrong so here lol

Answer:

the first one and the last one r wrong the rest all right

Explanation:

flexibility
user control
mouse-free input
text alternatives
balance
enabling the user to change the font
and other elements on the page
enabling navigation for visually
impaired users who may rely
only on keyboards for pointing
and clicking
allowing blind users to understand
website images and video
allowing a web page to adjust
to different devices and screens

Answers

Hello!

The answers are:

-User control: enabling the user to change the font and other elements on the page.

-Mouse-free input: enabling navigation for visually impaired users who may rely only on keyboards for pointing and clicking.

-Text alternatives: Allowing blind users to understand website images and video.

-Flexibility: Allowing a web page to adjust to different devices and screens.

I hope that this helps you out!

How long does one smoke session stay in your system.

Answers

Answer:

1-2 days

Explanation:

In rare cases 25 days

How your private data and information are used, who has access to them, which techniques and technologies protect them, and the communications and preferences surrounding how they are handled are components of Internet

Answers

The security components of Internet describes how user's private data are used, who has access to them, which techniques and technologies protect them.

What are the security components of Internet?

The security components of Internet can be defined as a strategic process that highlights and describes how all end user's private data and information are used, who has access to them, which techniques and technologies protect them.

Furthermore, the communications and preferences surrounding how an user's private data and information are handled describes are the security components of Internet.

Read more on security here: https://brainly.com/question/14286078

#SPJ1

Which of the following media forms is the Federal Communications Commission able to regulate content on?
a. FM radio
b. AM radio
c. television stations
d. the Internet
d. satellite radio

Answers

Answer:

-FM radio

-AM radio

-television stations

Explanation:

Chris needs to take the opposite of a Boolean value. Which operator does so? A. == B. != C. = D. !

Answers

AIf the boolean is A,you would have to do !a

Explanation:

the explamation mark gets the opposite.So if 5 = !A, then A = -5

(dont quote me ,im not 100% postitive)

Drag each tile to the correct box.
Match each network type to an example of what it connects.
WAN
MAN
PAN
LAN
twenty computers in an office
laptop and a cell phone
a company's offices across a city
a company's offices across a country

Answers

In order of size:
PAN — Personal Area Network (phone hotspot, Bluetooth, AirDrop)
LAN — Local (town)
MAN — Metropolitan (city)
WAN — Wide (country, continent, planet)

Twenty computer in office —> LAN
Laptop + cell phone —> PAN
Offices across city —> MAN
Offices across country —> WAN

You have been asked to acquire a printer for a business. You have been told that it should be easy for users to print to the printer from their smartphones and tablets. What feature should you look for when selecting the printer

Answers

A feature that you should look for when selecting the printer is a wireless connection.

What is a printer?

A printer can be defined as an electronic output (peripheral) device that is designed and developed for printing paper documents containing texts or images.

In this scenario, a feature that you should look for when selecting the printer for this business is a wireless connection because it would make it easy for users to print to the printer from their smartphones and tablets, especially through the use of a bluetooth or wifi.

Read more on printer here: https://brainly.com/question/17100575

D. It's based on command and control models
5. The best way to support the growth of social media in your organization is to:
A. Develop a social media policy and strategy
B. Allow anyone in your organization to post on your organization accounts
C. Only repost/share information from other organizations in your organization accounts
D. Only post on your accounts during an emergency

Answers

The best way to support the growth of social media in your organization is to Develop a social media policy and strategy.

What is Social media policy?

A social media policy is known to be the rules and regulations that are used in policing the use of social media.

Conclusively, They help to give advise to any person, etc. who is acting as a representatives of a firm on the right use of social media and thus the  The best way to aid the growth of social media in your firm is to develop a social media policy and strategy.

Learn more about social media policy from

https://brainly.com/question/3653791

Write the pseudocode for two modules which could be incorporated into the application planned for Lungi in Question 1.   The first module must:  a. Allow Lungi to enter the description and size of the blankets.  b. Store the details entered in arrays.  c. Provide Lungi with the option to view the list of blankets captured.  If Lungi wishes to view the list of blankets, the contents of the arrays should be passed to another module.   The second module should:  a. Receive the arrays as arguments.  b. Write the contents of the arrays to a text file that Lun​

Answers

The sample pseudocode for the given question is:

ENTER #blanket size;STORE #blanket;DISPLAY "Do you want to see the blankets captured?" #answer;IF #answer: "Yes";

What is a Pseudocode?

This refers to the informal language that is used by computer programmers to produce an algorithm and is an important step in problem-solving.

The complete pseudocode is:

THENDISPLAY #blanketELSEEND

Read more about pseudocodes here:

https://brainly.com/question/24735155

#SPJ1

Really need help Which of these are ways that hackers gain access to computer systems? Select 3 options.


data validation

data validation


phishing

phishing


packet sniffing

packet sniffing


dumpster diving

dumpster diving


layered security

layered security

Answers

The ways that hackers gain access to computer systems are:

PhishingPacket sniffingDumpster diving

What is system attack?

There are different kinds of system attack. This is where the hacker often attacks the system so as to gather data or information about a system.

The different forms of attacks  includes dumpster diving, shoulder surfing, tailgating, phishing and others. Data validation is not an attack on system.

Learn more about hackers from

https://brainly.com/question/23294592

Answer:

Phishing

Packet sniffing

Dumpster diving

Explanation:

A computer hacker trying different combinations of characters to crack a password is a ________.

Answers

Answer:

Brute force attack

True or false? a binary file can never contain image or audio data.

Answers

Answer:

true

Explanation:

It is true that a binary file can never contain image or audio data.

What is a binary file?

A binary file is one that contains data in binary format, which consists of a series of sequential bytes, each of which is eight bits long.

The content must be interpreted by a program or a hardware processor that knows exactly how the content is formatted and how to read the data in advance.

Binary files are more efficient, which is one of their benefits. In terms of memory, storing values in numeric formats like IEEE 754, rather than text characters, uses less memory.

Furthermore, binary formats provide advantages in terms of access speed. Image or audio data can never be stored in a binary file.

Thus, the given statement is true.

For more details regarding binary file, visit:

https://brainly.com/question/14593514

#SPJ2

The range of cells receiving the content of copied cells is called the ____. A. receiver cell B. final cell C. receiving range D. destination area

Answers

The paste area is indeed the set of cells that will receive copied content, and the further discussion can be defined as follows:

Range cell:  

Inside Excel, a cell range is a cell group that has been chosen. Its range is typically symmetric (square), but it can also comprise individual cells. In a formula, a cell range can also be referenced.It refers to a set of organisms that use the address of the cell first and last cells in the range, separated by a colon, instead of a single cell address.

Find out more about the range cell here:

brainly.com/question/15513083

Top/Bottom Rules allow a user to apply conditional formatting to cells that fall within the top or bottom numbers or percentile. How many items will it allow the user to include in the rule?

the top or bottom 10 items or top or bottom 10% only
the top 10 items and top 10% only
the top or bottom 100 items only
any logical number of items or percentages in top or bottom value frames

Answers

The numbers of  items that the user can include in the rule is the top or bottom 100 items only.

What is Top/Bottom Rules?

Top/Bottom Rules is known to be a rule where there is a premade form of conditional formatting which is often used in Excel to alter the set up  of cells in a range.

Note that the Top/Bottom Rules will allow a user to make changes to the top or bottom 100 items only as it only pertains to things that are up and those that are at the bottom.

Learn more about Top/Bottom Rules from

https://brainly.com/question/1862654

The UNIX-based operating systems use ________ as a delimiter between parts of a pathname; Windows operating systems use ________

Answers

The UNIX-based operating systems use Linux as a delimiter between parts of a pathname; Windows operating systems use Microsoft.

What is operating system?

An operating system is a piece of software that controls and manages computers such as smartphones, tablets, computers, supercomputers, web servers, automobiles, network towers, smart watches, and other similar devices.

It is the operating system that makes it unnecessary to know a coding language in order to interact with computers.

Thus, Linux and Microsoft are correct options.

For more details about operating system, click here

https://brainly.com/question/11220987

#SPJ1

Other Questions
PEMDAS 4+5 x (6-2) what the answer how much work is done on a lamborghini car if a 3150 N force is exert to move it 75.5m to the side of the road? Which of the following is NOT correct? The technique of Southern hybridisation gives information on:1. Which colonies in a transformation experiment contain the gene of interest2. The length of repeat sequences in the technique of DNA fingerprinting.3. Where a gene sequence is located within a cloned DNA sequence4.The number of specific genes in a genome coding for a particular protein.5. The nature of the proteins made as a result of gene expression. Una ley que prohbe exhibir imgenes de cigarrillo o sus nombres comerciales en vehculos, cabinastelefnicas y escaparates ha entrado en vigor como parte de la campaa emprendida en Singapur paraerradicar el tabaquismo del pas. Las compaas tabacaleras han repintado flotas enteras de coches ycamiones para borrar los logotipos, los dueos de comercios han quitado carteles donde se anunciaba grandiversidad de marcas. La ley tambin prohbe la promocin de las ventas y la distribucin de muestrasgratuitas de tabaco. Se imponen fuertes sanciones a los pequeos comerciantes que infringen la nuevadisposicin. Hay una multa mxima de 5,000 dlares y un perodo de crcel de hasta seis meses, o ambaspenas, para quien cometa una primera infraccin; el reincidente se har acreedor al doble de la pena. Desdeque el Ministerio de Salud lanz esta campaa en contra del tabaco, el porcentaje de fumadores descendidel 23 por ciento al 13.5 por ciento en 1988.a. expositivob. descriptivoc. argumentativod. narrativo Help me pls I don't understand this pls help me! :IA water tank measures 5 in. by 10 in. by 7 in. If each dimension of the tank were doubled, approximately how many more gallons can the larger tank hold? (Hint : There are 231 cubic inches in 1 gallon.)A: The large tank holds about 2,450 gal more water than the small tank.B: The large tank holds about 10 gal more water than the small tank.C: The large tank holds about 22 gal more water than the small tank.D: The large tank holds about 16 gal more water than the small tank. Which of the following could be the equation of the function below? on a coordinate plane, a curve crosses the y-axis at y = negative 3. it has a maximum at y = 1 and a minimum at y = negative 3. it goes through 1 cycle at pi. y = negative 2 cosine (4 (x pi)) minus 1 y = 2 cosine (x pi) 1 y = negative 2 cosine (2 (x pi)) minus 1 y = 2 cosine (4 (x pi)) 2 where can salt water be found? A window is shaped like a parallelogram. The base is 16 inches long. The area is 608 square inches. What is the height of the window? justify your answer by explaining your solution in the space provided HELPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS*URGENT*During halftime of a game, a sling shot launches T-shirts at the crowd. A T-shirt is launched from a height of 6 feet with an initial upward velocity of 72 feet per second. The T-shirt is caught 38 feet above the field. How long will it take the T-shirt to reach its maximum height? What is the maximum height? What is the range of the function that models the height of the T-shirt over time? What is the most common language spoken in Latin America? HELP ME OUT PLS!!!!!! During which lunar phase would you observe the highest tides? A) Phase 1 B) Phase 2 C) Phase 3 D) Phase 4 What is common to the terrestrial planets? A. equal rotational periods around the Sun B. thin crust and a dense iron core C. solid outer layer and an atmosphere D. a solid outer layer composed of rock and minerals [tex]\sqrt{25x^{2} } =-2x\sqrt{100x}[/tex] HELP PLS I WILL MARK BRAINLIEST 8. Mechanical engineer Junee is switching sub-fields. Shes interested in creating better artificial limbs for injured veterans and others who need them. What specialty is Junee moving into?electronicstructuralbiotechnologicalrobotics In the early 1900's, what madeimperialistic actions on the partof the United States go into aslowing trend?A. The United States was suffering an economicrecession that prompted a domestic focus. B. The U. S. Wanted to maintain the createdexpansion and not 'push its luck' with othernations. C. The countries of Europe put sanctions on theUnited States. D. World War I began and the U. S. Had thelargest navy. Setting the temperature of a home from a smartphone app is an example of what new technology? Question 2 options:Machine learningAutonomous devicesThe Internet of ThingsCloud computing Mueller Corp. determines that it is more likely than not that $100,000 of its $500,000 deferred tax asset will not be realized in future years. Mueller should record a journal entry that includes a ________ to _________. Almost every solid surface in the Solar System is covered with __________, most of which formed during a period of heavy bombardment. Group of answer choices The circumference of a round mirror is 32 inches. What is the radius of the mirror?