Nia is editing a row in an Access table. The row contains the Pencil icon on the left end of the record
this icon indicate?
A. The record is committed.
B. The record has not been written.
C. The record has been written.
D. Nia is editing the record currently.

Answers

Answer 1

Answer:

The answer is D

Explanation:

That little pencil reminds you that you are entering or editing the current record, and that the changes you are making are not yet saved. The little pencil disappears as soon as you move off the current record. Take that as confirmation that Access has saved your new record, or the changes you made to an existing one.

Answer 2

In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently.

What is record?

A record is known to be the state or fact of an act been put down or is been recorded.

Note that In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently as it shows the pen icon.

Learn more about record  from

https://brainly.com/question/25562729

#SPJ9


Related Questions

Match the type of secondary storage devices to their examples.
CD
hard disk
flash memory
magnetic storage devices
arrowRight
optical storage devices
arrowRight
solid-state storage devices
arrowRight

Answers

Answer:

1. CD: optical storage devices.

2. HDD: magnetic storage devices.

3. flash memory: solid-state storage devices.

Explanation:

A storage device can be defined as a computer hardware that is typically used for the storage of data or any computer related information such as images, videos, texts, music, codes and folders.

Some examples of storage devices used in the field of computer science are;

1. Optical storage devices: it is circular in shape and includes compact disk (CD), DVD, Blu-ray disk etc. A compact disc (CD) is a small digital-optical disc that is used to store computer data using a laser beam. It is able to store digital data because it is made up of a polycarbonate (a tough-brittle plastic) with one (1) or more metal layers.

2. Magnetic storage devices: this is one of the most widely used storage devices and it comprises of hard disk drive (HDD), floppy diskette, magnetic strip etc.  

3. Solid-state storage devices: it is typically made up of integrated circuits and uses flash memory to store data.

Write a function called nacho_reaction that returns a string based on the type of nacho passed in as an argument. From top to bottom, the conditions should correspond to: 'cheese', 'salsa', 'both', 'neither'.

Answers

Answer:

Following are the code to this question:

def nacho_reaction(nacho):#defining a method nacho_reaction that accepts a string variable

   return nacho#return parameter value

nacho=['cheese', 'salsa', 'both', 'neither']#defining list of string values

r = str(nacho)[1:-1]#use r variable that removes brace from string value

print(nacho_reaction(r))#calling nacho_reaction method that prints string value

Output:

'cheese', 'salsa', 'both', 'neither'

Explanation:

In this code, a method "nacho_reaction" is declared that accepts a list of a string variable in its parameter, and use a return variable, that prints its value.

In the next step, a "nacho" a list of an integer is declared, that holds a string value and uses the "r" variable, that removes the brace, and uses a print method that calls the "nacho_reaction" method to print string value.

New microwave how do i use it is it mad e by the alins and how do I cook

Answers

Assuming your cooking a packaged refrigerated/frozen meal, just follow the instructions.

Tip: NEVER use 'popcorn' mode to cook popcorn (unless the package says so)


Jim wants to enlarge a black-and-white photograph with a warm-black tone. What type of black-and-white paper emulsion should Jim use for this
process?
A chlorobromide
B. bromide
C. chloride
D platinum

Answers

Answer:

A. Chlorobromide

Explanation:

I took the test and got it right. (Plato)

The type of black-and-white paper emulsion should be used by Jim is chlorobromide. Thus, option (A) is correct.

What is emulsion?

A sort of colloid called an emulsion is created by mixing two liquids that wouldn't typically mix. A dispersion of the other liquid is present in one liquid in an emulsion.

Emulsions frequently occur in foods like egg yolk, butter, and mayonnaise. Emulsification is the process of combining liquids to create an emulsion.

According to the above scenario, Jim wishes to expand a warm-toned black-and-white photograph. For this purpose, he should use chlorobromide for black-and-white paper emulsion.

Paper covered with a chemical compound that is light-sensitive, which is inferred as photographic paper. When exposed to light, it captures the latent image.

