A feature that displays in the lower right corner of a selected range with which you can analyze your data by using Excel tools such as charts, color-coding, and formulas is called:________.

Answers

Answer 1

Answer:

Quick analysis tool.

Explanation:

Excel is a spreadsheet application package found in the Microsoft office suite. it's environment on the display screen is called a worksheet and a collection of the worksheets is called a workbook. The excel packet is used for data analysis and interpretation and presentation.

When a group of cells in a worksheet is selected, a small tool kit appears that the lower right corner, it is known as a quick analysis tool. It is use for easy and fast analysis and formatting of that selected group.

Answer 2

Answer:

Quick analysis tool

Explanation:

In Excel, once you have selected the cells or range of cells containing some data to analyze, a button called the Quick analysis tool appears just at the lower right corner of the selected range. When a user clicks this button, they can analyze the selected data by using some options such as totals, charts, formatting, color-coding, formulas, tables and so on.


Related Questions

What sort of software programs are used to determine area of origin

Answers

Answer:

HemoSpat bloodstain pattern analysis software is used to calculate the area of origin for influence design at crime scenes. When Performing this directional analysis of impact patterning, the bloodstain pattern analyst can be provided with crucial information about the posture and location of an individual at a bloodletting scene.

True or False. When used with the cout object, the endl stream manipulator advances the cursor to the next line on the computer screen.

Answers

Answer:

The answer is TRUE

Explanation:

When we use Cout object the endl move the cursor to the next line to the computer screen.The endl is a predefined object.It is used to insert a line.

Manipulators are the objects that inserted into a stream and effect the format of objects.Manipulators are used to control the state of stream.

When using the count object the endless stream manipulator advances the cursor to the next line on the computer is True.

What is a stream manipulator. ?

The function of the manipulators is used for the conjunction of design with insertion and extraction of the stream object. That has been used for changing the formatting parameters on the changing stream and helps to insert or extract the special character.

Find out more information about the True or False.

brainly.com/question/6279182.

What is wrong with the following code fragment? int *p1, *p2; p1 = new int; p2 = new int; *p1 = 11; *p2 = 0; p2 = p1; cout << *p1 <<" " << *p2 << endl; delete p1; delete p2;

Answers

Answer:

Hi Hannahdavy! This is a good question. The problem lies in this part of the program:

p2 = p1;

Explanation:

In C/C++, memory is manually managed. When the variable p1 is assigned to variable p2, the memory allocated for p1 is left unmanaged, causing memory issues. Therefore the program will throw a “double free or corruption (fasttop)” error. What is needed to resolve the issue is to either (a) assign a null value to p1 after p1 has been assigned to p2, or (b) remove the p2 assignment of p1, depending of what the function is actually trying to do in the program.  

An online survey is an effective way for an administrative professional to gather information. True False

Answers

Answer:

True is the correct answer for the above question.

Explanation:

An online survey is done with the help of social sites that connects many people in conversation from all over the world. So to do an effective survey, it is best to choose the online medium.The administrative professional is a professional, who works to do administrative tasks like managing the organization.The above question-statement says that the online survey is the best survey, which is the correct statement, which is described above. Hence the answer is true for the above question.

As you develop a Java program, you can use an IDE to Select one:
a. enter and edit the source code
b. compile the source code
c. run the application
d. all of the above
e. both B and C

Answers

Answer:

D) All of the above

Explanation:

An IDE refers to an Integrated Development Environment it is a software that allows a programmer to easily write and edit code, compile and run his/her application. One of the features of IDEs that makes a programmers job easier is syntax highlighting and automatic code completion.

popular Java IDEs that run on different operating systems platforms are are

Eclipes, Netbeans, IntellijIDEA, BlueJ, Jbuilder etc.

Answer:

(d) all of the above

Explanation:

An IDE (Integrated Development Environment) is basically a software application that allows programmers write and edit codes with so much ease.

IDEs have in them some special features that make code writing and software development an easy experience. Some of these features are;

i. Intellisense for automatic code completion and suggestion.

ii. build automation tools for building, compiling, running and even packaging application source codes.

iii. unit testing.

Examples of IDEs are Netbeans, Eclipse, IntelliJ and Notepad++

