Which of the following would not be considered metadata for a spreadsheet file?
A) Read-only attributeB) Calculation inside the fileC) Name of the fileD) Full size

Answers

Answer 1

Answer:

B.

Explanation:

Metadata is a type of data that dispense details of other data. In simple terms, metadata can be defined as information of a file such as file name, attributes, etc.

In excel sheet, metadata works the same and helps to provide information about file name, author name, file size, attributes such as read-only, archieve, hidden, system, location of the file, date and time of creation, modification, or accessed, type of file, etc.

From the given options, the information that is not considered or included in metadata is calculation inside the file. Metadata in excel sheet does not include calculations inside the file. Thus option B is the correct answer


Related Questions

Which type of alert is the Client Software Deployment Failure set to?

Answers

Answer:

Microsoft Intune will display the critical alert Client Software Deployment Failure if the client software fails. It will be displayed in the System Overview page and Alerts pages of the Microsoft Intune administrator console. To check for alert, let us follow these steps below:

Explanation:

In the Microsoft Intune administration console, click Alerts > Overview.

On the Alerts overview page, you can review the following information:

The top three alerts, which can be sorted by date, category, or severity

The total number of active alerts

Click All Alerts to display the following information on the Alerts page. Critical alerts are displayed first:

Name – The name of the alert type that generated the alert.

Source – A link to the source of the alert.  If the display threshold of the alert type is set to All, then this link will display a single affected device.  If the display threshold of the alert type is set to a value, then this link will display a list of all the devices that are affected by this alert.

Last Updated – This indicates the time when the alert was last modified. If an alert is closed, the time when the alert was closed is displayed.

Severity – This indicates the severity of the alert

RFID can be used for all of the following applications except:_________.
A. Access control
B. Access point repeater
C. Asset management
D. Automated payment

Answers

Answer:

B. Access point repeater

Explanation:

RFID can be used for all of the listed applications except for Access point repeater. This is because Radio Frequency Identification is a technology, which includes wireless data capture and transaction processing for both short and long-range applications. Usually tracking, tracing, accessing, and managing information. It can unfortunately not be used for repeating the same RFID signal or any access point for that matter.

Eavesdropping occurs when an attacker records frames or datagrams and then retransmits them unchanged at a later time.
a. True
b. False

Answers

Answer:     A

Explanation:

answer : it’s true :) hope this helps

Chris wants to view a travel blog her friend just created. Which tool will she use?

Answers

Answer:

WEEB BROWSER

Explanation:

Get it

Chris wants to view a travel blog her friend just created. The tool that she will use is a web browser. The correct option is B.

What is a web browser?

Anywhere on the internet is accessible with a web browser. It pulls data from other websites and displays it on your computer or mobile device. The Hypertext Send Protocol, which outlines how text, pictures, and video are communicated on the web, is used to transfer the information.

A web browser, also known as a "browser," is a programme used to open and view web pages. Microsoft, Internet Explorer, Chrome, Mozilla, and Apple Safari are popular web browsers.

A blog is a written story by a person. Blogs can be informational and entertaining. Blogs are always searched on browsers.

Therefore, the correct option is B, web browser.

To learn more about the web browser, refer to the link:

https://brainly.com/question/9776568

#SPJ2

The system administrator in your office quits unexpectedly in the middle of the day. It's quickly apparent that he changed the server password and no one knows what it is. What might you do in this type of situation?

Answers

Answer:

You should use an effective password cracker.

Explanation:

Since the system administrator decided to quit unexpectedly and apparently, he changed the server password and no one knows what it is. What you might do in this type of situation is to use an effective password cracker.

A password cracker can be defined as a software application or program used for retrieving passwords from stored locations or computer data systems. This simply means that, a password cracker is used to recover passwords in order to gain access to a computer system that is protected by authentication.

Some examples of commonly used passwords cracker are ElcomSoft, Aircrack, Hashcat, John the Ripper, Hydra, Cain and Abel, DaveGrohl, Ophcrack etc.

what does the somaliland high population density

Answers

Explanation:

Somalia ranks number 73 in the list of countries (and dependencies) by population. The population density in Somalia is 25 per Km2 (66 people per mi2).

A series of nested _____________ statements can be used to process the menu selections in lieu of the case statement

Answers

Answer: If-Else statement or If-Then-Else statement depending on the language.

Explanation: Although it's not recommended to nest a hundred if statements into each other, you can use them instead of a switch/case.