Therefore, it can be concluded that option (A) is correct.

Learn more about emulsion here:

https://brainly.com/question/6677364

#SPJ2

What is one reason why a business may want to move entirely online?
O
A. To double the number of employees
B. To focus on a global market
C. To avoid paying state and local taxes
D. To limit the number of items in their inventory

Answers

Answer:

To focus on global market

Explanation:

Hope this helps! :)

Design and implement a set of classes that define various types of reading material: books, novels, magazines, technical journals, textbooks, and so on. Include data values that describe various attributes of the material, such as the number of pages and the names of the primary characters. Include methods that are named appropriately for each class and that print an appropriate message. Create a main driver class to instantiate and exercise several of the classes.

Answers

Answer:

Following are the code to this question:

please find the attached file.

Explanation:

In this code, four class "novels, magazines, technical journals, and textbooks", is defined, in which it holds their respective default constructor and the get and set method to hold the string and integer value, and in the book class the main method is defined, that creates its object and a switch to for search value and print its value.

You must give careful consideration before adding text to a placeholder because once text has been entered into a placeholder, the placeholder cannot be deleted.

True
False

Answers

False is your answer.

How many questions have you seen so far other than this one?

Answers

Answer:

18 other questions were answered by myself and Aristotle

Answer:

id.k

Explanation:

thanks for the points

Drag each tile to the correct box.
Match the device to its correct classification. Choose pairs that will use up all the tiles.
output
input
dual
peripheral
printer
monitor
modem
mouse

Answers

Answer:

Answers In explanation but don't know about dual

Explanation:

Input: mouse peripheral

Output: Monitor printer

Both: Modem

Answer:

Modem- Dual

Mouse- Input

Monitor- Output

Printer- Peripheral

Explanation:

I took the test

_____ software enables team members to prioritize and track tasks by providing features such as boards, timelines, and calendars.

Answers

Answer:

task management

Explanation:

Reading Materials Design and implement a set of classes that define various types of reading material: books, novels, magazines, technical journals, textbooks, and so on. Include data values that describe various attributes of the material, such as the number of pages and the names of the primary characters. Include methods that are named appropriately for each class and that print an appropriate message. Create a main driver class to instantiate and exercise several of the classes.

Answers

Answer:

Answered below

Explanation:

//The designs are implemented in Kotlin.

//Book class

class Book (val title: String,

val type: String,

val numberOfPages: Int,

val author: String ,

val yearPublished: Int ) {

fun bookDescription( ){

print("Book title is $title. Written

by $author and published

in $yearPublished" )

}

}

//Driver class

class Main {

fun main( ) {

val novel: Book = Book("Animal Farm", "novel", 200, "Orwell", 1990 )

println(novel.title)

println(novel.author)

val description = novel.bookDescription( )

println(description)

val magazine: Book = Book("Forbes", "magazine", 50, "Michael", 1995)

}

}

What type of device is a projector?

Input
Memory
Output
Storage

Answers

Answer:

MEMORY

Explanation:

yeahhhh

Answer:

Output

Explanation:

A projector is an Output device.

Define the summary function, which takes as arguments a database (dict) and a dict of current stock prices. It returns a dictionary (dict or defaultdict) whose keys are client names (str) whose associated values are 2-tuples: the first index is a dictionary (dict or defaultdict) whose keys are stock names (str) and values are the number of shares (int) the client owns. The second index is the amount of money (int) the portfolio is worth (the sum of the number of shares of each stock multiplied by its current price). Assume each client starts with no shares of any stocks, and if a client owns 0 shares of a stock, the stock should not appear in the client’s dictionary. Recall positive numbers are a purchase of the stock and negative numbers a sale of the stock. E.g., if db is the database above, calling summary(db, {'IBM':65, 'Intel':60, 'Dell':55, 'Apple':70}) would return

Answers

Hi :). (_define Your question to answer) ,

Consider all of the ways that you interact with the internet during a normal month in your life: websites, banking, apps, etc. Of all of those interactions, explain which one you think is LEAST secure and describe how much “risk” you experience using it. Then explain which interaction you feel is MOST secure?

