What is the most likely designation for an engineer in charge of a company's equipment and machinery? a. design engineer b. inspection engineer c. technical sales engineer d. maintenance engineer​

Answers

Answer 1

Answer: Maintenance engineer

Explanation:

Design engineer is an engineer that uses both mathematical and scientific methods to develop ideas that will be used and design that'll be used for a particular product.

Inspection engineers are the engineers that checks out roads, bridges etc and identify problems that such structures have so as to prevent accidents from happening.

Technical sales engineer advices the company and also give support with regards to products when technical expertise may be required.

Maintenance engineers are the engineers that are involved in checking, and servicing equipments and machinery and making sure that they're always functioning properly and in good, working conditions. These engineers ensures the smooth running of machines.

Based on the above scenario, the answer is maintenance engineers.

Answer 2

Answer:

d

Explanation:


Related Questions

The NeedsMet rating is based on both the query and the result

Answers

It is TRUE to state that the NeedsMet rating is based on both the query and the result.

How is this so?

The grade of Needs Met is based on both the question and the response. When awarding a Needs Met rating, you must carefully consider the query and user intent. The Page Quality rating slider is unaffected by the query. When providing a Page Quality rating to the LP, do not consider the query.

The Needs Met measure considers all aspects of "helpfulness," and many users consider low Page Quality results to be less useful than high Page Quality results. This should be reflected in your ratings. The HM [highly meets] grade should be assigned to sites that are useful, have high Page Quality, and are a good match for the query.

Learn more about query at:

https://brainly.com/question/25694408

#SPJ1

Kiara has been asked to manage staffing for the claims center. The claims center manages requests from across the country, so its daily call volume is quite large. Kiara wants to determine the optimal number of agents to staff the claims center. You will examine sample data on the number of calls made to the claims center, the duration of each call, and the length of time customers will be put on hold before speaking to an agent. Complete the following:
1. Open the NP_EX_3-2.xlsx workbook located in the Excel3 > Review folder included with your Data Files. Save the workbook as NP_EX_3_Claims in the location specified by your instructor.
2. In the Documentation sheet, enter your name in cell B3 and the date in cell B4.
3. In cell B4, use the TODAY function to display the current date.
4. Claims are labeled sequentially according to the pattern Claimnumber where number is an integer that increases by 1 for each new claim. In the Claims Center Log worksheet, in cell E5, enter Claim22515 and then use AutoFill to fill in the rest of the claim numbers. Fill in the values without formatting.
5. Enter the following calculations in the claims log (retaining the banded rows effect when you AutoFill formulas over rows):c. In column K, calculate the length of the call with the agent in minutes by subtracting the values in column J from the values of column G, and then multiplying the difference by 24*60. Use the ROUNDUP function to round the value to the next highest integer. Check your formula by verifying that the first call duration is 21 minutes.

Answers

To calculate the length of the call with the agent in minutes in column K, follow these steps:

In cell K5, enter the following formula: =ROUNDUP((G5-J5)2460,0)

Press Enter to calculate the duration of the first call.

Click on cell K5 to select it, then click on the small square in the bottom-right corner of the cell and drag it down to fill the formula down to the last row of data in column K.

Verify that the first call duration is 21 minutes.

What is a function?

Generally, In computer programming, a function is a block of code that performs a specific task and can be called from different parts of a program to execute that task. Functions are a way to modularize code and improve its readability, reusability, and maintainability.

They can take input values (arguments) and return output values, or they can simply perform a task without returning any value. In most programming languages, functions are defined with a name, a set of input parameters (optional), a block of code that defines the function's behavior, and an optional return value.

The process of defining a function is called function declaration or function definition, and the process of using a function is called function call or function invocation.

Read more about function

https://brainly.com/question/12431044

#SPJ1

C#
1. Create a new class called StandardSale
2. Add three private fields to the class:
_salesDate, a DateTime
_amount, a double
_quantity, an integer
3. Also, add properties with get and set accessors for each field, call them SalesDate, Amount, and Quantity.
In the "set" accessors, use if/else to limit Amount and Quantity to positive values and
to limit SalesDate to dates on or after 1/1/2000.
Use "else" to set Quantity and Amount to 0 and SalesDate to 1/1/2000 if the input values are invalid.
4. Add a constructor so that all three fields can be populated when a StandardSale object is instantiated.
5. Add a method called TotalSale that returns _amount * _quantity as a double.

