1. Define Validation Rule

4. A software that makes it much easier to modify and update documents.

Answers

Answer 1

Answer:

1. A Validation Rule is a rule given to a field that ensures that the attribute of data entered into the field meets the set criteria of the field before the data can be saved. The question asked by the field is either 'Yes' True or 'No' False, with the required answer being Yes or "True"

2. Compressed hours

Compressed hours is work mode where employees are allowed to do the number of hours to which they are contracted over a less number of working days

3. Microsoft Access

Microsoft Access is designed to automatically save data entered into forms as the user moves between records or when the form being worked on is closed thereby, ensuring  that data loss is prevented even when the form is closed after an edit is made

4. A document editor

A document editor can be used for the creation of new document and editing existing documents of different file types

Explanation:


Related Questions

In a single paragraph, write about the connections between web servers and web pages. Select and differentiate between their various characteristics and how they work together.

Edge please don't copy paste, 20 points

Answers

Answer:

web servers hold all the info that the website has on it, most servers hold multiple websites

Explanation:

Answer:

web servers hold all the info that the website has on it, most servers hold multiple websites

Explanation:

Which of the following is not a key component of a structure?
A. Name
B. Properties
C. Functions
D. Enumerations

Answers

Answer:

D i think

Explanation:

WHAT DOES THE SCRATCH CODE BELOW DO?

Answers

Answer:

the first one

Explanation:

Which of the following are logical reasons for using a pie chart to show how employees spend their time at ABC organization? Choose all that apply.

Answers

The logical reasons for using a pie chart to show how employees spend their time at ABC organization are;

the pie chart will help to show breakdown of hours worked by all employees at ABC organization.The pie chart works well to show changes in productivity over the course of a year.The pie chart works well to show trends in data.

What is a pie chart ?

A pie chart  can be regarded as a circular statistical graphic, partitioned to slices to illustrate numerical proportion.

With the use of this pie charts, the ABC organization can be able to know breakdown of hours worked by all employees at ABC organization , hence option 1,2,4 are correct.

Learn more about pie chart  at;

https://brainly.com/question/8407283

Answer:

A, C

Explanation:

its a and c your welcome

2 When you add text with the Text Tool, __________. the text is added to the current layer a new floating selection layer is created the text is added to every layer a new layer is created

Answers

Answer:

A new floating selection layer is created

Explanation:

In a graphic design software for example like CorelDraw, if  a text tool is used to add text, a new floating selection layer is created in which, the text is inserted.

Which wizard is a tool provided by Access that is used to scan the table’s structure for duplicate data?

Query Design Wizard
Table Design Wizard
Table Analyzer Wizard
Performance Analyzer Wizard

Answers

Answer:

Table Analyzer Wizard

Explanation:

Please help with my assignment! Use python to do it.

Answers

Answer:

I cant see image

Explanation:

can you type it and I'll try to answer

youre content and design should be influenced by the _______ of your users

a. age
b. goals
c. mood
d. attitude

i already know the answer 90%
im just making sure

Answers

b. im pretty sure lol.
B because it’s make more sense

What are your thoughts on the last nintendo direct

Answers

Answer:

I don't know? How do you feel about them?

Explanation:

Answer:

Wait, what's that-

Explanation:

(20points)
Why did Jinny get an error when she tried to use the variable 1stName?

Variables should be two words.
Variables cannot begin with a digit.
Variables should start with a number.
Variables should always be camelCase

Answers

Answer:

PLEASE LISTEN TO ME!! THE OTHER ANSWER IS WRONG!

Explanation:

The correct anwer is "Variables cannot begin with a digit"

Give 5 advantages of using powerpoint?​

Answers

it can be presented pictorially and thus make it easier to adopt the material

to gain a deeper understanding of a text, students should

Answers

Answer:

Should explain what they learned, be able to explain what is happening in great detail, and if its an informational text, then they should use what they learn and apply it in real life.

Explanation:

Hello, I am smart without showing off and I will help you with your homework and tell you the correct answers (◠ᴥ◕ʋ).​

Answers