A computer is made of up 6 main components: a) CPU (central processing unit)
b) Primary Storage
c) Secondary Storage
d) Input Devices
e) Output Devices
f) Communication Devices

Answers

Answer:

False

Explanation:

The computer is an digital device that access, process and displays the output of data. It is a device with hardware components run by software (operating system) through kernel utilities (device drivers).

The main components of the computer system are input unit, output unit, processor and memory unit. Every other components are termed peripheral devices.

Refer to the exhibit. The switch does the routing for the hosts that connect to VLAN 5. If the PC accesses a web server from the Internet, at what point will a VLAN number be added to the frame?

Answers

Answer:

no VLAN number is added to the frame in this design.

Explanation:

As can be seen in the exhibit shown in the picture below it can be said that the in this scenario no VLAN number is added to the frame in this design. Usually in many scenarios the switch or router is in charge of applying a VLAN number, which is a number between 0 and 4095, to every port that has a connection to the switch or router.

A programming language that captures only the most primitive operations available to a machine. Anything that a computer can do can be represented with combinations of low level commands.
a) true
b) false

Answers

Answer:

A. True.

Explanation:

Programming languages are computer based languages used to pass instructions or task that can be interpreted to machine language, which can be understood by the computer system. Low level programming language and high level programming language are the two categories of program languages.

Low level languages use low level commands. They use processor instruction sets and primitive opcodes for their instruction syntax. Example of a low level language is Assembly language.

High level languages are English based and more complex in its compilation.

Explain one challenge raised by Vint Cerf in? ""The Internet is for Everyone - but it won’t be if…."" and give one example of it that you know about.

Answers

Answer:

Vint Cerf suggests that the internet is for everyone, but if it's limited and government censors entry, it won't be. Examples include countries that lack freedom such as China, because the government limits internet usage for their residents.

What is output by the following C# code segment?int temp;temp = 180;while ( temp != 80 ) {if ( temp > 90 ) {Console.Write( "This porridge is too hot! " );// cool downtemp = temp – ( temp > 150 ? 100 : 20 ); } // end ifelse {if ( temp < 70 ) {Console.Write( "This porridge is too cold! ");// warm uptemp = temp + (temp < 50 ? 30 : 20);} // end if} // end else} // end whileif ( temp == 80 )Console.WriteLine( "This porridge is just right!" );

Answers

Answer:

This porridge is too hot! This porridge is just right!

Explanation:

I am going to explain every line of the given C# code to give explanation of the output.

The first statement int temp declares a variable temp.Then the temp variable is assigned a value 180.The block of statement in while loop body will keep executing until the value in temp variable gets equal to 80. The while loop first checks if the value of temp is not equal to 80. As the value of temp=180 which is not equal to 80, this means that the condition of while loop evaluates to true so the block of code in the body of the loop is reached.There is an if condition inside while loop which checks if the value in temp variable is greater than 90. As value of temp=180 which is greater than 90 so the condition is true. As the condition in the if statement evaluates true so the block of code which is the part of this if statement will be executed:

             {Console.Write( "This porridge is too hot! " );

                  temp = temp – ( temp > 150 ? 100 : 20 ); }

The first statement is executed which displays this message: This porridge is too hot! Next   temp = temp – ( temp > 150 ? 100 : 20 ); statement will change the value of temp. It has the conditional operator which works as follows:

                 Here, temp>150 is the condition to be evaluated.

If this condition is True then 100 will be returned else 20 will be returned. The value returned is then subtracted from the value of temp and the subtraction result will become the new value of temp. As the value of temp which is 180 is greater than 150 so 100 is returned and is subtracted from the value of temp (180).

                                        temp= 180-100

                                             temp=80

So the new value of temp is 80.The else part will not be executed because the condition in if statement was true and also we can see that temp is not less than 70. It means that the porridge is too cold part will not be executed.The while loop while(temp!=80) will again be checked. As the new value of temp is now 80, so the condition gets false which breaks the while loop and program control will leave the body of while loop. After the control comes out of the while loop, there is another if statement. This statement checks if the value of temp variable is equal to 80. It is true as the new value of temp is now 80 after that execution of while loop block of code. As the if condition evaluates to true the statement

                    Console.WriteLine( "This porridge is just right!" );

       will be executed which displays the message:

                                  This porridge is just right.