Answers

Answer:

Website, are probably the least secure because depending on what site you click on it can be an add for a different website. You can risk ending up on a site you didn't want to. I think that banking apps are the most secure, because its mostly through your bank so it would have to be secure.

Explanation:

True or false: pinhole cameras can be outfitted with very accurate viewfinders

Answers

Answer:

true

Explanation:

Answer:

True

Explanation:

what is active transport​

Answers

Answer:

the movement of ions or molecules across a cell membrane into a region of higher concentration, assisted by enzymes and requiring energy.

Here ya go ;)

If a folder exists on an NTFS partition, which permission is needed by a user who needs to set security permissions on the folder?

Answers

Answer:

Full control.

Explanation:

An access control can be defined as a security technique use for determining whether an individual has the minimum requirements or credentials to access or view resources on a computer by ensuring that they are who they claim to be.

Simply stated, access control is the process of verifying the identity of an individual or electronic device. Authentication work based on the principle (framework) of matching an incoming request from a user or electronic device to a set of uniquely defined credentials.

Basically, authentication and authorization is used in access control, to ensure a user is truly who he or she claims to be, as well as confirm that an electronic device is valid through the process of verification

Hence, an access control list primarily is composed of a set of permissions and operations associated with a NTFS file such as full control, read only, write, read and execute and modify.

Hence, if a folder exists on a new technology file system (NTFS) partition, the permission which is needed by a user who needs to set security permissions on the folder is full control.

What the five types of initiatives that are necessary when putting together and implementing an IT strategy

Answers

Answer:

Pre-implementation

Planning

Execution

Completion

Control

Explanation:

The pre-implementation stage speaks volumes on the breakdown of the implementation stages and how it is being formulated. It shows a stepwise identification of important implementation carriers and the responsibility of the IT organization. Their focus is to determine the content and human resources that are required to implement the strategy being formulated.

The purpose of the planning implementation stage is to plan and agree on specific goals by considering all stakeholders. There is also a need to set deadlines, time-to-time evaluation, and effective coordination of the stakeholders.

The execution phase enforces the implementation plan. As the name implies, it builds a comprehensive plan by focusing on the target group to maintain and ensure a structural and systematically conducted work environment.

The completion phase includes all actions necessary to bring out the results within the organizzation. Initially, there is a need to agree on the dimension of the IT strategy, the time dimension, and the detailed dimension.

The last phase which is the control deals with the logic of setting appropriate quantitative and qualitative control measures so as to allows continuous implementation control and navigation implementation control.

AM GIVING BRAINLIEST! Assume you have entered the following after a prompt. >>> import time
How would you pause a program for 5 seconds?

pause(3)
time.pause(5)
time.sleep(5)
sleep(3)

Answers

Answer:

time.sleep(5)

Explanation:

For Python, not sure what program your teacher is asking about.

The Python time sleep function is used to delay a program's execution. To stop the running of the program for a certain amount of time in seconds, we can use the sleep function in Python. Thus, option C is correct.

What time sleep () in Python?

Python comes with built-in functionality for sleeping your program. The sleep() function in the time module allows you to pause the caller thread's execution for however long you choose.

The current thread's execution can be paused for a given amount of time in milliseconds by using the sleep() function. The millisecond argument value cannot be negative. If not, it raises an Illegal Argument Exception.

The current thread is put on hold for a set amount of time via sleep. This is an effective way to give other threads of an application or other apps that could be executing on a computer system access to processor time.

Therefore, time.sleep(5) pause a program for 5 seconds.

Learn more about Python here:

https://brainly.com/question/178238

#SPJ2

You need to update your router settings, so you log into the administration panel, whose Internet Protocol (IP) address is 192.168.0.1. Which IP version is this

Answers

Answer:

IPv4

Explanation:

An IP address is an acronym for internet protocol address and it can be defined as a unique number assigned to a computer or other network devices, so as to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network devices connected to the internet or network.

