Task:
1. Create a user named Administrator with
unlimited amount of space

2. Change the password of Administrator

3. Grant update privileges on the
Student_name, GPA columns to
Administraor user from Student table

4. Remove Privilege Update from
Administrator

5. Create a profile named MGProfile with 2
sessions per user and the life time of
password is 160 and 3 failed attempts to
log in to the user account before the
account is locked.

Answers

Answer 1

Most frequent reasons for Windows operating system loading errors: broken or faulty BIOS. The size and settings of a computer hard disk are not supported by BIOS. damaged or faulty hard disk.

How to Fix Operating System Loading ErrorAny Windows laptop or computer may experience the problem of Windows Error Loading Operating System at any time. This occurs when the computer tries to boot but displays an error message such as "Error loading operating system."The good news is that you don't need to freak out when your computer won't turn on. You can try a number of tested techniques to recover your data and restore your device.Most frequent reasons for Windows operating system loading errors:Damaged or faulty BIOSThe size or settings of a computer hard drive are not supported by BIOS.damaged or faulty hard diskthe incorrect disk was selected as the bootable hard drive to load the operatingoperating system that is incompatible.

To Learn more about loading errors refer to :

https://brainly.com/question/11472659

#SPJ1


Related Questions

Boolean Algebra
Simplify AB'(D'+C'D)+B(A+A'CD) and show all work.

Answers