Hence the output of the given code is:

           This porridge is too hot! This porridge is just right!

The biggest change affecting computer security that has occurred over the last 30 years has been the transformation of the computing environment from a highly interconnected network of smaller systems to large mainframes.

Answers

Answer:

False

Explanation:

The change that occurred to computing over the last 30 years was the shift from large mainframes to the highly interconnected networks of smaller systems. Users in time past need to be in a fixed location to be able to use the computer, but over the years size of computers were reduced significantly to very portable devices sharing resources over the internet and can have access to a work server fro any location.

An intranet is a network based on Web technologies that allows selected outsiders, such as business partners and customers, to access authorized resources of a company’s extranet.
(A) True
(B) False

Answers

Answer:

(A) True

Explanation:

Intranet is a network accessible only for the authorized users. For example, an organization intranet is accessible only for the organization members and same authorized non-members (business partners)

Intranet has a restricted network via special network protocols.

Final answer:

The statement is (B) False. An intranet is a private network that is not accessible by outsiders, while an extranet allows limited access to selected outsiders.

Explanation:

The statement is (B) False.

An intranet is a private network that uses Internet technologies to provide access to authorized users within a specific organization. It is not accessible by outsiders such as business partners and customers.

Extranet is a separate network that allows selected outsiders to access certain resources of a company. It can be considered an extension of the company's intranet, but with limited access given to external parties.

What can be controlled through IoT? Choose four answers.
Desktops
Door locks
Laptops
Light switches
Security cameras
Thermostat

Answers

Answer:

Door locks

Light switches

Security cameras

Thermostat

Explanation:

IoT is internet of things that means network of different things that are interconnected through internet and make the decision with the help of Electronic sensors. The sensor sense the data from environment at different times and send this to the cloud (that may be the server). On the basis of this data different devices such as door looks, light switches, security cameras and thermostat take decisions with the help of controllers and change their current state.

For Example

In case of door look, there may be sensor that is sensing the finger prints of the user and after recognizing the person the door will be unlock. If unauthenticated user will try to open the lock a message has been sent to concerned. The training data of the the authorized persons is saved on the cloud, whenever someone tries to access, the data from sensor and cloud send to controller for making comparison and decision. So we can say that Door lock can be controlled IoT.

In case of light switches, there are few sensor available to sense the intensity of life. Different training values of that sensors are stored on the cloud. Whenever these sensors sense the light intensity, they send the data to the cloud contentiously, whenever the data match with darkness intensity, a signal has been send from controller to the switch to ON the lights.

Same as in cameras and Thermostat both are sending data to the cloud and controller. With the help of different image processing techniques and sensor camera will take the decision related to face recognition. Thermostat devices are also on and off by variation of temperature.

What is a function parameter?

A. A measure of the distance between a function’s conception and implementation.
B. A way to give input to a function that controls how the function runs.
C. A collection of commands that can be used in a programming language.
D. Another name for the purpose of a program.
E. A named memory location.

Answers

Answer:

option B

Explanation:

In computer science, the function parameters are used to give input to the function that is processed and produced result.

The ________ component of the five-component framework of an information system includes individuals who maintain the data and support the networks of computers.

Answers

Answer:

The people is the correct answer for the above question.

Explanation:

Any Information system is made up of software, people, hardware, data and processor which is called the framework of the five components. The software is the application which gives instruction and the hardware is used to execute the software. the data is an input for the system and the processor is used to instruct the system to perform the calculation. The people are used to manage all the system. without its help, nothing can be done in the information system. So The people are the most important part of the information system which debugs the problem, maintains the data and maintains the infrastructure.The above question-statement wants to ask about the term which is the part of the five-component framework and it used to maintain the data. The all work described by the question is done by the people. Hence people are the correct answer to the above question.

Final answer:

The 'people' component in the five-component framework of information systems refers to data stewards, professional data managers, and IT staff who ensure the smooth operation and integrity of data and network support. They collaborate with developers and play a crucial role in transforming data into valuable information through the use of information systems.

Explanation:

The people component of the five-component framework of an information system includes individuals who maintain the data and support the networks of computers. These individuals are often referred to as data stewards, professional data managers, and IT support staff.