A series of nested If-Else statements can be used to process the menu selections in lieu of the case statement.

What is a menu selection?

The menu selection parameter needs to be created before utilizing a While loop to periodically evaluate a user's menu choices. Processing a user's menu choice always requires an iteration loop.

If a certain value is satisfied, the if/else sentence causes a block of code to be executed. An additional block of code can indeed be run if the condition is false. If you want to tell a block of code to run only if a certain expression is met, use the if statement.

f the same circumstance is false, use else to declare that a different block of code should be run. If the first conditions is false, use else if to define a new state to test. To provide a variety of different code blocks to be performed, use a switch.

Learn more about menu selection, Here:

https://brainly.com/question/29479833

#SPJ5

The ________ is a consortium of organizations that develops web protocols and sets standards.

Answers

Answer:

W3C

Explanation:

W3C is the consortium of organizations.

I need the following code commented and addressed: Specifically, your script should address the following critical elements:I. In Your Script (Annotated Text File) Refer to the directions in the module in Codio for how to export out and comment your completed script. A. Identify examples of custom functions in your script using comments in your code. B. Identify examples of input (parameters) that are utilized within the function(s) in your script using comments in your code. C. Identify examples of functions that return the correct output in your script using comments in your code.Applying Your Experience Making mistakes when you learn to write code is common. It is part of learning. What is important is developing the skill of learning how to understand your errors and then fix them (debugging). For this part of your final project, you will respond to the following: A. Reflecting on your experience with this activity, explain the importance of knowing how and when to use and modify custom functions, inputs (parameters) within functions, and functions to return the correct output. Support your response with examples from the activity of the types of errors and your method for fixing them. Thanksimport sys# account balanceaccount_balance = float(500.25)#PPrint the balancedef printbalance(): print("Your current balance : %2f" % account_balance)#the function for depositdef deposit(): deposit_amount = float(input("Enter amount to deposit : ")) balance = account_balance + deposit_amount print("Deposit was $%2f, current balance is $%2f" %(deposit_amount,balance))#function for withdrawdef withdraw(): withdraw_amount = float(input("Enter amount to withdraw")) if(withdraw_amount > account_balance): print("$%2f is greater than account balance $%2f\n" %(withdraw_amount,account_balance)) else: balance = account_balance - withdraw_amount print("$%2f was withdrawn, current balance is $%2f" % (withdraw_amount, balance))# User Input goes here, use if/else conditional statement to call function based on user inputuserchoice = input("What would you like to do?\n")if (userchoice == 'D'): deposit()elif userchoice == 'W': withdraw()elif userchoice == 'B': printbalance()else: sys.exit()

Answers

The correct answer is a

After a merger between two companies a security analyst has been asked to ensure that the organization’s systems are secured against infiltration by any former employees that were terminated during the transition. Which of the following actions are MOST appropriate to harden applications against infiltration by former employees? (Select TWO)
A. Monitor VPN client access
B. Reduce failed login out settings
C. Develop and implement updated access control policies
D. Review and address invalid login attempts
E. Increase password complexity requirements
F. Assess and eliminate inactive accounts

Answers

C and F would be the ones to pick :)

How big an impact, on your design considerations in general, is it to sort by different fields of the data periodically (a directory is likely ordered by last name, first name, for example)?

Answers

Answer:

Following are the answer to this question:

Explanation:

It also has a moderate effect on the design analysis to frequently group the information by specific fields. The Aspects of interface design should be highest if developing the simple UI also for proper display of data or data on the interface.

for certain aspects may be separated periodically by different data areas, like folders, first names, etc. If there are big data in the method, it's indeed main to measure the information, and it should have a moderate effect on the interface to arrange the information based mostly on areas.

Describe how the presence or absence of balance can affect a visitor’s perceptions of a Web page.

Answers

Answer: the assessment of the destination image can assist managers by identifying the ... In particular, potential visitors with limited knowledge of destinations depend on ... Thus, a destination web page becomes a fundamental instrument in ... it and whose presence or absence determines the tourist's perception.

Explanation:

For each part, say whether the statement is true or false. All logarithms are base 2 unless otherwise noted.
a) 2n ? ?(4n).
b) log(n2) + log(1010n10) ? O(logn).
c) \sqrt[]{2^{n}} ? O((\sqrt[]{2})^n).
d) n / ln(n) ? ?( (ln(n)) 2).
e) if log f(n) ? ?(log g(n)), then f(n) ? ?(g(n)).

Answers

Answer:

can you restate that?

