A local company is expanding its range from one state to fifteen states. They will need an advanced method of online communication and someone to design an advanced and thorough database to store a lot of information. Who should they hire to assist with both these goals?

a Database Architect and a Computer System Analyst who focuses in interactive media
a Computer Hardware Engineer and a Software Developer who focuses in interactive media
a Software Developer and a Web Developer who focuses in programming and software development
a Web Administrator and a Computer System Analyst who focuses in information support and services

Answers

Answer 1

Answer:

the answer is C,a a Software Developer and a Web Developer who focuses in programming and software

Brainlist me if im right

Answer 2

Answer:

C is correct

Explanation:


Related Questions

Create a Python program to solve a simple pay calculation.

Answers

Answer:

def weeklyPaid(hours_worked, wage):  

   if hours_worked > 40:  

       return 40 * wage + (hours_worked - 40) * wage * 1.5

   else:  

       return hours_worked * wage  

 

 

hours_worked = 50

wage = 100

 

pay = weeklyPaid(hours_worked, wage)  

 

print(f"Total gross pay: Rs.{pay:.2f} ")

Explanation:

provides gross pay

Margie has found a stock template to use. She changes a few things about the formatting and then saves the
template in the Templates Folder to use again. The next time Margie wants to access this template, she will go to
File, New, Sample templates.
File, New, My templates.
File, Open, My Documents.
File, Open, New Folder

Answers

Answer:

file open my documents

Explanation:

because if she saved it she would have to go to her documents to open it

Answer:

I listened to the other person and got the question WRONG. Had I gotten that question right I would have ended with all A's this semester. So thanks a lot and the answer is File, New, My Templates

Explanation:

How do you reflect yourself in the topic (filters)​

Answers

In what topic ?? Please explain more

Little Italy Pizza charges $14.95 for a 12-inch diameter cheese pizza and $17.95 for a 14-inch diameter cheese pizza. Write the pseudocode for an algorithm that calculates and displays how much each of these earns the establishment per square inch of pizza sold. (Hint: You will need to first calculate how many square inches there are in each pizza.)

Answers

Answer:

Following are the pseudocode to this question:

Declare variables A1, A2, B1, B2, C1,C2

Initialize B1 to 14.95

Initialize B2 to 17.95

Calculate A1=3.14*12*12/4

Calculate A2=3.14*14*14/4

Calculate C1=B1/A1

Calculate C2=B2/A2

PRINT "12 inches pizza earns $"+C1+" PER square inch"

PRINT "14 inches pizza earns $"+C2+" PER square inch"

Explanation:

In the above-given code, six variable "A1, A2, B1, B2, C1, and C2" is declared, in which "B1 and B2" is used for initializing the given value, in the next step "A1, A2, C1, and C2" variable is declared that calculates and store its values and use the print method to print its stored value with the message.  

visual media that gives the appearance of a movement can be a collection of graphics

Answers

its called animation, a collection of a movement of graphics.

The local library dealing with a major computer virus checked its computers and found several unauthorized programs, also known as ______.

A. Software
B. Hardware
C. Malware
D. Torrents

Answers

Answer:

malware

Explanation:

Answer: C. Malware

i just did it

Snippet 1: check_file_permissions.c #include
1
#include
#include
int main (int argc, char* argv[])
{ char* filepath = argv[1];
int returnval;
// Check file existence returnval = access (filepath, F_OK);
if (returnval == 0) printf ("\n %s exists\n", filepath);
else { if (errno == ENOENT) printf ("%s does not exist\n", filepath);
else if (errno == EACCES) printf ("%s is not accessible\n", filepath);
return 0; }
// Check read access ...
// Check write access ...
return 0;
}
0.
(a) Extend code snippet 1 to check for read and write access permissions of a given file
(b) Write a C program where open system call creates a new file (say, destination.txt) and then opens it. (Hint: use the bitwise OR flag)
1. UNIX cat command has three functions with regard to text files: displaying them, combining copies of them and creating new ones.
Write a C program to implement a command called displaycontent that takes a (text) file name as argument and display its contents. Report an appropriate message if the file does not exist or can’t be opened (i.e. the file doesn’t have read permission). You are to use open(), read(), write() and close() system calls.
NOTE: Name your executable file as displaycontent and execute your program as ./displaycontent file_name
2. The cp command copies the source file specified by the SourceFile parameter to the destination file specified by the DestinationFile parameter.
Write a C program that mimics the cp command using open() system call to open source.txt file in read-only mode and copy the contents of it to destination.txt using read() and write() system calls.
3. Repeat part 2 (by writing a new C program) as per the following procedure:
(a) Read the next 100 characters from source.txt, and among characters read, replace each character ’1’ with character ’A’ and all characters are then written in destination.txt
(b) Write characters "XYZ" into file destination.txt
(c) Repeat the previous steps until the end of file source.txt. The last read step may not have 100 characters.