Answers

Answer:

Hhhhhhjjjjjjkiiiiioooooooooioi

In a balanced budget, the amount is the amount

Answers

In a balanced budget, the Income amount is same as the expense amount.

What is a balanced budget?

A balanced budget is one in which the revenues match the expenditures. As a result, neither a fiscal deficit nor a fiscal surplus exist. In general, it is a budget that does not have a budget deficit but may have a budget surplus.

Planning a balanced budget assists governments in avoiding excessive spending and focuses cash on regions and services that are most in need.

Hence the above statement is correct.

Learn more about Budget:
https://brainly.com/question/15683430
#SPJ1

which location type would be most appropriate to select when using your laptop computer to access the Internet by using a wireless hotspot at at tradeshow

Answers

public network

Explanation:

the most appropriate location to select when using your loptop computer to access the internet by using a wireless hotspot at a tradeshow is at a public network

7. If an engine runs too hot or too cold for a long period of time, what can happen?
OA. Drivability problems
OB. Engine damage
OC. Excessive emission production
OD. All of the above

Answers

B engine damage.

Warming up your car before driving in cold weather can damage your engine

In this lab, you use what you have learned about searching an array to find an exact match to complete a partially prewritten C program. The program uses an array that contains valid names for 10 cities in Michigan. You ask the user to enter a city name; your program then searches the array for that city name. If it is not found, the program should print a message that informs the user the city name is not found in the list of valid cities in Michigan. The file provided for this lab includes the input statements and the necessary variable declarations. You need to use a loop to examine all the items in the array and test for a match. You also need to set a flag if there is a match and then test the flag variable to determine if you should print the the Not a city in Michigan. message. Comments in the code tell you where to write your statements. You can use the previous Mail Order program as a guide. Instructions Ensure the provided code file named MichiganCities.cpp is open. Study the prewritten code to make sure you understand it. Write a loop statement that examines the names of cities stored in the array. Write code that tests for a match. Write code that, when appropriate, prints the message Not a city in Michigan.. Execute the program by clicking the Run button at the bottom of the screen. Use the following as input: Chicago Brooklyn Watervliet Acme

Answers

Answer:

Complete the program as follows:

for(int i = 0; i<10; i++){

     if(inCity == citiesInMichigan[i]){

         foundIt = true;

         break;       }    }

   if(foundIt){         cout<<"It is a city";     }

   else{         cout<<"Not a city";     }

Explanation:

Required

Complete the pre-written code in C++ (as indicated by the file name)

The pre-written code; though missing in this question, can be found online.

The explanation of the added lines of code is as follows:

This iterates through the array

for(int i = 0; i<10; i++){

This checks if the city exists in the array

     if(inCity == citiesInMichigan[i]){

If yes, foundIt is updated to true

         foundIt = true;

And the loop is exited

         break;       }    } -- The loop ends here

If foundIt is true, print it is a city

   if(foundIt){         cout<<"It is a city";     }

Print not a city, if otherwise

   else{         cout<<"Not a city";     }

// MichiganCities.cpp - This program prints a message for invalid cities in Michigan.// Input: Interactive// Output: Error message or nothing#include <iostream>#include <string>using namespace std;int main(){ // Declare variables string inCity; // name of city to look up in array const int NUM_CITIES = 10; // Initialized array of cities string citiesInMichigan[] = {"Acme", "Albion", "Detroit", "Watervliet", "Coloma", "Saginaw", "Richland", "Glenn", "Midland", "Brooklyn"}; bool foundIt = false; // Flag variable int x; // Loop control variable // Get user input cout << "Enter name of city: "; cin >> inCity; // Write your loop here for (x = 0; x < NUM_CITIES; x++) { // Write your test statement here to see if there is // a match. Set the flag to true if city is found. if (inCity == citiesInMichigan[x]) { foundIt = true; cout << "City found." << endl; break; } else { foundIt = false; } } // Test to see if city was not found to determine if // "Not a city in Michigan" message should be printed. if (!foundIt) { cout << "Not a city in Michigan." << endl; } return 0; } // End of main()