In Computer networking, IP address are classified into two (2) main categories and these are;

1. Local (internal) IP address.

2. Global (external) IP address.

Also, the internet protocol (IP) address comprises of two (2) versions and these are;

I. Internet protocol version 4 (IPv4): this is the first and original version of the internet protocol which was introduced in 1983 using the Advanced Research Projects Agency Network (ARPANET). An example of an IPv4 address is 192.168.1.0.

II. Internet protocol version 6 (IPv6): it is the modified (latest) version of the IPv4 address system and as such can accommodate more addresses or nodes. An example of an IPv6 is 2001:db8:1234:1:0:567:8:1.

Hence, Internet protocol version 6 (IPv6) was developed and introduced to replace the previous version (IPv4); Internet protocol version 4. The best statement which describes a benefit of IPv6 over IPv4 is that, Internet protocol version 6 (IPv6) eliminates the use of hierarchy in addressing, making addresses easier to use because the size of the routing table is smaller (reduced) and as such making routing with IPv6 to be more efficient.

In this scenario, you need to update your router settings, so you log into the administration panel, whose Internet Protocol (IP) address is 192.168.0.1. Thus, this is the IPv4 IP version.

9.
How many total numbers can be represented with an 8-bit binary (base-2) system?
Α. 127
Β. 128
C. 255
D. 256

Answers

Answer:

C. 255

Explanation:

The binary code for 255 is 11111111 which is the largest binary number that can be represented in 8 bits. This means you can represent a total of 255 numbers. (0-255)

Split the worksheet into panes at cell G1.

Answers

Answer:

1. Select below the row where you want the split, or the column to the right of where you want the split.

2. On the View tab, in the Window group, click Split.

Explanation:

suspect that several users are attempting to install unauthorized software. Upon researching, you discover that the attempts were unsuccessful. What tool did you implement that logged those attempts and identified the users

Answers

Two factor authentication? I’m not sure

HELP PLEASE WHAT DOES THIS MEAN!

Answers

Answer:

darling you have two brackets there

In which area is composing for games different from composing for movies?
A. looping scores
B. royalties earned
C, temp tracks
D. adaptive scores

Answers

Answer: royalties earned

Explanation:

In areas such as the looping scores, temp tracks and adaptive scores, there are similarities when composing for games and when composing for movies.

The area where there is difference when composing for games and composing for movies is the royalties earned. The interest that is earned on royalties for both cases are different.

A customer has several small branches and wants to deploy a Wi-Fi solution with local management using CAPWAP. Which deployment model meets this requirement

Answers

Answer:

Mobility express

Explanation:

Mobility express is defined as the ability to use the access point or the AP as a controller. It related to the lightweight network which is without a controller box. The access point of the mobility express uses CAPWAP images.

The CAPWAP stands for Control And Provisioning of Wireless Access Points. It is standard protocol which allows a central wireless of LAN access controller to use and manage the wireless access points.

Thus a customer who has various small branches and wishes to deploy a Wi-fi solution with the local management using CAPWAP should use the Mobility express as the deployment model.

7. Which cipher is based on the clues of the physical factors, rather than the hardware or a software cryptosystem

Answers

Answer:

The concealment cipher.

Explanation:

A concealment cipher also known as null cipher can be defined as an obsolete encryption format that typically involves the mixture of plaintext with non-cipher elements. This ultimately implies that, the plaintext is hidden in another message through encryption.

The concealment cipher is based on the clues of the physical factors, rather than the hardware or a software cryptosystem.

Basically, the concealment cipher is solely dependent on the clues of the physical factors that mainly affects the sender and receiver in a communication system.

rewrite the following program segment using a while loop instead of a for loop.

for(i=0;i<100;i++){
if (i%2===0){
print (i)
}
}​

Answers

Answer:

while i=0 or i<100:

if (i%2==0):

print(i)

Use the syntax SELECT ________ (expression) [Column Name] to limit the result set to the number of rows defined by the expression.

Answers

Answer:

Use the syntax SELECT _LIMIT_ (expression) [Column Name] to limit the result set to the number of rows defined by the expression.