Answers

Answer:

I don't know  you should figure that out good luck

Explanation:

good luck

Which code segment results in "true" being returned if a number is odd? Replace "MISSING CONDITION" with the correct code segment.
a) num % 2 == 0;
b) num % 2 ==1;
c) num % 1 == 0;
d) num % 0 == 2;

Answers

Answer:

b) num % 2 ==1;

Explanation:

Which code segment results in "true" being returned if a number is odd? Replace "MISSING CONDITION" with the correct code segment.

Write a user input program that simulates a game of a rolling pair of dice. You can create/simulate rolling one die by choosing one of the integers values of 1, 2, 3, 4, 5, or 6 at randomly. The number that the user chooses will represents the number on the dice after it is rolled. As a hint use Math.random Which will perform the computation to select a random integer between 1 and 6. Assign the value to a variable to represent one of the dice that are being rolled. Perform this operation twice then you will add the results in order to obtain the total roll. Your program should output the number showing on each dice as well as the total roll. For example:

Answers

Answer:

Follows are the program to this question:

public class Main//defining a class  

{

  public static void main(String[] bax)//main method

  {

       int d1,d2,r;   //defining integer variables  

       d1 = (int)(Math.random()*6) + 1;//defining d1 variables that use random method to store a random value  

       d2 = (int)(Math.random()*6) + 1;//defining d2 variables that use random method to store a random value

       r= d1 + d2;//defining r variable that adds d1 and d2 values

       System.out.println("On the first time die will gives: " + d1);//print values with the message

       System.out.println("On the second time die will gives: " + d2);//print values with the message

       System.out.println("The total roll value is: " + r);//print values with the message

   }  

}  

Output:

On the first time die will gives: 6

On the second time die will gives: 1

The total roll value is: 7

Explanation:

In this code three integer variable "d1,d2, and r" is declared, in which the "d1 and d2" variable is used, that uses the random method to hold a random value from 1 to 6 in its variable.

In the next step "r" variable is declared that calculates the addition of the "d1 and d2", and at the last, it uses the print method to print value with the message.  

BitTorrent, a P2P protocol for file distribution, depends on a centralized resource allocation mechanism through which peers are able to maximize their download rates.
True or False?

Answers

Answer:

yes. it is true. mark as brainlest

what is the processing speed for the second generation of computers​

Answers

10mbp

I hope it helps you

Service and software companies typically have a high return-on-assets ratio because they require lower blank as compared to manufacturing companies.

Answers

Answer:

So whats the question here? Your just saying a statment ...

Explanation:

Answer:

Resources

Explanation:

The logical answer would be resources. As someone who has ran both, a software company requires less physical resources such as materials, tools, a large labor force, etc. With a manufacturing company, it requires a lot more tangible resources to be successful. Not sure if that is the correct answer, but it is the most logical one.

Suppose a Java method receives a List and reverses the order of the items it contains by removing each item from the front of the list, pushing each item onto a Stack, and after all items are pushed, popping the items from the stack and inserting each item at the end of the list. Assume push and pop are O(1). What is the expected Big-O running time if: a. If an ArrayList is passed. Explain your answer. b. If a Linked List is passed. Explain your answer.

Answers

Answer:

poop poop poopoop poop pooop

1-5. Discuss briefly the function and benefits of computer network. (5pts​

Answers

Computer networks allow an unlimited amount of computers to communicate with each other. This is especially useful in enterprise environments, as technicians have to deal with hundreds of computers at a time. Computer networks make it easier to share files, increase storage capacity, better communication, easier to to control computers remotely, easier to share resources, ability to share a single internet connection on multiple devices. Computer networks also have a lot of cost benifits too, as network administration is centralised, meaning that less IT support is required, and you can cut costs on sharing peripherals and internet access.

Hopefully this helps you out!

Create a text file content.txt and copy-paste following text (taken from Wikipedia) into it: A single-tasking system can only run one program at a time, while a multi-tasking operating system allows more than one program to be running in concurrency. This is achieved by time-sharing, dividing the available processor time between multiple processes that are each interrupted repeatedly in time slices by a taskscheduling subsystem of the operating system. Now, write a C program that opens content.txt file for reading and calls fork() function. The child process in the program will print first 150 characters from the file and the remaining characters will be printed by the parent. However, at the

Answers

Answer:

s0 you should figure that out because I don't know how to

Explanation:

good luck

How do you change the slide layout?​

Answers

Answer:

1) In Normal view, on the Home tab, click Layout.