You are working as a marketing analyst for an ice cream company, and you are presented with data from a survey on people's favorite ice cream flavors. In the survey, people were asked to select their favorite flavor from a list of 25 options, and over 800 people responded. Your manager has asked you to produce a quick chart to illustrate and compare the popularity of all the flavors.

which type of chart would be best suited to the task?
- Scatter plot
- Pie Chart
- Bar Chart
- Line chart

Answers

In this case, a bar chart would be the most suitable type of chart to illustrate and compare the popularity of all the ice cream flavors.

A bar chart is effective in displaying categorical data and comparing the values of different categories. Each flavor can be represented by a separate bar, and the height or length of the bar corresponds to the popularity or frequency of that particular flavor. This allows for easy visual comparison between the flavors and provides a clear indication of which flavors are more popular based on the relative heights of the bars.

Given that there are 25 different ice cream flavors, a bar chart would provide a clear and concise representation of the popularity of each flavor. The horizontal axis can be labeled with the flavor names, while the vertical axis represents the frequency or number of respondents who selected each flavor as their favorite. This visual representation allows for quick insights into the most popular flavors, any potential trends, and a clear understanding of the distribution of preferences among the survey participants.

On the other hand, a scatter plot would not be suitable for this scenario as it is typically used to show the relationship between two continuous variables. Pie charts are more appropriate for illustrating the composition of a whole, such as the distribution of flavors within a single respondent's choices. Line charts are better for displaying trends over time or continuous data.

Therefore, a bar chart would be the most effective and appropriate choice to illustrate and compare the popularity of all the ice cream flavors in the given survey.

for more questions on Bar Chart

https://brainly.com/question/30243333

#SPJ8

Pull the dollar amount that is being discounted for each of the products that are currently on markdown. Add this new column onto the end of your results and call it discount_amount.

Want a hint?
The discount amount

Answers

Add the sale price to the purchase price. Use the formula "=D2-C2" to add a new column called "discount amount" to the current results table. Duplicate this formula down to all rows.

What is the Excel formula for subtraction?

To begin a formula, click any empty cell, type the equal symbol (=), and then press Enter. Type a few numbers separated by a minus sign after the equal sign (-). 50-10-5-3, as an illustration. CLICK RETURN.

Why is it referred to as a concession rate?

The term "discount rate" is used to examine a sum of money that will be received in the future and determine its present worth. The definition of the word "discount" is "to deduct a sum." To determine a future value of money, a concession rate is subtracted.

To know more about column  visit:-

https://brainly.com/question/13602816

#SPJ1

Which of the following if statements uses a Boolean condition to test: "If you are 18 or older, you can vote"? (3 points)

if(age <= 18):
if(age >= 18):
if(age == 18):
if(age != 18):

Answers

The correct if statement that uses a Boolean condition to test the statement "If you are 18 or older, you can vote" is: if(age >= 18):

In the given statement, the condition is that a person should be 18 years or older in order to vote.

The comparison operator used here is the greater than or equal to (>=) operator, which checks if the value of the variable "age" is greater than or equal to 18.

This condition will evaluate to true if the person's age is 18 or any value greater than 18, indicating that they are eligible to vote.

Let's analyze the other if statements:

1)if(age <= 18):This statement checks if the value of the variable "age" is less than or equal to 18.

However, this condition would evaluate to true for ages less than or equal to 18, which implies that a person who is 18 years old or younger would be allowed to vote, which is not in line with the given statement.

2)if(age == 18):This statement checks if the value of the variable "age" is equal to 18. However, the given statement allows individuals who are older than 18 to vote.

Therefore, this condition would evaluate to false for ages greater than 18, which is not correct.

3)if(age != 18):This statement checks if the value of the variable "age" is not equal to 18.

While this condition would evaluate to true for ages other than 18, it does not specifically cater to the requirement of being 18 or older to vote.

For more questions on Boolean condition

https://brainly.com/question/26041371

#SPJ8

Instructions
Click the links to open the resources below. These resources will help you complete the assignment. Once you have created your file(s) and are ready to upload your assignment, click the Add Files button below and select each file from your desktop or network folder. Upload each file separately.
Your work will not be submitted to your teacher until you click Submit.