Explanation:

what does this mean

What two tasks can be executed from the service console for Autonomous Databases? (Choose two.)
A. Autonomous Databases monitoring for usage and query performance.
B. Creating schemas.
C. Creating and scaling of Autonomous Database service.
D. Wizard to download connection wallet for connection from desktop tools.

Answers

Answer:

A and D

Explanation:

Autonomous Databases monitoring for usage and query performance. and Wizard to download connection wallet for connection from desktop tools.Each autonomous database example has its own service console to monitor that feature. The Overview and Activity tabs on the Service Console provide information about improved service performance. The Activity tab displays detailed information about past and current monitored SQL statements and every detail. You can also download Client Credentials (Wallet) from the Services console for your autonomous database, select Administration, and then Download Client Credentials (Wallet).

UC is trying to switch from legacy CRM to salesforce and wants to keep legacy CRM and salesforce in place till all the functionality is deployed in salesforce. The want to keep data in synch b/w Salesforce, legacy CRM and SAP. What is the recommendation

Answers

Answer: suggesting MDM solution and also linking MDM to both the salesforce and sap. More so, integrating SAP with both Salesforce and legacy CRM.

NB: Don't ever integrate legacy CRM to Salesforce

Explanation:

It should be noted that the best recommendation that could be given in order to keep data in synch b/w Salesforce, legacy CRM and SAP is by suggesting MDM solution and also linking MDM to both the salesforce and sap. More so, integrating SAP with both Salesforce and legacy CRM.

NB: Don't ever integrate legacy CRM to Salesforce

In which step of web design is storyboarding helpful? Coding Editing Planning Publishing

Answers

Answer: Planning

Explanation:

Answer:

planning

Explanation:

What is Livvyo? Livvyo review

Answers

Answer:

Livvyo is a software that enables streaming video to be translated into multiple languages.

Explanation:

Livvyo is a latest desktop software developed to translate the live streaming videos. This app enables the businesses and companies to convert any video in multi-language to attract diverse audience of different languages.

The app is created by Misan Morrison & Firas Alame and launched on 23rd August, 2020.

Livvyo Review:

This app also helps to transcibe texts in the video automatically. This app helps to transform any video into Global sales machine.The purpose of this app is to attract audience and increase sales.

Briefly explain how developers use a distributed version management system. You may assume that a master repository has been set up.

Answers

Answer:

Using version control tools like Git and Github.

Explanation:

Version control is a vital tool in programming in recent times. it helps to prevent loss of source codebase and creating unwanted folders for storing multiple codebases to prevent excess storage usage and time consumption.

Git and Github is a platform that handles version control and collaboration between co-workers. When a repository is created, its initial branch is called the master branch and when a staged code is committed, the commit is recorded. These records can be retrieved using the commit hash value and resetting the current unstaged file or code. A new branch can created to hold a different version of an application and merged later with the master branch.

The Windows Group Policy feature provides __________ that govern the way Windows operates in enterprise environments.

Answers

Answer:

A centralised set of rules

Explanation: The windows group policy is one of the features of Windows active directory that gives users of windows enough power and control over the use and Security as they make use of its features in their computers. The Windows group policy also guides how users of Windows computers effectively utilises its features and functions.

Using "subTotal" and "taxRate", what is the formula to determine the total bill including taxes (grandTotal)?

Answers

Answer:

The formula to determine the total bill including taxes, i.e. grand Total =

"subTotal" + ("taxRate" * "subTotal").

Another formula is:

"grandTotal" = ("subTotal" * 1 +"taxRate")

Explanation:

The above stated formulas produce the same outcome.  The first formula computes the tax amount and adds it to the subtotal before arriving at the grand total.  The second formula goes straight to compute the total bill without showing the tax amount.  It applies the tax factor (1 + "taxRate") to the "subTotal."  All two formulas are valid.  However, I prefer the second formula to the first, as it is very straight forward.

If we recorded the average U.S. Housing Price every month for the next year, what graphical display is most appropriate to display the data?

Answers

Answer:

Time plot.

Explanation:

A time plot, also known as a time series can be defined as a graphical representation of a pre-defined value (data) against time.

If we recorded the average U.S. Housing Price every month for the next year, the graphical display which  is most appropriate to display the data is a time plot.

Generally, when representing data that changes with respect to time or that are random in nature; a time plot is considered to be the most effective graphical display to use.

In this scenario, the average U.S. Housing Price that is observed should be plotted against the time of occurrence (months) over a year.