They play a crucial role in ensuring that information systems function correctly by managing data storage, overseeing network security, helping in data integration, and providing support for both the hardware and software components of these systems.

Data stewards and professional data managers are essential in advising, assisting, and supporting all aspects of information management within organizations. They ensure data integrity and accessibility, which is a critical part of transforming data into valuable information.

This transformation is facilitated by information systems like database management systems, which people use to answer questions and make decisions based on analyzed data.

These IT professionals also work alongside hardware and software developers, who create the tools necessary for data management and information creation.

Together they ensure that commercial companies and academic institutions have complex and secure data storage systems that are both reliable and capable of handling the volume of data generated by today's technology-driven environment.

Print a message telling a user to press the letterToQuit key numPresses times to quit. End with newline. Ex: If letterToQuit = 'q' and numPresses = 2, print:Press the q key 2 times to quit.Sample program:#include int main(void) { char letterToQuit = '?'; int numPresses = 0; return 0;}

Answers

Final answer:

To tell a user to press a certain key a number of times to quit in C, you can use the printf function to format and print the instructions, simply adjusting the variables for the key and number of presses.

Explanation:

The student is asking for assistance in writing a C programming code that prompts a user to press a specific key a certain number of times to perform an action, such as quitting a program. In this scenario, the student needs to complete the program by adding a statement to do this. Here's how you can write the code inside the main function:

#include <stdio.h>

int main(void) {
  char letterToQuit = 'q';
  int  numPresses   = 2;

  printf("Press the %c key %d times to quit.\n", letterToQuit, numPresses);

 return 0;
}

This code snippet sets the letterToQuit to 'q' and numPresses to 2, then it prints the message to the user. Adjust the variables letterToQuit and numPresses as necessary for different requirements.

Which translator program reads small portions of a program at a time, translating them into machine instructions which are then executed immediately?

Answers

Answer:

Interpreter is the correct answer for the above question.

Explanation:

The interpreter is a software program which is an example of a translator and it does not take whole code at a time for conversion. It converts the code on a line by line sequence. It takes some small code and then converts it into machine code.While the other translator takes the whole code at a time and converts it into machine code. The above question wants to ask about that technology which is used to convert some small code not the whole code at a time then the answer is an interpreter which is defined as above.

Encapsulation means ________. 1. that data fields should be declared private2. that a class can extend another class 3. that a variable of supertype can refer to a subtype object 4. that a class can contain another class

Answers

Answer:

Option 1 is the correct answer for the above question.

Explanation:

Encapsulation means rapper the data or variable or method on some pack and denies to give direct access for any private data. The above question wants to ask about the Encapsulation. The option 1 is correct for its because this option suggests a scenario, where a class field is declared as private and we know that private data members of the class can not be accessed by outside the class. It can access only the inside of the class. So it proves both the property of encapsulation one is to rapper the data and the other is to deny the directly accessed outside. So this option is correct while the other is not because--

Option 2 states that another class is extended by the base class which is not the property of encapsulation. Option 3 states that a sub-type object can be referred by the variable of super-type which is also not the property of encapsulation. Option 4 states that a class is contained by the other class which does not hold both the property of encapsulation.

You are the administrator for the CorpNet domain. The CorpDC and CorpDC3 servers are the DNS servers for the domain. You are responsible for CorpDC, which resides in Building A. Users report that they are unable to contact the CorpWeb server.
Complete the following:

1. Ping the CorpWeb server using its full name (CorpWeb.CorpNet.local). What happens?
2. Ping the CorpWeb server using its IP address (192.168.0.15). What happens?
3. Create any DNS records needed to fix the problem.
4. Use the Ping command to verify that the problem has been fixed.

Answers

Final answer:

To troubleshoot the DNS issue, first ping the CorpWeb server by name and then by IP. If only the name fails, create the correct DNS A record. Verify the solution with a final ping.

Explanation:

The inability to contact the CorpWeb server possibly indicates a DNS resolution issue. Here's how to troubleshoot and fix the problem:

Ping the CorpWeb server by its full name. If there is no response, this suggests a DNS resolution problem.

Ping the CorpWeb server by its IP address (192.168.0.15). If this is successful, it confirms that the issue lies with DNS rather than connectivity.