InstructionsClick the links to open the resources below. These resources will help you complete the assignment.

Answers

The assignment is about Telephone, internal combustion engine, and electrical light.

What is file?

A file is a  computer system container for storing data. Files used in computers are similar in characteristics to  paper documents used in libraries and office files. There are different types of files like text files, data files, folders, binary and graphic files and these different types of files store different types of data. A computer's operating system can store files  on optical discs, hard drives,  or other types of storage devices.

In most operating systems, a file must have a unique name within a specific directory. However, when creating a file name, some characters are considered illegal and therefore cannot be used. A file name consists of a name with an extension, also known as a file extension. The file extension is the two to four characters after the period of the full file name.

To learn more about file, refer;

https://brainly.com/question/29055526

#SPJ4

___________ is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Answers

Answer:

Supply chain disruption is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Explanation:

The context suggests we are discussing some type of challenge involving the relationships between customers, suppliers and a larger supply chain. A "global issue" involving "interdependencies among the customers and suppliers" points to potential supply chain disruption or issues in a supply network.

Since there is a "requirement to find out the interdependencies" between customers and suppliers, this suggests we need to identify and analyze how they are connected and dependent upon each other in order to resolve the broader "global issue." This information could then be used to make changes, build resilience or manage risks in the supply chain.

Hope this helps!

Answer:

Internet is global issues

What do those codes do???

What do those codes do???

Answers

Explanation:

Essentially,

<label for="fname"> First Name: </label>

Creates a label under "fname". The text that will be displayed is First Name.

<input type="text" id="fname" name="fname"

The input type is searching for text, which will be the user's entered name. After collecting the name, it then stores it into "fname".

Example:

First Name:

[enter name]

The same concept goes towards the botton email section as well.

Hope this helps! ^-^

-Isa

To make the monster pace, you needed the monster to turn ___ degrees.

1. 90
2. 180
3. 10
4. 45​

Answers

To make the monster pace, you needed the monster to turn 180 degrees: option 2.

What is graphic design?

Graphic design refers to an artistic process that is used for the creation of either two-dimensional or three-dimensional art works and animations, especially through the use of special application software.

In Computer technology, objects can be designed and developed to move from one point to another based on a set of executable codes and parameters.

In this context, you needed the monster to turn 180 degrees so as to enable it face a forward direction and then, allow it to pace or be in motion.

Read more on graphic design here: brainly.com/question/25299426

#SPJ1

program a macro on excel with the values: c=0 is equivalent to A=0 but if b is different from C , A takes these values

Answers

The followng program is capable or configuring a macro in excel

Sub MacroExample()

   Dim A As Integer

   Dim B As Integer

   Dim C As Integer

   

   ' Set initial values

   C = 0

   A = 0

   

   ' Check if B is different from C

   If B <> C Then

       ' Assign values to A

       A = B

   End If

   

   ' Display the values of A and C in the immediate window

   Debug.Print "A = " & A

   Debug.Print "C = " & C

End Sub

How does this work  ?

In this macro, we declare three integer   variables: A, B, and C. We set the initial value of C to 0 and A to 0.Then, we check if B is different from C using the <> operator.

If B is indeed different from C, we assign the value of B to A. Finally, the values of A and C are displayed   in the immediate window using the Debug.Print statements.

Learn more about Excel:
https://brainly.com/question/24749457
#SPJ1

Wollongong City council is interested in the growing tourism market and opens an office to launch services for people who travel on holidays and cannot look after their properties (houses or units) while they are away. This new office currently has 200 employees whose PCs are linked by a small LAN. Each PC shares files and also services (such as printing) with the others on the LAN. What type of network model is suitable to build a small LAN for this new office? How can you protect your LAN from Malware attacks?

Answers

Answer:

list five characteristics of cpu

xamine the following output:

Reply from 64.78.193.84: bytes=32 time=86ms TTL=115
Reply from 64.78.193.84: bytes=32 time=43ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=47ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=44ms TTL=115
Reply from 64.78.193.84: bytes=32 time=73ms TTL=115
Reply from 64.78.193.84: bytes=32 time=46ms TTL=115