The line chart is a type of chart showing data as a succession of data sets linked by line segments. It demonstrates the price graph of an object using a single, solid path.

You should use a line chart to represent the graph because we are computing the average housing price in the United States every month for a year. This data is time-series data, and a line chart is the best graphical display for displaying time-series data.Then we'd have to record the average US housing price every month for the following year. A line chart graphical display would be the best way to display the data.

Therefore, the final answer is "Line chart".

Learn more:

brainly.com/question/1639884

I made a binary sentence if you answer you get 75 points heres the code: 01101001 01100110 00100000 01111001 01101111 01110101 00100000 01100001 01110010 01100101 00100000 01110010 01100101 01100001 01100100 01101001 01101110 01100111 00100000 01110100 01101000 01101001 01110011 00100000 01001001 00100111 01101101 00100000 01110011 01110101 01110000 01110010 01101001 01110011 01100101 01100100 00100000 01111001 01101111 01110101 00100000 01100011 01100001 01101110 00100000 01110100 01110010 01100001 01101110 01110011 01101100 01100001 01110100 01100101 00100000 01110100 01101000 01101001 01110011 00100000 01110111 01100101 01101100 01101100

Answers

01001001 00100000 01100001 01100011 01110100 01110101 01100001 01101100 01101100 01111001 00100000 01110101 01110011 01100101 01100100 00100000 01100001 00100000 01000010 01101001 01101110 01100001 01110010 01111001 00100000 01100011 01101111 01100100 01100101 00100000 01000011 01101111 01101110 01110110 01100101 01110010 01110100 01100101 01110010 00100000 01101100 01101101 01100001 01101111

if you are reading this I'm suprised you can translate this well this is easy

Organizations that have no physical ("brick and mortar") presence, but only exist because of communication and computer technology are known as . ​

Answers

Answer: Virtual Organisations

Explanation: Virtual Organisations are Organisations that do not have any physical presence (brick and mortar). They exist in Internet platforms, social media and are known through the use telecommunications systems and facilities. This type of organisations continously conduct their businesses and liaise with their customers only through virtual Communication platforms like the computer Communication systems.

What are three subject areas that are key to successfully working in the field of robotics

Answers

The brain ( computer science engineering)

The nervous system ( electrical engineering)

The body ( Mechanical engineering). The mechanical engineer is in the charge of the physical system that makes up the robot.

Write a program using integers user_num and x as input, and output user_num divided by x three times. Ex: If the input is: 2000 2 Then the output is: 1000 500 250 Note: In Python 3, integer division discards fractions. Ex: 6 // 4 is 1 (the 0.5 is discarded).

Answers

Answer:

Python

Explanation:

user_num = int(input())

x = int(input())

user_num1 = user_num // x

print(user_num1, end=' ')

user_num2 = user_num1 // x

print(user_num2, end=' ')

user_num3 = user_num2 // x

print(user_num3)

Structures may contain variables of many different data typesâ "in contrast to ___________ that contain only elements of the same data type.

Answers

Answer:

Arrays

Explanation: An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.

Which devices are most likely to communicate with the internet? Select 3 options.
A. iron
B. calculator
C. smart TV
D. printer
E. cash register

Answers

Answer:smart TV, printer, and cash register

Explanation:Just put it

Answer:

- smart TV

- printer

- cash register

Explanation:

All of these devices are capable of operating digitally, and can be used to communicate with the internet.

I hope this helped!

Good luck <3

When you are using a keyword search what are you most likely doing?

Answers

Answer:

Just typing words or answering questions

Answer:

when using a keyword search, you are looking for close results to what you are looking for.

Explanation: its a general search not specific. thus you are likely to get very many results with the same word. hope this helps. :)

What is the value of scores[3] after the following code is executed? var scores = [70, 20, 35, 15]; scores[3] = scores[0] + scores[2];

Answers

scores[3]( 15 ) = scores[0]( 70 ) + scores[2]( 35 ) == 105

Write a destructor for the CarCounter class that outputs the following. End with newline.
Destroying CarCounter
#include
using namespace std;
class CarCounter {
public:
CarCounter();
~CarCounter();
private:
int carCount;
};
CarCounter::CarCounter() {
carCount = 0;
return;
}
/* Your solution goes here */
int main() {
CarCounter* parkingLot = new CarCounter();
delete parkingLot;
return 0;
}

Answers

Answer:

Following are the code to this question:

CarCounter::~CarCounter()//Defining destructor CarCounter