Create or correct the A record for CorpWeb in the DNS server. The A record should point the server's fully qualified domain name (FQDN) to its IP address.

Use the ping command again to verify that the DNS problem has been resolved and that CorpWeb.CorpNet.local now responds.

Final answer:

The issue with contacting the CorpWeb server can be addressed by checking DNS resolution through pinging the server by name and by IP address. A corrective action is to verify and create the necessary A record in DNS. Once the record is set, a successful ping by server name confirms resolution of the issue.

Explanation:

To address the issue where users are unable to contact the CorpWeb server, follow these troubleshooting steps:

Ping the CorpWeb server using its full name (CorpWeb.CorpNet.local). If the ping fails, it indicates that there may be a DNS resolution issue.

Ping the CorpWeb server using its IP address (192.168.0.15). If this ping is successful, it further confirms that there is a DNS problem, since the server is reachable by its IP address but not by its full name.

To fix the issue, log into the DNS management console on CorpDC and create or correct the A record for CorpWeb.CorpNet.local to point to the correct IP address, which is 192.168.0.15.

Finally, use the Ping command again to verify that the problem has been fixed. If the ping to CorpWeb.CorpNet.local is successful, then users should now be able to contact the CorpWeb server by its full name.

You are responsible for performing all routine maintenance on your company's laser printers. Which of the following maintenance tasks would result in the need to reset the page count?
A. replacing the toner
B. installing the maintenance kit
C. calibrating the printer
D. cleaning the printer

Answers

Answer:

B. installing the maintenance kit

Explanation:

page count keeps track of how many number of pages that have been printed since the installation of the last maintenance kit. When a new maintenance kit is installed on most Laser printers, the page count is reset because it does not automatically clears most times, hence, there's the need to clear the count manually.

Jorge saw a computer named Watson on the game show Jeopardy and was surprised at how many answers Watson was able to get correct, especially because the math problems involved solving equations. Watson was using augmented reality to solve the problems.

Answers

Answer:

The above statement is FALSE

Augmented reality works with sensor based inputs from the real world.

It is an immersive perception of a real-world environment in which objects existing in the real world are augmented by computer-generated perceptual knowledge, often through multiple sensory modalities like visual, auditory, haptic, somatosensory and olfactory.

Based on the above description

Which of the following is true about ISO___________.

a. It makes technical recommendations about data communications interfaces
b. Its name stands for International
c. Organization for Standardization It is based in Geneva, Switzerland It is one of the most important standards-making bodies
d. All of the above

Answers

Answer:

The answer is "Option d".

Explanation:

In the given question in option b and option c, there is some typing mistake, but all the options are correct.

ISO is an organization, that is based on Geneva, which is a member of Switzerland. It provides one of the major guidelines for developing entities, that provides technical suggestions on frameworks for data communication.

It is used to optimize products with businesses across ranges. The primary aim was to facilitate trade, but in several ways, it focus on enhancing procedures, safety, and quality.

___________ is Google’s machine-learning artificial intelligence system that interprets people’s searches to find pages that might not have the exact words they searched for.

Answers

Answer:

RankBrain

Explanation:

RankBrain is a machine learning-based search engine algorithm, the use of which was confirmed by Google on 26 October 2015. It helps Google to process search results and provide more relevant search results for users.

Final answer:

RankBrain is Goog.le's AI system that helps interpret user searches for more effective results, considering factors like paid ads, popularity, and web connectivity. Search engine rankings are not based solely on content accuracy, so users should use approaches like SIFT to evaluate the credibility of information found online.

Explanation:

RankBrain is Goog.le’s machine-learning artificial intelligence system that interprets people’s searches to find pages that might not have the exact words they searched for. When using search engines like Goog.le, it's important to understand that results are not solely ranked based on authority, accuracy, or relevance. Instead, factors such as paid advertisements, popularity, and web interconnectivity can influence the visibility of web pages in search results.

As a result, it is possible for websites disseminating misinformation to manipulate search engine optimization (SEO) tools to boost their ranking in the search results. Therefore, users should exercise critical judgment and employ the SIFT method, which stands for the four moves of student fact-checkers, to assess the credibility of the sources they find online.

Which of the following examples that CANNOT demonstrate that technology applications enhance the delivery of the services while reducing the labor burden?