Which of the following utilities produced this output?

Answers

The output provided appears to be from the "ping" utility.

How is this so?

Ping is a network diagnostic   tool used to test the connectivity between two network devices,typically using the Internet Control Message Protocol (ICMP).

In this case, the output shows   the successful replies received from the IP address 64.78.193.84,along with the response time and time-to-live (TTL) value.

Ping is commonly used to troubleshoot   network connectivity issues and measureround-trip times to a specific destination.

Learn more about utilities  at:

https://brainly.com/question/30049978

#SPJ1

Data Privacy may not be applicable in which of the following scenarios?

Answers

Answer:

A platform being hosted in a country with no DP laws but targeted at data subjects from a country with stringent laws.

Explanation:

No Data Privacy laws mean that there is a high likelihood of data being leaked to various third parties and unwanted websites.

Countries with stringent laws like China have a government that wants full control over the data of their people and the transaction of data from each of them in order to better monitor them.

. Write a program to calculate the square of 20 by using a loop
that adds 20 to the accumulator 20 times.

Answers

The program to calculate the square of 20 by using a loop

that adds 20 to the accumulator 20 times is given:

The Program

accumulator = 0

for _ in range(20):

   accumulator += 20

square_of_20 = accumulator

print(square_of_20)

Algorithm:

Initialize an accumulator variable to 0.

Start a loop that iterates 20 times.

Inside the loop, add 20 to the accumulator.

After the loop, the accumulator will hold the square of 20.

Output the value of the accumulator (square of 20).

Read more about algorithm here:

https://brainly.com/question/29674035

#SPJ1

Falcon Waste Management purchased land and a warehouse for $740,000. In addition to the purchase price, Falcon made the following expenditures related to the acquisition: broker’s commission, $44,000; title insurance, $10,000; miscellaneous closing costs, $13,000. The warehouse was immediately demolished at a cost of $32,000 in anticipation of the building of a new warehouse. Determine the amounts Falcon should capitalize as the cost of the land and the building

Answers

8,07,000 is the total amount to be capitalized.

Explain about the capitalization?

The term "capitalization" in finance refers to the entire debt and equity of a corporation, or its book value. The dollar value of a company's outstanding shares, or market capitalization, is determined by multiplying the current market price by the total number of existing shares.

Making the first letter of words' capital letters is the process of capitalization (an uppercase letter). The condition of being capitalized is another possible meaning. To uppercase the word polish, which is written with a lowercase p here, for instance, you would write Polish.

Capitalization is the combination of owner-owned and loaned funds. Therefore, it discloses the overall amount of money invested in a corporation. Share capital, loans, debentures, etc. Following are the standard categories for capitalization: standard capitalization

we must first total all of the expenses.

$7,40,000 for land and a warehouse

$44,000 in broker commission

$10,000 in title insurance

Added closing expenses $13000

=7,40,000 + 44,000 +10,000 +13000

=8,07,000

8,07,000 total cost to be capitalized

To learn more about capitalization refer to:

https://brainly.com/question/29099684

#SPJ1

What describes an original image that has text added and is shared freely online, usually for humor?
O A. remix
О в. meme
O C.
O D.
mashup
derivative
Reset
Next

What describes an original image that has text added and is shared freely online, usually for humor?O

Answers

Answer:

b

Explanation:

What are the three major areas in the data warehouse? Is this a logical division? If so, why do you think so? Relate the architectural components to the three major areas

Answers

The three major areas in the data warehouse are:

The enterprise data warehouse (EDW).The operational data store (ODS).The data mart.

Yea, this is logical division because it helps to give room for viewing data without any form of transformation or movement.

What is a Data Warehouse?

A data warehouse is known to be a term that connote a form of a central keep hold of information that can be examined to be able to make a lot of informed decisions.

Note that this is one where Data tend to flows into a data warehouse through the kind of transactional systems, relational databases, as well as other sources.

Since Data Warehousing make use of data and information obtained from a lot of  sources into a single comprehensive database. Therefore, The three major areas in the data warehouse are:

The enterprise data warehouse (EDW).The operational data store (ODS).The data mart.

Learn more about data warehouse from

https://brainly.com/question/28166807

#SPJ1