Answer: B details to simplify A'B(D' + C'D) + B(A + A'CD) start with ( D' +C'D) = (D' + C') likewise (A + A'CD) = (A + CD) This gives A'B(D' + C') + B(A + CD)= ...

4 answers

·

1 vote:

[math]A'B (D'+C'D) + B (A+ A'CD)[/math] [math]= A'B (D'+D)(D'+C') + B (A+ A')(

Explanation:

1. What operating system are you using on your computer?

Answers

Answer:

Windows

Explanation:

Flexible and convenient

When collecting and sharing information, the company must meet all _________________________ for the type of data being collected.
A US laws
B State Laws
C Federal Laws
D Federal or State Laws

Answers

Answer: D Federal and State Laws

Explanation: U.S. Privacy Act of 1974-this act established rules and regulations regarding U.S. government agencies collection, use, and disclosure of personal information.

The Federal Trade Commission govern the collection, use, and disclosure of personal data.

HIPPA- Health Insurance Portability and Accountability provide healthcare and health insurance protection

Answer: D

Explanation:

Codehs 4.1.8 Using the Point Class​

Answers

Using the knowledge of the computational language in JAVA it is possible to write that Using the Point Class​  to described the correct code.

Writting the code:

{

 public static void main(String[] args)

 {

   extractDigits(2938724);

 }

 public static void extractDigits(int num)

 {

   int digit;

   while( num > 0 )

   {

     digit = num % 10;

     num = num / 10;

     System.out.println(digit);

   }

 }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Answer:

Explanation:

public class Point

{

   private int x;

   private int y;

   

   public Point(int xCoord, int yCoord)

   {

       x = xCoord;

       y = yCoord;

   }

   

   public void move(int dx, int dy)

   {

       x += dx;

       y += dy;

   }

   

   public String toString()

   {

       return x + ", " + y;

   }

}

to create a public key signature, use the ______ key.

Answers

Private Key is the correct solution to the problem.  To create a public key signature, you would use the Private key. When you have an SSH key, you must also have the public key in order to set up SSH passwordless login with SSH-key. However, if you have lost the public key but still have the private key, you can regenerate the key.

What is a public key signature?

It is a cryptographic key that is associated with a private key and is used with an asymmetric (public key) cryptographic algorithm. The public key is linked to a user and can be made public. When it comes to digital signatures, the public key is used to validate a digital signature signed with the corresponding private key.

In Layman's Terms, A Public Key Signature (PKI Digital Signature) is the modern equivalent of a wax seal that people historically would use to secure sensitive communications.

What is Private Key?

A private key, like a password, is a secret number used in cryptography. Private keys are also used in cryptocurrency to sign transactions and prove ownership of a blockchain address.

A private key is an essential component of bitcoin and altcoins, and its security features aid in preventing theft and unauthorized access to funds.

To know more about public key signature, visit: https://brainly.com/question/18560219

#SPJ4

And one well written paragraph, explain how you can put raw data into excel and turn it into something useful that could be used in different Microsoft office applications.

Answers

The way that you can put raw data into excel and turn it into something useful that could be used in different Microsoft office applications are:

Open the Excel file into which the data is to be imported.Now, select the Data tab on the ribbon.Select  the Get Data option. Select From File > From Text/CSV.Through the use of the explorer, Select a CSV file. Lastly, Select the Load button.

What is excel about?

Excel is said to often used to save, analyze, a well as report on large volume of data.

Note that It is often used as a tool by accounting teams for the recording of financial analysis, as well as been used by professional to manage a list of and unwieldy form of datasets. Examples of Excel applications are balance sheets, budgets, etc.

Learn more about Microsoft office applications from

https://brainly.com/question/15131211
#SPJ1

what do we generally avoid in a many-to-many junction table?
a. two foreign keys
b. an auto increment primary key column
c. data items specific to the many-to-many relationship
d. a logical key

Answers

Not An AUTOINCREMENT primary key column, Data items specific to the many-to-many relationship. When numerous records in one table are linked to several records in another table, this is known as a many-to-many relationship.

What is many to many junction?

When numerous records in one table are linked to several records in another table, this is known as a many-to-many relationship.

The simplest method is to utilize a Junction Table when you need to create a many-to-many link between two or more tables. By referring to the main keys of each data table, a junction table in a database, also known as a bridge table or associative table, connects the databases.

A many-to-many relationship, or type of cardinality, is used in systems analysis to describe the relationship between two entities, such as A and B, where A may have a parent instance for whom there are many offspring in B and vice versa.

To learn more about Many to many junction refer to:

https://brainly.com/question/24092195

#SPJ13

Write a function that uses recursion to raise a number to a power. The function should accept two arguments: the number to be raised and the exponent. Assume that the exponent is a nonnegative integer. Demonstrate the function in a program.

IN C PROGRAM

Answers

Answer:

/*

Program to computea number raised to a power using recursion

base = number and exp is the power to which the number is raised

*/

#include <stdio.h>

int power(int base, int exp);  

int main(){

   int base, exp;

   

   printf("Enter base: ");

   scanf("%d", &base);

   

   printf("Enter exponent: ");

   scanf("%d", &exp);    

   

   

   long result = power(base,exp);  //function call

   printf("%d raised to the power %d = %ld\n", base, exp, result);

   

   return 0;

}

int power(int base, int exp){

   //2 base cases

   // if exp = 0, return 1

   if (exp == 0){

       return 1;

   }

   

   //if exp  1, return base

   if ( exp == 1){

       return base;

   }   //base case when expnent is 0

   

   //otherwise return base * base to the power exp-1

   return  base * power(base, exp-1 );

}

Explanation:

Witch of the following are true of email communications when compared to
Phone or face to face communications

Answers

The statements which are true of e-mail communications when compared to phone or face-to-face communications is that communications via e-mail are:

more difficult to determine tone or inflection.easily shared.absent of visual cues.

What is communication?

Communication can be defined as a strategic process which involves the transfer of information (messages) from one person (sender) to another (recipient or receiver), especially through the use of semiotics, symbols, signs and network channel.

What is an e-mail?

An e-mail is an abbreviation for electronic mail and it can be defined as a software application (program) that is designed and developed to enable users exchange (send and receive) both texts and multimedia messages (electronic messages) over the Internet.

In this context, we can reasonably infer and logically deduce that in an electronic mail (e-mail) it would be more difficult to determine a person's tone or inflection in comparison with phone or face-to-face communications.

Read more on e-mail here: brainly.com/question/15291965

#SPJ1

Complete Question:

Which of the following are true of e-mail communications when compared to phone or face-to-face communications?

Communications via e-mail are _____.

absent of visual cues

more precise and accurate

limited in efficiency

less likely to be saved

easily shared

more difficult to determine tone or inflection

Which should you do to avoid having difficulty getting scholarships or being
admitted to college?
A. Protect yourself from cyberbullying
B. Be honest and open in the material you post online
C. Avoid making comments on your friends' photos
D. Watch the nature of what you post on social media

Answers

To avoid having difficulty getting scholarships or being admitted to college, you should watch the nature of what you post on social media.

What do you mean by scholarship?

A scholarship is a type of financial aid given to students to help them further their education. Scholarships are typically awarded based on criteria such as academic merit, diversity and inclusion, athletic ability, and financial need. Scholarship criteria typically reflect the values and goals of the award's donor, and while scholarship recipients are not required to repay their awards, they may be required to meet certain requirements during their period of support, such as maintaining a minimum grade point average or participating in a specific activity.

Finding appropriate scholarships to apply to, according to the majority of my students, is one of the most difficult aspects of applying for scholarships. With so many scholarships and scams available, it's easy to become overwhelmed.

So, D is the correct answer.

To learn more about scholarship

https://brainly.com/question/25298192

#SPJ9

what are the activities usually performed in database operations

Answers

Answer:

The most frequently available operators include PROJECT, JOIN and SELECT. SQL includes DDL (Data Description Language)

Explanation:

if you want to assign a user the permission to create schema and run ALTER or any user, what role should you assign to that user?
A. dp_backupoperator
B. db_accessadmin
C. db_securityadmin
D. db_datawriter

Answers

As a database administrator, if you want to assign a user the permission to create schema and run ALTER or any user, the role should you assign to that user is "db_accessadmin" (Option B)

What does it mean to run ALTER?

In SQL, the ALTER command is used to modify a table, view, or the whole database. The ALTER command in SQL allows us to add, change, and delete constraints, columns, and indexes.

It is to be noted that SQL is a computer language developed for managing data in a relational database management system or for stream processing in a relational database management system.

Learn more about database administrator:
https://brainly.com/question/13040754
#SPJ1

what does syntax error mean :-;
explain briefly.

thankyou!

Answers

A syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language. For compiled languages, syntax errors are detected at compile-time. A program will not compile until all syntax errors are corrected.

Know the tags to be used for each style or format.​

Answers

Answer:

1. Bold                           <b                    /b>

2. Strong                      <strong    /strong>

3. Italic                          < i              /i >

4. Emphasized             <em           /em>

5. Superscript              <sup         /sup>

6. Subscript                 <sub        /sub>

Explanation:

are all counting and calculations done in the system unit

Answers

The ALU (Arithmetic Logic Unit), located in the system unit, is the component of the computer utilized for calculations and comparisons.

Describe ALU.

Arithmetic-logic unit (ALU) definition Arithmetic and logic operations are performed on the operands in computing instruction words by an arithmetic-logic unit, a component of a central processing unit. Some processors separate the ALU into an arithmetic logic unit (AU) and an arithmetic logic (LU).

What are the primary purposes of an ALU?

Simple multiplication, division, addition, subtraction, addition, and logic operations like OR and AND are all performed by the ALU. The data and instructions for the program are stored in memory. Data and instructions are retrieved by the control unit from memory.

TO know more about Arithmetic Logic Unit visit:

https://brainly.com/question/14247175

#SPJ10

how do you fill different data into different cells at a time in Excel

Answers

The way that you fill different data into different cells at a time in Excel are:

Click on one or a lot of cells that you want to make use of as the basis that is needed for filling additional cells. For a set such as 1, 2, 3, 4, 5..., make sure to type 1 and 2 into the 1st two cells. Then pull the fill handle .If required, select Auto Fill Options. and select the option you want.

How do you make a group of cells auto-fill?

The first thing to do is to place the mouse pointer over the cell's bottom right corner and hold it there until a black + symbol appears. Drag the + symbol over the cells you wish to fill in while clicking and holding down the left mouse button. Additionally, the AutoFill tool rightly fills up the series for you.

Note that  Excel data entering  can be automated and this can be done by: On the Data tab, select "Data Validation," then click "Data Validation." In the Allow box, select "List." Enter your list items in the Source box, separating them with commas. To add the list, click "OK." If you wish to copy the list along the column, use the Fill Handle.

Learn more about Excel from

https://brainly.com/question/25879801
#SPJ1

you have a 10vdg source available design a voltage divider ciruit that has 2 vdc , 5vdc , and 8 vdc available the total circuit current is to be 2mA

Answers

If you try to divide 10V in three voltages, the sum of the three voltages must be equal to the total voltage source, in this case 10V. Having said this, 2 + 5 + 8 = 15V, and your source is only 10V. So you can see is not feasible. You can, for example, have 2V, 5V and 3V, and the sum is equal to 10V. Before designing the circuit, i.e, choosing the resistors, you need to understand this. Otherwise, I suggest you to review the voltage divider theory.

For instance, see IMG2 in my previous post. If we were to design a single voltage divider for the 5VDC, i.e, 50% of the 10V source, you generally choose R1 = R2., and that would be the design equation.

How to address a resume with wacky fonts

Answers

Answer:

Open Minded

Explanation:

So think about the person who wrote this resume maybe they were nervous and looking for a way to lighten the mood so they chose something wacky or funny to realief stress or any anxiety so just be open minded and dont judge people based on just the fonts they use

Hope This Helps <3 <3

Which of these statements about Active Directory (AD) are true? Check all that apply.
a. AD includes a tool called the Active Directory Authentication Center, or ADAC.
b. AD is incompatible with Linux, OS X, and other non-Windows hosts.
c. AD can ""speak"" LDAP.
d. AD is used as a central repository of group policy objects, or GPOs.

Answers

All of the statements about Active Directory (AD) that are true include the following:

c. AD can ""speak"" LDAP.

d. AD is used as a central repository of group policy objects, or GPOs.

What is Group Policy Object?

Group Policy Object can be defined as a set of Group Policy settings of the Microsoft Windows NT operating systems that is designed and developed to define what a computer system should look like.

Additionally, Group Policy Object (GPO) controls and sorts all of the end user and computer account features and working environment in general. In order to sort a computer system into a group, it is very essential and important that you set a group sorting criteria, so as to sort systems by IP Address.

In conclusion, Active Directory (AD) can manage Lightweight Directory Access Protocol (LDAP) and it is generally used by network administrators and engineers as a central repository of group policy objects (GPOs).

Read more on Active Directory here: brainly.com/question/28900362

#SPJ1

One of Accenture’s clients is considering a major Cloud transformation project but is concerned about the time and costs associated with such an initiative.

What should Accenture’s security team focus on to address this particular client's concern?

Answers

Accenture has created accelerators that can quickly and cost-effectively deploy particular security policies to cloud settings. Thus, option A is correct.

What is a Cloud transformation?

Cloud transformation can be defined as the way through which the data is being transferred into a cloud system in which they can access the data as they want and is always present at that time.

Perhaps one of Accenture's customers are thinking contemplating undertaking a sizable cloud transformation project and yet is worried about just the cost and effort involved.

Accenture has created acceleration that really can quickly and cost-effectively apply particular security measures to cloud settings.

Therefore, option A is the correct option.

Learn more about Cloud transformation, here:

https://brainly.com/question/25737623

#SPJ1

The question is incomplete, the complete question is:

A. Accenture has developed accelerators that can deploy specific security controls to cloud environments in just a few hours, thereby reducing costs.

B. Accenture is the only company that has the experience needed to implement major cloud transformations.

C. Accenture will delay the migration if there are vulnerabilities present in the client's current systems.

D. Accenture's information security team uses waterfall methodology to ensure the migration is fully documented.

Edil wants to create a document by typing in a few paragraphs of text into his computer. He needs to use a pointing device to click the appropriate
buttons to run the text editor.He also needs to see what he is typing. Which three peripherals will Edil need to perform this task?
keyboard
joystick
speaker
mouse
monitor

Answers

A monitor is a screen that is used, for instance, in airports or television studios, to show specific types of information. He was observing a tennis match on a television screen. Screen, visual display unit, and VDU More alternatives to monitor

Explain about the monitor?

A computer system can be monitored to ensure proactive response, data protection, data collection, and overall system health. Although monitoring doesn't solve issues, it does make computers more dependable and stable.

A computer monitor is a display adapter that shows data from the video card of the computer. Images are displayed on the directly attached monitor after binary data, which consists of 1s and 0s, is converted into images by a video card or graphics card.

The most popular sort of monitor you can find right now, along with LED, is LCD. In order to organize the liquid between the two glass panes that make up an LCD monitor, hundreds of rows of pixels are used.

Monitor helps us to see what we are typing.

To learn more about monitor refer to:

https://brainly.com/question/3927906

#SPJ1

What part of a computer stores all the digital content on a computer?

Motherboard

Hard disk drive

SD card

CPU

Answers

Answer:

Its (B) Hard disk drive

Explanation:

Its B since in a computer the hard disk drive stores digital content like video's, word documents, photos, programs, etc.

1.16.4: Super Cleanup Karel
does not pass 4th world, please advise, urgent answer needed, 50 pts.
attached image is final result on world 4.
variables are NOT allowed.


public class SuperCleanupKarel extends SuperKarel
{
public void run()
{
ballsTaken();
while(leftIsClear())
{
endUpFacingEast();
ballsTaken();
if(rightIsClear()){
endUpFacingWest();
ballsTaken();
} else {
turnAround();//commentasdfasfdf
}
}
if(rightIsClear())
{
endUpFacingWest();
ballsTaken();
} else {
turnAround();
}
turnLeft();
if(rightIsBlocked())
{
if(frontIsBlocked())
{
turnLeft();
}
}else
{
turnRight();
}
while(frontIsClear())
{
move();
}
turnLeft();
if(frontIsBlocked())
{
turnRight();
if(leftIsBlocked())
{
if(frontIsBlocked())
{
turnLeft();
}
}
turnLeft();
}

}

private void ballsTaken() {
if(ballsPresent()) {
takeBall();
}
while(frontIsClear())
{
move();
if(ballsPresent())
{
takeBall();
}
}
}

private void endUpFacingEast()
{
turnLeft();
move();
turnLeft();
}

private void endUpFacingWest()
{
turnRight();
move();
turnRight();
}
}

Answers

Answer:

WHAT????????

Explanation:

If you use a pen down block to instruct a sprite to go to random position and then move 100, what happens? A. The sprite teleports randomly and creates a single line 100 units long. B. The sprite creates a 100-unit line between its starting point and a random location. C. The sprite draws a line to a random position, then creates another line 100 units long. D. The program does not run because these commands can’t be combined.

Answers

Answer:

C

Explanation:

The sprite draws a line to a random position, then creates another line 100 units long

2. Mr. Motladiile is an innovative businessman who came up with an idea of creating a system that can generate electricity using magnets, and he teamed up with Mr. Tangeni who is the sole engineer of the system. Due to finances the project halted, however Mr. Tangeni felt that he was under paid despite the effort he has put leading the project, he then thought of creating the system and sell it to the highest bidder.
a) Explain the protection that Mr. Motladiile can put in place to prevent reproduction of the design and for how long will it last

Answers

Answer:I DONT THE ANSER PLEASE HELP ME

Explanation:PLEASE

Given the string, s, and the list, lst, associate the variable contains with True if every string in lst appears in s (and False otherwise). Thus, given the string Hello world and the list ["H", "wor", "o w"], contains would be associated with True.

Answers

In this exercise we have to use the knowledge of computational language in python  to write a code that the string, s, and the list, lst, associate the variable contains with True if every string in lst appears in s (and False otherwise)

Writting the code:

lst = ["H", "wor", "o w"]

s = "Hello world"

contains = True

for e in lst:

if not e in s:

contains = False

break

print(contains)

We used the print() function to output a line of text. The phrase “Hello, World!” is a string, and a string is a sequence of characters. Even a single character is considered a string.

See more about python at brainly.com/question/18502436

#SPJ1

how adobe photoshop can improve productivity of a organization

Answers

Adobe photoshop allows the process of editing an image to go by much quickly. Instead of taking days, it could take a few hours instead with adobe photoshop

What is the full meaning of FORTRAN​

Answers

Answer:

FORTRAN in full is "Formula Translation"

Explanation:

Its a computer programming language created in 1957 by John Backus that shortened the process of programming and made computer programming more accessible

This is rigged. I think I'm gonna faint.

Answers

The primary characteristics of the given devices are:

A mouse is a(n) input device.

A printer is a(n) output device.

What is a device?

A device is a piece of hardware or equipment in a computer system that performs computing functions. A device is a physical piece of hardware or software that performs one or even more computing functions within a computer system. It can either provide input to the computer or accept output from it. A device is any electronic element that has some computing capability and can install firmware or third-party software. Devices include your computer's speakers, disc drive, printer, microphone, modem, and mouse. They can all be replaced or installed separately.

To learn more about device

https://brainly.com/question/27013190

#SPJ13

Answer:

The answers are input and output, respectively.

Explanation:

Distinguish between composition and inheritance.

Answers

Answer:

compotsition: The combining of distinct parts or elements to form a whole

Inheritance: The action of inheriting something

Explanation:

Other Questions
Find the missing endpoint if S is the midpoint RT. R(-9, 4) and S(2, -1); Find T. The record high temperature on January 15 is 41.5 Fahrenheit the record low temperature on that day is -16.8 Fahrenheit what is the difference in the record temperatures in degrees Fahrenheit Question 3 (2 points)Select a quotation that most clearly reveals Thoreau's purpose in "From, Walden:"Every morning was a cheerful invitation to make my life of equal simplicity, andI may say innocence, with Nature herself.""It is intermediate in its nature between land and sky.""Not a fish can leap or an insect fall on the pond but it is thus reported incircling dimples, in lines of beauty""Over this great expanse there is no disturbance but it is thus at once gentlysmoothed away and assuaged". A worker drops a wrench from the top of a tower 101.3 m tall. What is the velocity when the wrench strikes the ground? On a coordinate plane, 2 triangles are shown. The first triangle has points F prime (1, 5), E prime (negative 1, 1), and D prime (negative 4, 2). The second triangle has points E (1, negative 1), D (2, negative 4), and F (5, 1). Complete the mapping of the vertices of DEF. D(2, 4) D' E(1, 1) E' F(5, 1) F' What is the rule that describes a reflection across the line y = x? rx = y(x, y) Please give the answer. a hacker has discovered a system vulnerability and proceeds to exploit it to gain access to the system. the vulnerability is not yet known to the developer so no fix is available. what type of attack is this? Which of the following sentences do not support the topic sentence? Check all that apply Find the value of the variable. Which atom (magnesium or chlorine) has a higher electronegativity?___________________________(you should also be prepared to answer the question if asked for lower electronegativity)5a. Explain why the atom has a higher electronegativity energy. Include the definition of electronegativity, the trend from the periodic table and the reason the trend exists based subatomic particle Olivia wants to buy a pizza. A plain cheese pizza costs $8.50 and each additional topping costs $0.75. Let t represent the number of toppings. How many toppings can Olivia get if she only has $8.00 to spend. Set up your inequality and solve. Then write your final answer in a complete sentence. Relate reactivity to electron distance from nucleus/strength of all attraction to nucleus 2. If f(x) = 3x - 4x + 6and g(x)= x + 3x + x - 3, then find A.(f+g)(x)B.(f- g)(x)C.(3f+2g)(x)D. (3f-2g)(x) I WILL GIVE YOU BRAINIEST Write an objective summary of the Helen Keller text, From The Story of My Life.Write a paragraph that explains what the text is about. Be sure to include the title and author's name.When writing an objective summary:Do not write a page-by-page recap. A summary should give the reader an idea of what the text is about without completely retelling the story.Do not simply write a statement about the topic like - It is about a woman who is blind and deaf. It should include details.The summary must be in your own words, but it has to be unbiased and not include opinions, experiences, or prior knowledge. Do not plagiarize. What is the value of -7/8-1 2/5 pls asap Please help meeeeeeeeeeeeeeee!!!!!!!!!!!!!!!!!!Use vocabulary words to describe how to completely factor the expression 4x^-5 + 16x^-3, and write the factors using only positive exponents.Vocabulary-monomial expression negative exponents law scientific notation significant digits A jets speed in still air is 240 mph. One day it flew 700 miles with a tailwind (the wind pushing it along) and then returned the same distance against the wind. The total flying time was 6 hours. Find the speed of the wind. Suppose that g(x) = f(x) + 5. Which statement best compares the graph ofg(x) with the graph of f(x)? 6. Identify the principle of government that relates to the amendment quotebelow."Congress shall make no law respecting an establishment of religion, orprohibiting the free exercise thereof; or abridging the freedom of speech,or of the press..."O popular sovereigntyO separation of powersOlimited government round to 1 significant figure