2) Pick a layout that best suits the content of your slide.

3) On the View tab, click Slide Master.

4) The slide layouts appear as thumbnails in the left pane below the slide master.

5) Do one or both of the following:

- Click the layout you want and customize it. You can add, remove, or resize placeholders, and you can use the Home tab to make changes to fonts, colors, and other design elements.

- Click Insert Layout to add a new slide and format it.

6) Click Close Master to stop editing layouts.

-Your revised slide layout will be available to insert as a new slide anywhere in your presentation.

7) Click Design and point to any theme.

8) Click the down arrow under that appears under the themes panel.

9) Click Save Current Theme, give the theme a name, and click Save. Your new theme will contain your newly revised slide layout and will be available in Themes gallery.

Scenario
You are sitting on a chair in a large room. You see an empty chair, facing you, across the room and it looks like it is very comfortable and reclines. You can probably get a power nap in on it. You need to get to that chair on the other side of the room and sit in it.

Answers

Answer:

Just sit on the better chair

What is the major difference between the intranet and extranet?
Question 36 options:

Intranets hold more importance

The major difference between the two, however, is that an intranet is typically used internally.

Extranets improve internal communications

None of the above

Answers

Explanation:

Iinternet is hudge graphicla network and intranet is small network as compare to internet

When preparing a photo for a magazine, a graphic designer would most likely need to use a program such as
-Microsoft Excel to keep track of magazine sales.
-Microsoft Word to write an article about the photo.
-Adobe Photoshop to manipulate the photo.
-Autodesk Maya to create 3-D images that match the photo.

Answers

Answer:

C. Adobe Photoshop To Manipulate The Photo.

Explanation:

:)

Answer:

C

Explanation:

HTML, the markup language of the web, specifies colors using the RGB model. It uses a two-digit hexadecimal (that is, base 16) representation for each component of the vector, and concatenates the three numbers together to form one large, six-digit number. For instance, the HTML color code #80FF3B has red component 80, green component FF, and blue component 3B. In hexadecimal, the digits 0 through 9 have their usual meanings, but the letters A through F also function as digits, and have the meanings 10 through 15, respectively. Because hexadecimal means base 16, a two-digit number such as 3B thus has the meaning 16⋅3+11=59. The 16 is used because the 3 is in the 16s place, and the 11 is the meaning of the digit B. (If you found this introduction to hexadecimal notation too brief, consult the web for more details.) What is the maximum number representable with two hexadecimal digits?

Answers

Solution :

It is given that :

The digits 0 through 9 in hexadecimal have their usual meanings. But letters A through F function like the digits and it means digits 10 through 15, respectively.

Now the base of a hexadecimal is 16.

Now we know from 0 to 9  [tex]$\rightarrow$[/tex] A, B, C, D, E, F

Now the maximum two digits hexadecimal numbers are =  F F

So, F F  [tex]$= 16 \times 15 + 16^0 \times 15$[/tex]

            = 255

Trace the output of this code

Answers

Answer:

The output is 5

Explanation:

Given

Dim x As Integer

x = 5

If x <=5 Then x = x + 1

Label1.text = x -1

Required

The output

On the second line of the code, x=5

The third line is an if condition which checks if x<=5

So, we have:

5 <= 5 ....This is true

So, x = x + 1 will be executed

[tex]x = 5 + 1[/tex]

[tex]x = 6[/tex]

The last line of the program subtracts 1 for x and outputs the result on Label1

Label1.text = x -1

Label1.text = 6 -1

Label1.text = 5

Hence, the output is 5

integral 3t+ 1 / (t + 1)^2​

Answers

Answer:

[tex]3ln|t+1|+\frac{2}{t+1} +C[/tex]

Explanation:

We'll be using u-substitution for this problem.

Let

[tex]u=t+1\\du=dt[/tex]

Substitute

[tex]\int\limits {\frac{3u-2}{u^2}} \, du[/tex]

Split the fraction

[tex]\int\limits {\frac{3u}{u^2} } \, du -\int\limits {\frac{2}{u^2} } \, du[/tex]