Assume a fully associative write-back cache with many cache entries that starts empty. Below is sequence of eight memory operations (The address is in square brackets):

Read Mem[300];

Write Mem[100];

Write Mem[100];

Read Mem[200];

Write Mem[200];

Read Mem[100];

Write Mem[100];

Write Mem[100];

Answers

Answer:

Please mark me the brainliest

We can use the following steps to simulate the given sequence of memory operations in a fully associative write-back cache:

Explanation:

1. Read Mem[300]:

  - The cache is empty, so we have a cache miss and bring the block containing Mem[300] into the cache.

  - The block is now in the cache.

 

2. Write Mem[100]:

  - The cache currently only contains a block for Mem[300], so we have a cache miss and bring the block containing Mem[100] into the cache.

  - The block is now in the cache.

  - The value of Mem[100] in the cache is updated with the new value.

 

3. Write Mem[100]:

  - The block containing Mem[100] is already in the cache, so we have a cache hit.

  - The value of Mem[100] in the cache is updated with the new value.

  - Note that this write operation is redundant, since the value of Mem[100] was already updated in step 2.

 

4. Read Mem[200]:

  - The block containing Mem[200] is not in the cache, so we have a cache miss and bring the block into the cache.

  - The block is now in the cache.

 

5. Write Mem[200]:

  - The block containing Mem[200] is already in the cache, so we have a cache hit.

  - The value of Mem[200] in the cache is updated with the new value.

 

6. Read Mem[100]:

  - The block containing Mem[100] is already in the cache, so we have a cache hit.

  - The value of Mem[100] in the cache is not changed.

 

7. Write Mem[100]:

  - The block containing Mem[100] is already in the cache, so we have a cache hit.

  - The value of Mem[100] in the cache is updated with the new value.

 

8. Write Mem[100]:

  - The block containing Mem[100] is already in the cache, so we have a cache hit.

  - The value of Mem[100] in the cache is updated with the new value.

  - Note that this write operation is redundant, since the value of Mem[100] was already updated in step 7.

At the end of these operations, the cache contains blocks for Mem[200] and Mem[100], with the value of Mem[200] being the most recent value written to that address. The value of Mem[100] in the cache is the same as the value written in step 8.

in most operating systems what is running application called?

Answers

Answer:

I believe it is just a task. Since there exists(on windows) the Task Manager application, where you can stop any running task, I think that they are called tasks

Explanation:

In most operating systems, a running application is typically referred to as a process. A process is an instance of a program that is being executed by the operating system. It represents the execution of a set of instructions and includes the program code, data, and resources required for its execution.

Each process has its own virtual address space, which contains the program's code, variables, and dynamically allocated memory. The operating system manages and schedules these processes, allocating system resources such as CPU time, memory, and input/output devices to ensure their proper execution.

The operating system provides various mechanisms to manage processes, such as process creation, termination, scheduling, and inter-process communication.

Learn more about operating systems here:

brainly.com/question/33924668

#SPJ6

Which option provides an easy ability to label documents that can then be used as the basis for a document search?
author
title
tags
modified

Answers

The option which provides an easy ability to label documents that can then be used as the basis for a document search is referred to as: B. title.

A document can be defined as a computer resource that enable end users to easily store data as a single unit on a computer storage device.

Generally, all computer documents can be identified by a title, size, date modified, and type such as;

SystemTextAudioImageVideo

A title is a feature that avail end users the ability to easily label a document, as well as serve as the basis for a document search on a computer. For example, "My list" is a title and it can be used to search for a document on a computer.

Read more on document here: https://brainly.com/question/24849072

Answer:

B: Title

Explanation: Edge 2023

Complete the sentence.
_______is a career discipline that focuses on developing new computing technologies and techniques.
O computer science
O information technology
O computer technology
O information systems

Answers

Answer:

Computer Science

Explanation:

These other options deal with different disciplines of computers. Information technology deals with the collecting and storing of data. Computer technology deals with the maintenance and work of a computer system. Information systems deals with the way that you can collect and store data.

,Computer Science_is a career discipline that focuses on developing new computing technologies and techniques. Hence, option A is correct.

What is tech support?