Explanation:

The LIMIT keyword is often used to limit the number of rows returned in a result.  Usually, the Limit expression is combined with the "SELECT column_name(s) FROM table_name...WHERE condition" can be used to limit the result set to the number of rows defined by the expression, LIMIT.  The WHERE condition is optional, meaning it can be omitted.


Whenever you press a key, click the mouse or start an application, you're sending instructions tow
which computer part?

Answers

CPU (central processing unit)
Other Questions
The Compass TestI want to tell you a story that shows you why it's so important to ask about a test. A lot of students I work with all over the country take a test called the Compass Test. And when they're taking the Compass Test, they often don't know that this test is important. Some students try, and some students don't try.The Compass Test is actually very important. It is used by community colleges to place students. And if you do poorly on the Compass Test, you have to go to community college for a whole year while paying but without getting any credit.How does the author know about the importance of the Compass Test? He took the test when he was a student. He worked with students who took other tests. He researched the test and read about it. He asked his friends and colleagues about it. Why was Josef Mengele nicknamed "Angel of Death"? Emanuel surveyed a random sample of 50 subscribers to Auto Wheel magazine about the number of cars that they own. Of the subscribers surveyed, 15 own fewer than 2 vehicles. There are 340 subscribers to Auto Wheel magazine.Based on the data, what is the most reasonable estimate for the number of Auto Wheel magazine subscribers who own fewer than 2 vehicles?Choose 1 answer:(Choice A)A 15(Choice B)B 84(Choice C)C 93(Choice D)D 102 Bakit mahalagang matutuhan natin ang magpatawad sa kabila na mabigat ang naging pagkakasala ng taong nakagawa sa atin ng mali? Which of the following is INCORRECT what is k more reactive than li? Hannah wants to buy a $510 camera. She can save $35 each week from her paycheck. However, before Hannah can buy the camera, she must give her brother $85 that she owes him. For how many weeks will Hannah need to save before she can pay back her brother and buy the camera?Group of answer choicesA. 17B. 15C. 19D. 21 help plz will mark brainliest 100 point assignment Solve for x.......................... why can't copper sulphate be prepared by adding copper metal to dilute sulphuric acid The wrist is ________________ to the hand. Write the phrase as an expression. Five more that six divided by a number r. what does history teach you about YOURSELF? What is (-i)3?A. iB. -1C. -1D. 1 The organic compounds in living things are organized into groups: carbohydrates, lipids, proteins, and nucleic acids.Which two macromolecules play a central role in Transcription and Translation? lipids and nucleic acidsproteins and carbohydrates carbohydrates and lipidsnucleic acids and proteins I need help.what is one possible reason the supreme court might declare a law? Which of the following statements about the excerpt above is true?A)It was believed by the Allied Powers that the Germans and Austrians had premeditated World War I and used the assassination of the Archduke Franz Ferdinand as their justification to finally declare a war on Serbia.B)The Germans and the Austrians had a legitimate reason to declare war after the assassination of the Archduke because Serbia was not willing to accept the blame for the assassination, therefore committing an act of aggression against the two nations and setting the stage for war.C)Austria, Germany, and Serbia all share equal blame sparking the beginning of World War I because each nation acted unreasonably after the assassination of the Archduke Franz Ferdinand.The primary blame for the beginning of World War I falls primarily on Austria, as D)Germany simply joined in to support Austria as an Ally and should not be held accountable for starting the war. Which three actions can a health facility take to ensure patient confidentiality?allow anyone to access patient information only after they sign a non-disclosure agreementrestrict unauthorized staff from access to patient information dataobtain the patient's consent before sharing patient informationavoid speaking to the patient's familyspecify the use need for information on any authorizations Solve for x. Show your work. 3x = -12 The most important work of Mercy Otis Warren was ___.opposition to the ratification of the U.S. Constitutionspying on the patriotswriting plays and books to support the patriot cause of libertycorrespondence with Patriot leadersfriendship with the wives of U.S. Presidents