Answers

Answer:

Many of the guest amenities found in hotel rooms today are technology-based such as Internet access (WiFi), entertainment, climate control, cell phone charging, business and guest services, in-room checkout, minibars (e.g., eTrays that monitor snack consumption), and minisafes

Explanation: The guest amenities in hotel rooms are actually not helping to reduce the labor burden, because it does not require a huge or large number of labor to manage it. most persons lodging in the hotels are computer literates and have the capacity to manage or connect to internet facilities like WIFI etc. Turning on the AC,Charging of cell phones other services listed are not labor intensive.

Brenda's meeting with the web developer of her retail website concerning the integration of conversion tracking using Google Ads. The web developer needs to set up conversion tracking tags. What's required to accomplish this?
A) A sitewide tag must be added for each conversion action.
B) The required code snippets must be inserted within an inline frame.
C) Conversion tracking tags must use HTML5 for all site pages.
D) Auto-tagging must be turned on in all of her Google Ads.

Answers

The web developer needs to have Brenda's Auto-tagging turned on in all of her Google Ads.

Explanation:

Auto-tagging features when turned on are able to track conversions on your website. Auto–tagging when combined with conversion tracking using Google Ads helps you see how effective your ad clicks are from potential customers. If Brenda’s auto-tagging is enabled, a Google Click Identifier will be registered and stored in what developers call Google Analytics. Brenda will then be able to go to Google Analytics and see customer clicks for website’s purchases, downloads, and more. By default, auto-tagging is turned. To turn it on, the web developer needs to

Sign into Brenda's Google ad account

Click settings in the left pane and select account settings

The web developer would then be able to enable auto-tagging and save the settings.

Learn more about Google Analytics and its connection to conversion tracking

https://brainly.com/question/13234037

https://brainly.com/question/14280673

#LearnWithBrainly

Write a program that asks the user to enter ten temperatures and then finds the sum. The input temperatures should allow for decimal values. Sample Run Enter Temperature: 27.6 Enter Temperature: 29.5 Enter Temperature: 35 Enter Temperature: 45.5 Enter Temperature: 54 Enter Temperature: 64.4 Enter Temperature: 69 Enter Temperature: 68 Enter Temperature: 61.3 Enter Temperature: 50 Sum = 504.3

Answers

Answer:

#include <iostream>

#include <conio.h>

using namespace std;

main()

{

float temp[10], sum;

sum=0;

for (int i=1 ; i<= 10; i++)

{

cout<<"Enter the temperature in Decimal for temp"<<i<<"=";

cin>>temp[i];

}

for (int j=1 ; j<=10 ; j++)

{

sum = sum+temp[i];

}

cout<< "/nThe Total Temperature ="<<sum;

getch();

}

Explanation:

In this program we can take values of temperature in decimal values by taking the data type of temp variable as float. Array is used to enter the ten temperature values. Sum variable is used to add all the values.

The code example provided is a Python program that prompts the user to enter ten temperatures, validates the input as decimal values, accumulates the sum, and then prints out the total sum.

To write a program that asks the user to enter ten temperatures and then finds the sum, you would need a loop that runs ten times, prompting the user to input a temperature on each iteration. The program should allow for decimal values to be entered. Below is an example of how this can be implemented in Python:

sum_temperatures = 0
for i in range(10):
   while True:
       try:
           temp = float(input('Enter Temperature: '))
           sum_temperatures += temp
           break
       except ValueError:
           print('Please enter a valid temperature.')

QUESTION 4 A(n) _____________ is a set of rules that determine what a layer would do and provides a clearly defined set of messages that software at the layer needs to understand. a) agreement b) specification c) protocol d) regulation policy.

Answers

Answer:

Option c Protocol

Explanation:

A protocol is a set of rules that determine how communication end-points should follows to exchange information. The protocol defines the rules, syntax and semantics for communication. This means the communicated messages are also well-defined. Besides, the protocol can also include possible error recovery methods.

The protocol can be implemented by either software or hardware.

Answer:

(c) Protocol

Explanation:

A protocol specifies a set of rules governing what a layer would do including the set of messages that software at the layer would need to be able to interpret and understand. Protocols also specify how data is packaged and transmitted in a network.