Tech support has been the acronym for technological support. A company has been requiring the backend support that helps in resolving the issues related to the technical products.

We know that Computer technology deals with the maintenance and work of a computer system.

The Information systems deals with the way that you can collect and store data.

These other options deal with different disciplines of computers, thus  Information technology deals with the collecting and storing of data.

The education discipline helps in providing a company with technological support has been information technology.

Thus,Computer Science_is a career discipline that focuses on developing new computing technologies and techniques. Hence, option A is correct.

Learn more about tech support, here:

brainly.com/question/21415070

#SPJ2

Describe a cellular network, its principle
components and how it works.

Answers

A cellular network is a contact network with a wireless last connection. The network is divided into cells, which are served by at least one fixed-location transceiver station each. These base stations provide network coverage to the cell, which can be used to send voice, data, and other types of information. It's often referred to as a mobile network.

The principal components of the cellular network will be explained below as follows-

BTS (Base Transceiver Station) - It is the most important part of a cell since it links subscribers to the cellular network for data transmission and reception. It employs a network of antennas that are dispersed across the cell.

BSC (Basic Station Controller) - It is a portion that interfaces between Basic Station Controllers and is connected to Basic Station Controllers via cable or microwave links, as well as routing calls between Basic Station Controllers and the MSC (Mobile Switching Center).

MSC (Mobile Switching Center) - The supervisor of a cellular network is linked to several Basic Station Controllers and routes cells between them. It also connects the cellular network to other networks such as the PSTN through fiber optics, microwave, or copper cable.

A cellular network works when the SIM card is organized into geographical cells, each of which has an antenna that transmits to all mobile phones in the city, cellular networks operate by knowing the exact location, which comes from the SIM card. A transmitter generates an electrical signal, which is converted by the transmit antenna into an electromagnetic wave, which is then radiated, and the RF wave is then converted back into an electrical signal. In cellular network networks, four multiple access schemes are used, ranging from the first analog cellular technologies to the most modern cellular technologies.

3.Personal Information Class
Design a class that holds the following personal data: name, address, age, and phone number. Write appropriate accessor and mutator methods. Demonstrate the class by writing a java
program that creates three instances of it. One instance should hold your information, and
the other two should hold your friends' or family members' information.

Answers

Here's an example Java class that holds personal data and provides accessor and mutator methods:

public class PersonalData {

   private String name;

   private String address;

   private int age;

   private String phoneNumber;

   public PersonalData(String name, String address, int age, String phoneNumber) {

       this.name = name;

       this.address = address;

       this.age = age;

       this.phoneNumber = phoneNumber;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public String getAddress() {

       return address;

   }

   public void setAddress(String address) {

       this.address = address;

   }

   public int getAge() {

       return age;

   }

   public void setAge(int age) {

       this.age = age;

   }

   public String getPhoneNumber() {

       return phoneNumber;

   }

   public void setPhoneNumber(String phoneNumber) {

       this.phoneNumber = phoneNumber;

   }

}

And here's an example Java program that creates three instances of this class:

public class PersonalDataDemo {