Answer:

HII CSN U ANSWER MY MATH QUESTION

Which of the following is referred to as "keeping up with the Joneses"?

Answers

Answer:

This phrase basically means keeping up with the trend. You can get an Android for cheaper but you get the high quality iPhone because it appears rich and overall, better. But it's used a lot to say, "you're wasting money"

Choose the correct term to complete the sentence.

______ uses objects that represent classes to manage, manipulate, and store data.

•Object-defined programming

•Object-oriented programming

•Oriented programming

Answers

Answer:

Object-oriented programming

Explanation:

When used in object-oriented programming , a class is a factory for creating object. An object is a collection of data and behavaiors that represent some entity(real or abstract).

Answer: Object-oriented programming

Explanation: got it right on edgen

Who else hates brainly cause they took over 400 points out of my other account and left me at -324 points so copy and paste this every where

Answers

SAME! Instead, it was 630!! It was so unfair tbh, and I did nothing wrong.

Answer:

That's terrible :(

Explanation:

PLEASE HELP WITH KHAN ACADEMY WILL GIVE BRAINLIEST!!!!!!!!!!!!!!!!!!!!!!!!

Answers

Answer:     c !    :-)

Explanation:

WHAT DOES THE SCRATCH CODE BELOW DO?

Answers

I think it’s b vertically

Answer:

It is horizontal by 10.

Explanation:

The x axis is horizontal which is left and right. On the other hand, the y axis is up and down which is vertical.

Maria is writing a program to design t-shirts. Which of the following correctly retrieves the values for a t-shirt object's pattern?

newStyle.pattern
newStyle + pattern
newStyle = pattern
newStyle(Pattern):

Answers

Answer:

newStyle.pattern

Explanation:

example:

class Style:

    def __init__(self, pattern=""):

def design():

    newStyle = Style (this allows the user  to user newStyle to access all values in the class Style)

    now that you have this, you can call the pattern attribute

    newStyle.pattern

    you can also set this equal to a new value here but for the sake of this question your answer is newStyle.pattern

hope this made sense and helped you out! :)

   

Design a program that ask the user to enter a series of positive numbers. The user should enter a negative number to the series. After all the positive numbers have been entered the program should display their sum

Answers

Answer:

total = 0

while True:

   number = float(input("Enter a number: "))

   

   if number < 0:

       break

   

   total += number

   

print("The total of the positive numbers entered is", total)

Explanation:

*The code is in Python.

Initialize the total as 0

Create a while loop. Inside the loop:

Ask the user to enter a number. Check the number. If it is smaller than 0 (This means it is a negative number), stop the loop using break. Add the number to the total (cumulative sum). (This way your program keeps summing numbers until you enter a negative number)

When the loop is done, print the total

Write IF() function for student 3, If total mark is greater than 10 then print
the text “you have scored good" else print“ you need to improve" *

Answers

Answer:

Explanation:

The following code is written in Java. The if() function is actually called an if statement. The following code can be copied and pasted where you need as long as it is within the scope of the mark variable in order to call it and compare it to 10

if (mark > 10){

           System.out.println("you have scored good");  

       } else {

           System.out.println("you need to improve ");

       }

I made a fish emoji what do you think >{'_'}< should I change anything

Answers

Answer: It is beautiful

Explanation:

☁️ Answer ☁️

666/69 I like it. : )

What are your initial thoughts regarding copyright and fair use after watching the clip?

(The clip is The Clock by Christian Marclay, just a 3-minute clip 2010-2011 you can find on YT)

Answers

The answer is A you’re welcome

Use the drop-down tool to select the correct answer.

Government agencies work to catch people who engage in software piracy, and can also help to stop them by filing lawsuits.

Answers

Answer:

Software producers

Explanation:

Patent can be defined as the exclusive or sole right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention for a specific period of time.

Generally, patents are used on innovation for products that are manufactured through the application of various technologies.

Basically, the three (3) main ways to protect an intellectual property is to employ the use of

I. Trademarks.

II. Patents.

III. Copyright.