For communication to occur between devices, these devices must conform to a particular language that they both understand. Hence, a protocol.

Examples of protocols are ;

i. Simple Mail Transfer Protocol (SMTP) for mailing services.

ii. HyperText Transfer Protocol (HTTP) for transferring files on the world wide web.

iii. File Transfer Protocol (FTP) for data and file transfer services between a client and a server on a network.

1. Explain the distinction between interpretation and compilation. What are the comparative advantages and disadvantages of the two approaches?

12. Is Java compiled or interpreted (or both)? How do you know?
13. What is the difference between a compiler and a preprocessor?
14. What was the intermediate form employed by the original AT&T C++ compiler?
15. What is P-code? 16. What is bootstrapping? 17. What is a just-in-time compiler?
18. Name two languages in which a program can write new pieces of itself "on the fly."
19. Briefly describe three "unconventional" compilers—compilers whose purpose is not to prepare a high-level program for execution on a microprocessor.
20. List six kinds of tools that commonly support the work of a compiler within a larger programming environment.
21. Explain how an IDE differs from a collection of command-line tools.

Answers

Answer:

11: Compiler translates a high level source program into a target equivalent (machine language).

An interpreter implements a virtual machine, the high-level programming language of which is the "machine language." The interpreter reads statements more or less one at a time in that language, and executes them as they go along.

12: One could also consider Java either. A compiler (complicated translator) can create code, which is then executed by a complicated virtual machine (interpreter)

13: A preprocessor is an initial translator which removes comments and white space, and group characters together into tokens such as keywords, identifiers, numbers, and symbols, as well as simple syntactic structure analyses. A compiler uses in-depth analysis and nontrivial transformation.

14: C++ implementations based on the early AT&T compiler created an intermediate program in C rather than assembly language

15: Stack-based language, similar to modern Java compiler byte code

16: A method in which a simple interpreter implementation evolves into building more complex versions until the compiler is built.

17: A compiler which translates byte code into machine language immediately prior to each program execution.

18: Lisp and Prolog

19: TEX and TROFF are one of such compilers that translate high-level document descriptions into laser printer or phototypesetter commands. Query language processors for database systems are also compilers that translate languages such as SQL into primitive file operations.

21: without havin to call multiple tools with command-line tools, You can write an entire program in an IDE.

Write the function prototype for a function called showSquare. The function should have a single parameter variable of the int data type and a return type of void.

Answers

Answer:

void showSquare(int param){

}

Explanation:

In C++ programing language, this is how a function prototype is defined.

The function's return type (In this case Void)

The function's name (showSquare in this case)

The function's argument list (A single integer parameter in this case)

In the open and closing braces following we can define the function's before for example we may want the function to display the square of the integer parameter; then a complete program to accomplish this in C++ will go like this:

#include <iostream>

using namespace std;

void showSquare(int param);

int main()

{

   showSquare(5);

   return 0;

}

void showSquare(int param){

int square = param*param;

cout<<"The Square of the number is:"<<endl;

cout<<square;

}

Authorization is the process of granting rights to use an organization's IT assets, systems, applications, and data to a specific user. True or false?

Answers

Answer:

True

Explanation:

In computing context, authorization is a process that grant a specific user to use the computer resources that can include both hardware and software. In some cases, authorization is also granted to access private-owned data. Usually, the authorization is implemented by having a user to entry username and password in order to log into a system to use the resources.

There might also be different level of authorization. Each specific user has different privileged level to use the resources. For example, a staff from finance department can access the corporate financial information but the same info is not available to  other department staffs

Answer:

True

Explanation:

Usually preceded by authentication (which means confirming the identity of a user), authorization is the process of granting access level rights to a user to use an organization's resources such as IT assets, systems, applications, and files.

By access level rights, we mean that depending on the level of authority of the user, they can access certain resources. For example, a mere user (or a regular staff) in an organization, might not have some administrative privileges such as editing files which might be given to other users who are admins. In other words, authorization also means controlling what users access what resources.