{

cout << "Destroying CarCounter\n";//print message Destroying CarCounter

}

Explanation:

Following are the full program to this question:

#include <iostream>//Defining header file

using namespace std;

class CarCounter //Defining class CarCounter

{

public:

CarCounter();//Defining constructor CarCounter

~CarCounter();//Defining destructor CarCounter

private:

int carCount;//Defining integer variable carCount

};

CarCounter::CarCounter()//declaring constructor  

{

carCount = 0;//assign value in carCount variable

return;//using return keyword

}

CarCounter::~CarCounter()//Defining destructor CarCounter

{

cout << "Destroying CarCounter\n";//print message Destroying CarCounter

}

int main() //Defining main method

{

CarCounter* parkingLot = new CarCounter();//Defining class object parkingLot

delete parkingLot;//

return 0;

}

In the given C++ language code, a class "CarCounter" is defined, and inside the class, a "constructor, Destructors, and an integer variable" is defined.  Outside the class, the scope resolution operator is used to define the constructor and assign value "0" in the integer variable.  In the above-given code, the scope resolution operator, to define destructor and inside this cout function is used, which prints a message.  In the main method, the class object is created, which automatically calls its class constructor and destructors.  
Other Questions
how did the Ancient Phoenecians expand their empire ? will give brainliest An instrumental value is a desired end state or outcome that people seek to achieve.A. True B. False With three examples each, distinguish between barriers to communication and misconceptions about communication What was mansa musas nickname?. Slogan for clinical psychologist "Since the imperial authority did not assert the power that it had, the colonists were leftto govern themselves. These essentially sovereign colonies soon became accustomed tothe idea of self-control. The effects of such prolonged isolation eventually resulted in theemergence of a collective identity that considered itself separate from Great Britain."Which British policy is being referenced in the quotation above? Geographical information can appear in books called__. These books location such as countries or cities, and they include __ for each location Duddy Kravitz owns the Saint Viateur Bagel store. His world famous bagels are hand rolled, boiled in honey-water and baked in a wood-burning oven. The store sells 5,000 bagels per day and is open 365 days of the year. The bagels are so popular that, on weekends, the customer line-up runs half-way down the block. Uncle Benjy thinks that the wood-fired oven should be replaced by a modern gas oven, which would reduce costs by $0.02 per bagel. A new oven would cost $105,000.Duddy is considering Uncle Benjy's idea, but he only plans to be in business for another two years. The bagels are sold for $0.75 each. The cost of producing each bagel with the wood-burning oven is $0.50 which includes labor and raw materials. The current oven was purchased thirty years ago for $20,000. It could be sold today for $5,000 and will be worth $3,000 in two years. A new oven costs $105,000 today and could be sold for $55,000 in two years. Duddy's cost of capital is 9%. Assume that investment cash flows occur immediately, and that sales and production costs occur at the end of the year. Assume that both ovens are classified as 10-year property and depreciated using the MACRS system. The tax rate is 35%.What are the terminal year cash flows?a. 30,340b. $36,500c. $62,260d. $90,600e. $94,500 what is the role of the government A number close to an exact form is called? A firm has $600,000 in current assets and $150,000 in current liabilities. Which of the following is correct if it uses cash to pay off $50,000 in accounts payable?1) Current ratio will increase to 5.0. 2) Net working capital will increase to $500,000. 3) Current ratio will decrease. 4) Net working capital will not change. Marketing is the activity, set of institutions, and processes that create, capture, communicate, and ______ value. f(x)= 1 / x-3 g(x)= 3x + 1/x A. Use composition to prove whether or not the functions are inverses of each other. B. Express the domain of the compositions using interval notation. Please answer this worth 20 points Question #1What are some different types of health carefacilities? Which Bantu migration extended the farthest south? 10) A students calculation w as found to have a 15.6% error, and the actual value w as determined to be 25.7 mL. W hat are the tw o possible values for the students experimental measurement? Imagine you are looking at a bottle of salad dressing containing oil, vinegar, and water. Why are there two layers in the salad dressing? Water and vinegar are both hydrophobic and mix, whereas the oil is hydrophilic. Vinegar and oil are both hydrophobic and mix, whereas the water is hydrophilic. Water and vinegar are both hydrophilic and mix, whereas the oil is hydrophobic. Vinegar dissolves into both the oil and the water in this container. define scale of preference Ajoke using word play is called juxtaposition.O TrueO False What trait develops as a result of your environment