Copyright law can be defined as a set of formal rules granted by a government to protect an intellectual property by giving the owner an exclusive right to use while preventing any unauthorized access, use or duplication by others.

Hence, government agencies work to catch people who engage in software piracy, and software producers can also help to stop them by filing lawsuits. Software producers or developers are saddled with the responsibility of filing lawsuits against pirates or intellectual property theft who engages in the illegal use of patents or licensed software applications.

Sometimes it is necessary to_ after installing a new software program and before using it the first time.

Answers

Answer:

The answer is "restart your computer".

Explanation:

Installing the new software programs with system drivers and plug-ins would be the ready-to-execute software. It refers to a particular installation of a device or hardware to enable its computer functional. Since downloading a new software program and using it first, you often have to restart your computer.

Answer: restart your computer

Explanation: took the quiz

What is Qbasic programming language?​

Answers

Answer:

QBASIC is a high level programming language that allows us to write programs. BASIC uses English like words and mathematical symbols to write programs. The programs written in QBASIC need to be converted into machine codes. QBASIC provides working area to write programs and QBASIC has its own Interpreter

Explanation:

Help!!!! Arrays 100 points

Answers

Answer:

2 weeks ago so i think your doe with the quiz

Explanation:

Answer:

i hate to do this but I'm desperate.

Explanation:

you have no keywords in the question and this was months ago, these points are just going to waste and I need them, sorry & thanks

Writing on social media has helped users be:

A. more formal.

B. slower.

C. more concise.

D. wordy.​

Answers

Answer:

C

Explanation:

more concise

Question
You want to draw a rectangle over the moon you added to your slide and then move it behind the moon. You want it to look like a frame. What ribbon tab would you click to find the tool to add the rectangle?

Animations
Insert
Design
Home

Answers

Answer: Insert  :-) !

Explanation:

What is the difference between Input, Output, and Storage Devices?

Answers

Answer:

Explanation:

There are three different types of peripherals: Input, used to interact with, or send data to the computer (mouse, keyboards, etc.) Output, which provides output to the user from the computer (monitors, printers, etc.) Storage, which stores data processed by the computer (hard drives, flash drives, etc.)

There are three different types of peripherals: Input, used to interact with, or send data to the computer (mouse, keyboards, etc.) Output, which provides output to the user from the computer (monitors, printers, etc.) Storage, which stores data processed by the computer (hard drives, flash drives, etc.)
Other Questions
What do you think was the main reason why the Allied Powers (Britain, France, Russia- who leaves in the middle, & The USA- who enters in the middle) won WWI? Amelia is home alone, and her tablet will not turn on. How can she approach solving this problem? Throw the tablet away because it's junk. Try plugging the tablet in to see if it needs to charge. Call her Dad and ask him to come home early. Watch a movie instead. Summarize the legal protections granted in Amendment 5. why Tambo international airport would have been the most cost or time effective arrangement Whats the zodiac sign of someone being born today in March 30th? do women have less freedom than men? and are there different rules for men and women ? What do you understand by membrane potential?Using diagram(s) describe the genesis of the membrane potential If the school can conduct community service in your barangay, what specific activity do you think should be done? Explain briefly. I will greatly appreciate if you can solve this question! please help answer the worksheet pleaseeee :(( which value from the set makes 12n-15=42 true?A.2.25B.2.8C.3.5D.4.75 Please answer quick and just write explanation quick pls hurry quick for brainlessly uu The next term in the sequence 15, 12, 8, 3 Simplify. 1/4+x divided by 1/2 find the value of x. need quickly plz help You need 65.0 g of aluminum for an experiment. How many atoms of aluminum is that? 40 POINTS WILL PICK BRAINLEST NEED HELP ASAP!!!! Read the passage. The author's tone in paragraph 6 can best be described as one of A mourning. B anger. C despair. D celebration. What is the probability that a six sided dice rolls on the four and the card is a heart How does a living a healthy lifestyle demonstrate a growth mindset? Provide examples and an explanation. How were the nazi's able to get ordinary german citizens to participate in the kristallnacht violence against jewish people?