Move the constants out

[tex]3\int\limits {\frac{u}{u^2}du -2\int\limits {u^{-2}} \, du[/tex]

Simplify

[tex]3\int\limits {\frac{1}{u}du -2\int\limits {u^{-2}} \, du[/tex]

Integrate

[tex]3ln|u|+\frac{2}{u} +C[/tex]

Substitute

[tex]3ln|t+1|+\frac{2}{t+1} +C[/tex]

Read the following statement and state whether True or False.
A. Fateh Burj is located in Mohall (Punjab).__________
8. Pongal is celebrated in West Bengal.__________
C. Chand minar is also known as the Tower of Moon'.________
D. Rabindra Nath Tagore stared the 'Shanti Niketan' school.__________
E The national sport of India is football.________​

Answers

Answer:

A. false

8. false

c. true

d. true

e false

Answer:

A. False

B. False

C. True

D. True

E. False

Write two alternate functions specified below, each of which simply triples the variable count defined in main. These two functions are: a. Function tripleByValue that passes a copy of count by value, triples the copy and returns the new value.b. Function tripleByReference that passes count by reference via a reference parameter and triples the original value of count through its alias(i.e. the reference parameter)For example, if count

Answers

Answer:

Following are the code to this question:

#include <iostream>//header file

using namespace std;

int triplebyValue(int count)//defining a method triplebyValue

{

int x=count*3;//defining a variable x that multiply by 3 in the count  

return x;//return value of x

}

void triplebyReference(int& count)//defining a method triplebyReference that hold count variable as a reference in parameter

{

count*=3;//multipling a value 3 in the count variable

}

int main()//main method

{

int count;//defining integer variable

count=triplebyValue(3);//use count to call triplebyValue method

cout<<"After call by value, count= "<<count<<endl;//print count value with message

triplebyReference(count);//calling a method triplebyReference

cout<<"After call by reference, count= "<<count<<endl;//print count value with message

return 0;

}

Output:

After call by value, count= 9

After call by reference, count= 27

Explanation:

In this code two methods "triplebyValue and triplebyReference" are declared, which accepts a count variable as a parameter, and in both multiply the count value by 3 and return its value.

Inside the main method, an integer variable "count" is declared that first calls the "triplebyValue" method and holds its value into count variable and in the next, the method value is a pass in another method that is "triplebyReference", and use print method to print both methods value with a message.

Which TWO of the following are input devices that are parts of a laptop computer?

display screen
touch pad
scanner
mouse
keyboard

Answers

Answer:

Mouse and Keyboard.

its actually keyboard and touchpad!!

what is the impact of technology to the mankind​

Answers

Modern technology has revolutionized the way people all over the world communicate and interact. This revolution has led to a system of globalization which has fundamentally changed modern society in both good and bad ways.

The most important technological change over the past 20 years is the advent and popularization of the Internet. The Internet connects billions of people around the globe and allows a type of connectivity in ways which the world has never seen. Companies are able to do business with consumers from other countries instantaneously, friends and families are able to talk to one another and see each other regardless of location, and information sits at the fingertips of every person with a computer, tablet or phone.

Outside of the digital world, modern advances in machinery and science have also impacted everyday life. The modernization of travel has allowed humans to span more miles in their lifetime than at any point in history, and the advancement of medicine has given people longer lifespans.

While these changes have certainly been for the better, there are also plenty of negative results of modernization and globalization. Because the Internet streamlines massive amounts of information, it can easily be exploited. The loss of privacy is one of the most pressing issues in the modern world.

Technology has also had an impact on the natural world. Industrialization has led to the destruction of natural life and has possibly caused negative effects on our climate.

an algorithm to display multiplication table a number up to 12​

Answers

Explanation:

Explanation:They are

Explanation:They are 1) start the process

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 10

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T5) End for

Explanation:They are 1) start the process 2) Input N, the number for which multiplication table is to be printed 3) For T = 1 to 104) print M = N*T5) End for6) Stop the process

Use the drop-down menus to complete the sentences about the Calendar view Arrange command group.


Under the Calendar view, you will see your calendar as

by default.


When you create an appointment, you are creating an activity that will not send

to other people.


A meeting is an activity where individuals are invited and

are shared.



is an all-day incident placed on the calendar.

Answers

Answer:

Use the drop-down menus to complete the sentences about the Calendar view Arrange command group.

Under the Calendar view, you will see your calendar as  

✔ monthly

by default.