Other Questions
The continuity of life is based on heritable information in the form of DNA. In a short essay (100-150 words), explain how mutations in protein-coding genes and regulatory DNA contribute to evolution. Temporary, widespread vasodilation and syncope caused by a sudden nervous system reaction MOST accurately describes: Select one: a. neurologic shock. b. vasovagal shock. c. neurogenic shock. d. psychogenic shock. 2b + 8 - 5b + 3 = -13 + 8b - 5 Warning! No identities used in the lesson may be submitted. Create your own using the columns below. See what happens when different binomials or trinomials are combined. Square one factor from column A and add it to one factor from column B to develop your own identity. Column A (x - y) (x + y) (y + x) (y - x) Column B (x2 + 2xy + y2) (x2 - 2xy + y2) (ax + b) (cy + d) How does removing trees affect nitrogen cycling in a forest ecosystem? A. After clearcutting, more soil nitrogen was exported via runoff, ultimately accumulating in the lake. B. After clearcutting, plant uptake stopped and nitrogen accumulated in the soil. C. After clearcutting, plant uptake stopped but denitrification increased, limiting the flow of nitrogen from the soil to the lake. D. Clearcutting does not appear to affect nitrogen cycling; only acid rain does. The legend of El Dorado deals with what? a) a "lost" city made of gold. b) a golden calf. c) a magic lantern. d) two people who solve mystical puzzles. In Lizzie Shoes experience, gift cards that have not been redeemed within 12 months are not likely to be redeemed. Lizzie Shoes sold gift cards for $18,000 during August 2021. $4,000 of cards were redeemed in September 2021, $3,000 in October, $2,500 in November, and $2,000 in December 2021. In 2022 an additional $1,000 of cards were redeemed in January and $500 in February. How much gift card revenue associated with the August 2021 gift card sales would Lizzie get to recognize in 2021 and 2022? Find the perimeter of the polygon What ethical obligations do you personally feel toward wolves and whales ? What ethical obligations do you feel toward future genera tions of people ? What ethical obligations do you feel toward future generations of wolves and whales? Rolls of foil are 304 mmmm wide and 0.014 mmmm thick. (The density of foil is 2.7 g/cm3g/cm3 .) What maximum length of foil can be made from 1.06 kgkg of foil? Styrofoam has a density of 300kg/m3. What is the maximum mass that can hang without sinking from a 20.0 cm -diameter Styrofoam sphere in water? An executive invests $26,000, some at 5% and the rest at 4% annual interest. If he receives an annual return of $1,180, how much is invested at each rate? P(x)=2x^4-x^3+2x^2-6. What is the remainder when P(x) is divided by (x-2)? Reread this paragraph from the speech: For those of you who are black and are tempted to fill with -- be filled with hatred and mistrust of the injustice of such an act, against all white people, I would only say that I can also feel in my own heart the same kind of feeling. I had a member of my family killed, but he was killed by a white man.What mode of persuasion is Kennedy appealing to when he states that he had a member of his family killed by a white man?Group of answer choicesrhetrospathosethoslogos For what values of x does -x2 +7x + 5 = 0? In Bovania, milk constitutes 56% of the typical basket of goods for a typical consumer. Let's say the price of milk rises by 4% and the prices of all other goods fall by 10%. Based on the information given, we can definitely say__________________.a. the consumer price index (CPI) in Bovania is greater than in the previous year.b. the CPI in Bovania is less than in the previous year.c. if consumers get a 4% pay raise, they are worse off in terms of their real income compared to inflation as measured by the Bovanian CPI.d. because milk is a necessity, consumers are automatically worse off no matter what pay increase they may have received.e. shoe-leather costs have decreased. The smallest size plant size at which the long run average cost curve is at its minimum is called the A. minimum efficient scale. B. shut down point. C. envelope. D. profit maximizing scale of production. Micah has just one day to determine how many single-parent households are represented in his school district. Which form of data collection is best? Triangle ABC is a right triangle.Triangle A B C. Angle A is x degrees, B is 90 degrees, C is (x minus 10) degrees. The exterior angle to angle C is (2 x + 40) degrees.Which equations can be used to find the value of x? Check all that apply.x + 90 + (x minus 10) = 180x + 90 + (2 x + 40) = 1802 x + 80 = 180x + 90 = 2 x + 40(x minus 10) + 90 = 2 x + 40 In a trapezoid ABCD with legs AB and CD, the diagonals intersect each other at point O. Compare the areas of ABO and CDO. Steam Workshop Downloader