   public static void main(String[] args) {

       PersonalData myData = new PersonalData("John Smith", "123 Main St, Anytown USA", 35, "555-1234");

       PersonalData friend1Data = new PersonalData("Jane Doe", "456 Oak St, Anytown USA", 28, "555-5678");

       PersonalData friend2Data = new PersonalData("Bob Johnson", "789 Elm St, Anytown USA", 42, "555-9012");

       System.out.println("My personal data:");

       System.out.println("Name: " + myData.getName());

       System.out.println("Address: " + myData.getAddress());

       System.out.println("Age: " + myData.getAge());

       System.out.println("Phone number: " + myData.getPhoneNumber());

       System.out.println();

       System.out.println("Friend 1's personal data:");

       System.out.println("Name: " + friend1Data.getName());

       System.out.println("Address: " + friend1Data.getAddress());

       System.out.println("Age: " + friend1Data.getAge());

       System.out.println("Phone number: " + friend1Data.getPhoneNumber());

       System.out.println();

       System.out.println("Friend 2's personal data:");

       System.out.println("Name: " + friend2Data.getName());

       System.out.println("Address: " + friend2Data.getAddress());

       System.out.println("Age: " + friend2Data.getAge());

       System.out.println("Phone number: " + friend2Data.getPhoneNumber());

   }

}

The above mentioned codes are the answers.

For more questions on Java, visit:

https://brainly.com/question/26789430

#SPJ11

Miles is working on a program that asks the user a question and accepts and stores a true or false value using a
program also displays the user's name stored as a
Reset
Next
va

Answers

It's not entirely clear what you're asking for, but based on the information provided, it seems that Miles is working on a program that:

Asks the user a question that can be answered with a true or false value.

Accepts and stores the user's response.

Displays the user's name, which has been previously stored.

Has "Reset" and "Next" buttons, which likely allow the user to reset the program or move on to the next question.

Without more information, it's difficult to say exactly how this program works or what it's for.

Is School Important?

I'm in 12th grade and I don't pay attention all I want to do is play video games all day

Answers

Answer:

Yes, school is important

Explanation:

It is in some areas of school.

Swap to virtual school. You work at your own pace and you have PLENTY of time to play games, just use playing games as a reward. Online classes usually take 2 hours to do work, instead of being and working at school for 8 hours.

Other Questions
development is a dynamic process and outcome of planned actions and collectives efforts.justify with examples Which expression is equivalent to 3k + 5l + 6l + 2k?A) 8k + 8lB) 5k + 11lC) 5kD) 16 Which is the best description of a molecule? Which two lines in this passage are a flashback T/FAs anxiety increases, the perceptual field narrows and some details are excluded from observation Zoom out and examine the region. Describe the likely tectonic setting of the Hawaiian Islands. Support your answer with observations on the major tectonic landforms of the region. What type of volcano is this the user interface is responsible for translating real-world messages into imaginary ones. true or false? The government is running a balanced budget while GDP is at its potential. However, there is now an economic recession and the government makes no policy adjustments. What is the impact on the budget balance? The budget balance would increase, moving into a surplus. The budget balance would decrease, moving into a deficit. The budget balance would remain balanced because the government does not change any policies. The budget balance would decrease, moving into a surplus. The budget balance would remain balanced because of the automatic stabiliser. help me find the perimeter please:) Q3: the picture here shown sand dunes in the desert near the salton sea, california. which one of the following statements is true? a) the most common sand dune shown here is transverse. b) the most common sand dune shown here is seif. c) the wind is blowing from northeast to southwest. d) the wind is blowing from east to west. e) none of the above is true. This colony began as a new experiment in Puritanism: New YorkDelaware New Haven Virginia what was the prevailing reason for the push for reform in college football in the late 1800s and early 1900s? Benjamin goes out to lunch. The bill, before tax and tip, was $18.55. A sales tax of 4% was added on. Benjamin tipped 23% on the amount after the sales tax was added. What was the total cost of the meal, plus tax and tip? Round to the nearest cent. Three years ago, the state of Nevada passed a law making the recreational use of marijuana legal. Yet such use of marijuana is against federal law. So, on what basis did Nevada have the authority to override a federal law The chance of the New York Yankees winning a game is 3/5. If there are 120 games in the season, how many games are they expected to win? give me your opinion and no short answers please :( 1. do you think you would like to try free-living? why/why not? 2. do you think it's important to do sports? why/why not? a regular deck of playing cards is shuffled what would probability of not drawing an ace which of the following accurately describes 18o/16o ratios of the world's oceans? which of the following accurately describes 18o/16o ratios of the world's oceans? neither the 16o nor 18o isotopes are common in water, so when either is present, it shows a disequilibrium in normal climatic conditions. a higher ratio of oceanic 16o to 18o, the colder the temperatures because 18o will have been mostly evaporated from the oceans. the 16o/18o ratio is low during colder temperatures because temperatures are too low for evaporation to be effective and both isotopes remain in the ocean. because 18o evaporates more readily than 16o, the oceans have a higher relative abundance of 16o during warm periods and a more balanced ration when evaporation is less. during periods of colder temperatures, 16o is locked up in snow and ice and 18o concentrations are highest in the oceans. 35 yo F present with amalodours, profuse, frothy greenish vaginal discharge with intense vaginal itch and discomfort. What the diagnose? What does it mean when demand is inelastic?