When you create an appointment, you are creating an activity that will not send  

✔ an invitation

to other people.

A meeting is an activity where individuals are invited and  

✔ resources

are shared.

✔ An event

is an all-day incident placed on the calendar.

Explanation:

edge 2021

The complete sentences about the calendar view arrange command group are as follows:

Under the Calendar view, you will see your calendar as monthly by default. When you create an appointment, you are creating an activity that will not send an invitation to other people.A meeting is an activity where individuals are invited and resources are shared. An event is an all-day incident placed on the calendar.

What do you mean by Calender view?

Calendar view may be characterized as a type of feature within calendar software in which the user can choose from various formats in order to view the calendar more accurately and interestingly.

A calendar view lets a user view and interacts with a calendar that they can navigate by month, year, or decade. A user can select a single date or a range of dates. It doesn't have a picker surface and the calendar is always visible.

Command and control functions are performed through an arrangement of personnel, equipment, communications, facilities, and procedures employed by a commander in order to execute its functions.

Therefore, the complete sentences about the calendar view arrange command group are well mentioned above.

To learn more about Calendar view, refer to the link:

https://brainly.com/question/17524242

#SPJ2

Suppose you have a string matching algorithm that can take in (linear)strings S and T and determine if S is a substring (contiguous) of T. However,you want to use it in the situation where S is a linear string but T is a circularstring, so it has no beginning or ending position. You could break T at eachcharacter and solve the linear matching problem|T|times, but that wouldbe very inefficient. Show how to solve the problem by only one use of thestring matching algorithm.

Answers

Answer:

no seishsssssssssssssssssssss

i have no clue how this app works


The purpose of Appetizers on the menu​

Answers

Answer:

An appetizer is meant to stimulate your appetite, making you extra hungry for your meal.

Explanation:

Usually an appetizer is a small serving of food, just a few bites, meant to be eaten before an entree, and often shared by several people.
Other Questions
When King Midas sees his reflection in a golden bowl the author writes, "It seemed to be aware of his foolish behavior, and to have a naughty inclination to make fun of him." In what ways does this description foreshadow, or hint, at what will happen to King Midas? As Nepal is rich in water resources, we can produce plenty of hydroelectricity and export it to different countries for our economy benefitsWhat do you think need to be done to achieve this? Find the indicated side of the right triangle x= why is carbon classified as an element 1. The thieves have been arrested by the police. How has globalization helped work against human rights violations around the world? O A. Companies have boycotted abusive governments as a punishment for these practices. B. Revolutions against abusive governments have made the investment climate insecure. C. Violating human rights is too costly to be profitable in the competitive international marketplace D. Improved global communications brings these abuses to the world's attention. Select the correct answer.Which statement is always true?A cross section parallel to the base of a right rectangular prism is a square.B. cross section perpendicular to the base of a right rectangular prism is congruent to the base.C. cross section parallel to the base of a right rectangular prism is congruent to the base.D. cross section perpendicular to the base of a right rectangular prism has the same dimensions as the base. Is poaching considered a limiting factor? (please explain why or why not) Which of the following is the best example of potential energy?Group of answer choicesA car stopped at the top of a hillA swimmer doing the backstrokeA bird making a nestA gymnast doing a cartwheel What base of this triangle A. 10 B. 8C. 80 D. 18 I gave Brainlist I NEED THIS ASAP!!! The residents of a city voted on whether to raise property taxes. The ratio of yes votes to no votes was 5 to 4. If there were 4045 yes votes, what was the total number of votes? formula of barium hydroxide and potassium superoxide 5What is the key difference between renewable and non-renewable resources 5. Find the equation of the line that isparallel to 8x + 6y +1 = 0 and passingthrough the point (-2, 6). Water is leaking out of an inverted conical tank at a rate of 12,500 cm3/min at the same time that water is being pumped into the tank at a constant rate. The tank has height 6 m and the diameter at the top is 4 m. If the water level is rising at a rate of 20 cm/min when the height of the water is 2 m, find the rate (in cm3/min) at which water is being pumped into the tank. (Round your answer to the nearest integer.) 1. The value of the digit 8 in the number 850.74 is * What do you think would happen if you never looked a person in the eyes during a convseration. How do you think the other person might feel? PostSomeMcytPhotosToSeeIfWeAreFriens 1/4( -1 + 4)+3/5 please help ME missing work! The sum of the interior angles of each polygon is 360. In the diagram ABCD=HGEF find the values of x and y look at photo below