SQL a. has become the de facto standard database language b. can be used to define database systems c. both a. and b. d. none of the above

Answers

Answer 1

Answer:

a.)has become the de facto standard database language

Explanation:

SQL known as Structure Query Language can be described as domain specific language that is Been used in execution of tasks son database. Those task could be updating of data.

Database admistraion.

Microsoft SQL server is one of the example of database system that uses SQL.

It should be noted that SQL has become the de facto standard database language


Related Questions

The internal LAN is generally considered a trusted zone.
a. True
b. False

Answers

Answer:

Option A:

True

Explanation:

The internal LAN is generally considered a trusted zone because it is only accessible by a limited number of users each with a specific administrative privilege. Reduces the occurrence of threats to the system as most of the users are profiled, documented, and well known.

It is a lot more difficult to hack into an internal LAN because of its closed nature, with only a limited number of devices connected. Tracing the source of a security breach is also a lot easier compared to a Wide Area Network.

how do u beat sonic unleashed

Answers

Answer: I guess you gotta do the fast, and then you gotta beat the things up when Sonic becomes even more of a furry ¯\_(ツ)_/¯

Explanation:

Watch playthroughs of the game.

Which of the following is the process of writing the step-by-step instructions that can be understood by a computer?

Answers

Answer:

The process should be called an algorithm!

write a python function that takes the largest and smallest numbers in a list, and swap them (without using min() or max() )

Answers

Answer:

def SwapMinMax ( myList ):

   myList.sort()

   myList[0], myList[len(myList)-1] = myList[len(myList)-1], myList[0]

   return myList

   

Explanation:

By sorting the list, you ensure the smallest element will be in the initial position in the list and the largest element will be in the final position of the list.

Using the len method on the list, we can get the length of the list, and we need to subtract 1 to get the maximum element index of the list.  Then we simply swap index 0 and the maximum index of the list.

Finally, we return the new sorted list that has swapped the positions of the lowest and highest element values.

Cheers.

Multiple Single SNMP managers are communicating with a single SNMP agent in:_____.

Answers

Answer:

many-to-many

Explanation:

Many-to-Many Communication is a term that describes a form of online or over the internet communication whereby numerous users are sending and receiving information, in such a way that the recipient does not have the idea of who the receiver is, and neither does the receiver know who the sender is, even though the information facets frequently connects through various websites.

Hence, Multiple Single SNMP managers are communicating with a single SNMP agent in "many-to-many communication."

What is one advantage of a magnetic hard drive as compared to a solid state drive?
O It won't be harmed if you drop your computer.
O It spins faster.
O It is open source.
O It is less expensive.

Answers

I’m not 100% sure about this but it it’s D or B

Testing mode identify internal components of a computer.

Answers

Answer:

CPU

Heatsink

Motherboard

PSU

HDD

RAM

GPU (If CPU does not have integrated graphics)

Chassis Fans

Some of the internal components of a computer are CPU, RAM, ROM, etc.

What are the internal components of a computer?

Internal components of a computer refer to the parts inside the computer case that enable it to function properly.

We have,

Some of the internal components of a computer are:

- CPU (Central Processing Unit): This is the brain of the computer, responsible for executing instructions and processing data.

- Motherboard: The motherboard is the main circuit board of the computer that connects all the components together.

- RAM (Random Access Memory): This is the computer's temporary storage space, where data and programs are loaded for fast access by the CPU.

- Hard Disk Drive (HDD) or Solid State Drive (SSD): These are the main storage devices in the computer, where all the data and programs are permanently stored.

- Power Supply Unit (PSU): This is responsible for providing power to all the components of the computer.

- Graphics Processing Unit (GPU): This is responsible for rendering graphics and images, and is particularly important for gaming and video editing.

- Sound Card: This component handles the computer's audio processing and output.

- Optical Drive: This is used to read and write data from optical discs such as CDs and DVDs.

- Cooling System: This includes fans and heat sinks that help keep the components of the computer cool and prevent overheating.

- Expansion Cards: These are additional components that can be added to the motherboard to add functionality, such as network cards, sound cards, or video capture cards.

Learn more about internal components here:

https://brainly.com/question/17475476

#SPJ5

Which Compatibility Modes setting is available for Photoshop?

Answers

Answer:

k

Explanation:

the task is to ask the user for three numbers and find the average which pseudocode gives you the comment outline for task​

Answers

Answer:

#ask the user for three numbers,

#add the numbers,

#divide by 3,

#print the average

Explanation:

In order to get the average you must add all the numbers together then divide by how many numbers there are

Explain a business scenario where management information systems plays a part.

Answers

Answer:

In this article, we'll cover what is happening with MIS in both business and ... is when you're notified or your credit card is frozen, depending on the situation.

Explanation:

Frame from one LAN can be transmitted to another LAN via the device is:_____.
A) Router.
B) Bridge.
C) Repeater.
D) Modem.
E) None of the above."

Answers

Answer:

B) Bridge.

Explanation:

LAN refers to a local area network in which the network of computer are interconnected in less than an area which is limited i.e. school, university, residence, office building, etc

It is used to share a common line of communication within a less geographic area.

In order to transmit one LAN to the another LAN, the device we called as a bridge

Therefore the correct option is B. bridge

If you see or hear of information in the media or on the internet that you suspect is classified, what should you do?

Answers

Answer:

Do not comment on the information or discuss with unauthorized recipients.

Explanation:

As a rule, it is pertinent to have the knowledge that when working with information that are sensitive, one has to be very careful to know and understand what information to share , what not to share and who the recipient should be.

Unauthorized disclosure is when classified information are transfered to unauthorized persons or recipients. Classified information are information not meant for public knowledge which if disclosed, could undermine national security. To be a recipient of classified information, there must be an execution of approved non disclosure agreement, certification of favorable eligibility must be obtained and also possession of the need to know for the classified information.

Computer ForensicsThere are many differences between public-sector and private-sector computer investigations. What do you see are the top three and why?

Answers

Answer:

For a private computer investigation into cyber crime the private sector  should complete all its courses and must be certified by the relevant authorities and must also be an expert in the computer investigations. while

Public computer investigations has more aspects that involves non-certified personnel's

The private-sector computer investigations are used mostly on all the cyber crimes and hacking and loss of business data.while public-sector computer investigations are used on crimes like rapes, accidents and murders crimes

Explanation:

Computer forensics are used to resolve crimes like cyber crime, hacking, malfunctions and data interrupts.

Before a private computer investigations which is into cyber crime investigation can continue, the private sector  should complete all its courses and must be certified by the relevant authorities and must also be an expert in the computer investigations. while

Public computer investigations has more aspects that involves non-certified personnel's and the personnel's are not necessarily supposed to complete the courses

The private-sector computer investigations are used mostly on all the cyber crimes and hacking and loss of business data.while public-sector computer investigations are used on crimes like rapes, accidents and murders crimes

Write, compile, and test a program named PersonalInfo that displays a person's name, birthdate, work phone number, and cell phone number.

Answers

Answer:

//import the necessary libraries

using System.IO;

using System;

//Begin class definition

class PersonalInfo

{

   //Begin main method

  static void Main()

   {

       //Declare all needed variables

       string name;

       string birthdate;

       string workphonenumber;

       string cellphonenumber;

       

       //Prompt user to enter name

       Console.WriteLine("Please enter your name");

       //Receive the user name and store in the name variable

       name = Console.ReadLine();

       

       //Prompt the user to enter date of birth

       Console.WriteLine("Please enter your birthday (dd/mm/yyyy)");

       //Receive the user date of birth and store in the right variable

       birthdate = Console.ReadLine();

       

       //Prompt the user to enter work phone number

       Console.WriteLine("Please enter your work phone number");

       //Receive and store the user work phone number

       workphonenumber = Console.ReadLine();

       

       //Prompt the user to enter cell phone number

       Console.WriteLine("Please enter your cell phone number");

       //Receive and store the user cell phone number

       cellphonenumber = Console.ReadLine();

       

       //Now display the result

      Console.WriteLine("========Your Info========");

       Console.WriteLine("Name: {0} ", name);

       Console.WriteLine("Date of birth: {0} ", birthdate);

       Console.WriteLine("Work Phone Number: {0} ", workphonenumber);

       Console.WriteLine("Cell Phone Number: {0} ", cellphonenumber);

   }

}

Sample Output

Please enter your name

>>Omobowale

Please enter your birthday (dd/mm/yyyy)

>>19/05/1990

Please enter your work phone number

>>08022222222

Please enter your cell phone number

>>08033333333

========Your Info========

Name: Omobowale  

Date of birth: 19/05/1990

Work Phone Number: 08022222222

Cell Phone Number: 08033333333

Explanation:

The code above has been written in C#. It contains comments explaining each line of the code. Kindly go through the comments. A sample output has also been provided.

Should you need the program file, please find it attached to this response.




analyze the given code

For I = 1 to n

For j = 1 to n

C =[i.j] = 0

For k=1 to n

C[i.j] = c [i.j] + a[i.k] * b[k.j]

End

End

end

Answers

Answer:

Following are the description to the given code:

Explanation:

In the given code, three for loop are used that uses the variable "I, J, and K", which starts from 1 and ends when it equal to the value of the "n".

Inside the "I and J" loop, another variable "C" is defined, which uses "i,j" and assign a value, that is equal to 0. In the "k" loop, it uses the "c[i.j]" to multiply the value of "a[i.k] and b[k.j]".

In other words, we can say, it calculates the multiplication of the matrix and stores its calculated value.

Answer gets the brainliest!!! Choose the venues where audiovisual materials can be found today. (Select all that apply.) schools the internet stores businesses doctors’ offices homes

Answers

Answer:

doctors offices

internet stores buisnesses

Explanation:

Audio Visual Materials (AVMs) are those things can be understood by observing visual aspect of anything's. According to The Librarian Glossary (1987) “AVMs as non-book materials like tapes, slides, films which are renewed and recent to rather then read as books.”

TLO 06 Active Directory Domain and Trusts tool is used to move servers between site in an AD Infrastructure.a. Trueb. False

Answers

Answer:

b. False

Explanation:

Active Directory Domain and Trusts tool is used for the following operations:

1. To increase the domain functional level

2. To increase forest functional level

3. To add UPN suffixes

4. To manage domain trust

5. To manage forest trust.

Hence, the correct answer is: it is FALSE that Active Directory Domain and Trusts tool is used to move servers between site in an AD Infrastructure

You are a network consultant who has been asked to attend an initial meeting with the executive management team of ElectroMyCycle, LLC. ElectroMyCycle manufactures motorcycles. Its new electric motorcycle was just picked up by a large retail chain. ElectroMyCycle is upgrading its manufacturing capacity and hiring new employees. Recently, ElectroMyCycle employees have started saying, "The Internet is slow." They are also experiencing problems sending email, accessing web-based applications, and printing. In the past, when the company was small, it didn’t have these problems. The operations manager outsourced computer services to a local business called Network Rogues, which installed new workstations and servers as needed, provided desktop support, and managed the switches, router, and firewall. ElectroMyCycle is now considering bringing computer services in-house and is wondering how its network should evolve as it increases production of its electric motorcycle. 1. What research will you do before your initial meeting with the executive management team?
1. Find out the industry and status of the industry the client is in.
2. Client’s market share in the industry
3. Financial growth history of the client
4. Client’s suppliers and customers
5. Products and services offered
6. Any recent important news on client’s business strategies or focus
7. What general problems does ElectroMyCycle seem to be experiencing?

Answers

Answer:

ElectroMyCycle, LLC.

The research I will do before my initial meeting with the executive management team will be to find out the following:

4. Client’s suppliers and customers

5. Products and services offered

Explanation:

My research will concentrate on the types of products and services  that ElectroMyCycle is offering its customers and raw materials that it purchases from the suppliers, because the network assets are being installed to enhance business transactions between ElectroMyCycle and its customers and suppliers.  And as the company is expanding with more suppliers and customers, more products and services, the network configuration will be built around these stakeholders.

Which command displays the contents of the NVRAM?

Answers

Answer:

Explanation:

NVRAM (nonvolatile random-access memory) is a small amount of memory that your Mac uses to store certain settings and access them quickly. And to show the content of the NVRAM

Show startup-config will display NVRAM content

Assign secretID with firstName, a space, and lastName. Ex: If firstName is Barry and lastName is Allen, then output is:

Answers

Answer:

I'll answer this question using Python

firstName = input("First Name: ")

lastName = input("Last Name: ")

secretID = firstName+" "+lastName

print(secretID)

Explanation:

This line prompts user for first name

firstName = input("First Name: ")

This line prompts user for last name

lastName = input("Last Name: ")

This line calculates secretID

secretID = firstName+" "+lastName

This line prints secretID

print(secretID)

Answer:

My name is Barry Allen, and I am the fastest man alive. When I was a child I saw my mother killed by something impossible. My father went to prison for the murder. Then an accident made me the impossible. To the outside world, I’m an ordinary forensic scientist, but secretly, I use my speed to fight crime and find others like me. And one day, I’ll find who killed my mother and get justice for my father. I am the Flash.

Explanation:

My name is Barry Allen, and I am the fastest man alive. When I was a child I saw my mother killed by something impossible. My father went to prison for the murder. Then an accident made me the impossible. To the outside world, I’m an ordinary forensic scientist, but secretly, I use my speed to fight crime and find others like me. And one day, I’ll find who killed my mother and get justice for my father. I am the Flash.

Create a query that will list all technician names, employee numbers, and year hired in order by year hired (Newest to Oldest).

Answers

Answer:

SELECT TECHNAME, EMPNUM, YEAR FROM EMPLOYEE ORDER BY YEAR DESC

Explanation:

The table definition is not given;

However, I'll make the following assumptions

Table Name:

Employee

Columns:

Technician name will be represented with Techname

Employee number will be represented with Empnum

Year Hired will be represented with Year

Having said that; the sql code is as follows:

SELECT TECHNAME, EMPNUM, YEAR FROM EMPLOYEE ORDER BY YEAR DESC

The newest year hired will be the largest of the years;

Take for instance:

An employee hired in 2020 is new compared to an employee hired in 2019

This implies that the year has to be sorted in descending order to maintain the from newest to oldest.

Jake is preparing his resume. He is applying for the position of iOS application developer at a large software company. He wants to include his expertise in C++ and Java. Which sub-heading should he use? A. User-centric Design Skills B. Cross-Platform Development Skills C. Modern Programming Language Skills D. Agile Development Skills

Answers

Answer:

C. Modern Programming Language Skills

Explanation:

Addition and subtraction are considered to be ____ operations performed by a computer.

Answers

Answer:

Mathematical operations

How do others see technology?

Answers

It honestly depends. A lot of people could have different technology views. Imagine this: you meet 2 people. One person loves technology and the other person fears it.

You need to transmit PII via email and you want to maintain its confidentiality. Which of the following choices is the BEST solution?a. Use hashes.b. Encrypt it before sending.c. Protect it with a digital signature.d. Use RAID.

Answers

Answer:

B. Encrypt

Explanation:

The data, in this case PI will be encrypted from end to end. which means that only the person with the encryption keys is able to read what is in the message. Also the encryption will keep data in motion encrypted during transport.

An app developer is shopping for a cloud service that will allow him to build code, store information in a database and serve his application from a single place. What type of cloud service is he looking for?A. laas(Infrastructure as a Service)B. DaaS (Directory as a Service)C. SaaS (Software as a Service)D. PaaS (Platform as a Service)

Answers

Answer:

Explanation:

We build Database Driven Web Applications tailored to your business. Consulting, UX, Dev. Database Web App Support/Maintenance Experts. Trusted for 15 years. Free Consultation.

C++

Set hasDigit to true if the 3-character passCode contains a digit.

#include
#include
#include
using namespace std;

int main() {
bool hasDigit;
string passCode;

hasDigit = false;
cin >> passCode;

/* Your solution goes here */

if (hasDigit) {
cout << "Has a digit." << endl;
}
else {
cout << "Has no digit." << endl;
}

return 0;

Answers

Answer:

Add this code the the /* Your solution goes here */  part of program:

for (int i=0; i<3; i++) { //iterates through the 3-character passCode

  if (isdigit(passCode[i])) //uses isdigit() method to check if character is a digit

           hasDigit = true;    } //sets the value of hasDigit to true when the above if condition evaluates to true

Explanation:

Here is the complete program:

#include <iostream> //to use input output functions

using namespace std; // to identify objects like cin cout

int main() { // start of main function

bool hasDigit; // declares a bool type variable  

string passCode; //declares a string type variable to store 3-character passcode

hasDigit = false; // sets the value of hasDigit as false initially

cin >> passCode; // reads the pass code from user

for (int i=0; i<3; i++) { //iterate through the 3 character pass code

   if (isdigit(passCode[i])) // checks if any character of the 3-character passcode contains a digit

     hasDigit = true;    }      //sets the value of hasDigit to true if the passcode contains a digit    

if (hasDigit) { // if pass code has a digit

cout << "Has a digit." << endl;} //displays this message when passcode has a digit

else { //if pass code does not have a digit

cout << "Has no digit." << endl;} //displays this message when passcode does not have a digit

return 0;}

I will explain the program with an example. Lets say the user enters ab1 as passcode. Then the for loop works as follows:

At first iteration:

i = 0

i<3 is true because i=0

if (isdigit(passCode[i]) this if statement has a method isdigit which is passed the i-th character of passCode to check if that character is a digit. This condition evaluates to false because passCode[0] points to the first character of pass code i.e. a which is not a digit. So the value of i is incremented to 1

At second iteration:

i = 1

i<3 is true because i=1

if (isdigit(passCode[i]) this if statement has a method isdigit which is passed the i-th character of passCode to check if that character is a digit. This condition evaluates to false because passCode[1] points to the second character of pass code i.e. b which is not a digit. So the value of i is incremented to 1

At third iteration:

i = 2

i<3 is true because i=2

if (isdigit(passCode[i]) this if statement has a method isdigit which is passed the i-th character of passCode to check if that character is a digit. This condition evaluates to true because passCode[3] points to the third character of pass code i.e. 1 which is a digit. So the hasDigit = true;  statement executes which set hasDigit to true.

Next, the loop breaks at i=3 because value of i is incremented to 1 and the condition i<3 becomes false.

Now the statement if (hasDigit) executes which checks if hasDigit holds. So the value of hasDigit is true hence the output of the program is:

Has a digit.

Consider a variation of Sequential Search that scans a list to return the number of occurrences of a given search key in the list. Does its efficiency differ from the efficiency of classic Sequential Search? Explain.

Answers

Answer:

Considering the fact that the sequential search key must go through the entire list, The search is no different from a classic sequential search.

Explanation:

Sequential search is a form of search in computer science that searches for an item by comparing sequentially items in an ordered list. In big O notation, it take the sequential search O(n) time, with n being the number of items in the list.

This is the same as searching for the occurrence of an item multiple times in the list, as it must go through the entire list items.

You work for a company that is losing sales because it takes days to manufacture products. What technology can you suggest the company use to speed production?

Answers

Answer:

i guess artificial intelligence or robots

The technology can you suggest the company use to speed production is Computer-aided manufacturing.

What is Computer-aided manufacturing?

Computer-aided manufacturing (or CAM for short) is the use of numerical control (NC) software applications with the aim of creating detailed instructions (G code) that drive computer numerical control machine tools ( CNC) for fabrication parts. Manufacturers in many different industries rely on CAM capabilities to produce high-quality parts.  

A broader definition of CAM may include the use of computer applications to define a manufacturing plan for tool design, computer aided design (CAD), model preparation, NC programming, inspection programming coordinate measuring machines (CMM), machine tool simulation or post-processing. The plan is then executed in a production environment, such as direct numerical control (DNC), tool management, CNC machining, or CMM execution.

Therefore, The technology can you suggest the company use to speed production is Computer-aided manufacturing.

Learn more about technology on:

https://brainly.com/question/28288301

#SPJ2

how do media and networks interact

Answers

Answer:

Media are connected to networks that make information easier to access and pass on.

Other Questions
How does Erasmus think Christians should act Which of the following was Archimede's not responsible for?Archimede's screwthe composition of the king's crownthe log moverthe ship shaker Abe has $253.33 in his checking account. He wants to buy items that cost $23.33, $25.09, $33.45, and $56.02. How much is Gabe planning to spend? what are two most important elements that create the illusion of depth on a flat surface To what percent should the taxes for each service berounded in order to make reasonable estimates?Restaurant Server:v%Florist:v%Cab Fare:%v%Dog Groomer: please answer i need help quick i need a spanish sentence formed with these words: correr, dibujar, bailar, nadar, trabajar how to say, "All my friends are kind" in French If angle vuw = 4x+6 and wut = 6x+10 what is the measure of wut Solve for x. Image is below. Which answer is the best correction of the run-on? Alma took the bus to 56th and Market streets thats where her mom works at an insurance agency. Alma took the bus. To 56th and Market streets, where her mom works at an insurance agency. Alma took the bus to 56th and Market streets, where her mom works at an insurance agency. Alma took the bus to 56th and Market streets. Thats where her mom works. At an insurance agency. Alma took the bus to 56th and Market streets, thats where her mom works at: an insurance agency. 30 = 5(6n + 6) multi step equation show all steps pls 5. What social forces led to the onset of the "cult of true womanhood" or the "cult of domesticity?" Describe the womans role in this philosophy. A visual artist is someone who ________________a. captures the meaning and importance of a subject through visual representation instead of words.b. seeks art in all images and has the talent to create a realistic portrayal of the images.c. captures moments in time, including their visual and emotional significance.d. is recognized for their ability to create any type of art, although most often prefers one medium over another Which expression is equivalent to 5x + 2 - x + 10? Unredeemed cash rebates related to current year sales should be estimated and the amount treated as a(n) A triangle drawn on a map has sides of lengths 9 cm, 12 cm, and 15 cm. The shortest of thecorresponding real-life distances is 122 km Find the longest of the real-life distances, 1. Which sentence best demonstrates Frederick Douglasss use of precise adjectives? A. It was to those little Baltimore boys that I felt the strongest attachment. B. I had known what it was to be kindly treated; they had known nothing of the kind. C. She did not deem it impudent or unmannerly for a slave to look her in the face. D. I was leaving, too, without the hope of ever being allowed to return. 2. My new mistress proved to be all she appeared when I first met her at the door,--a woman of the kindest heart and finest feelings. She had never had a slave under her control previously to myself, and prior to her marriage she had been dependent upon her own industry for a living. She was by trade a weaver; and by constant application to her business, she had been in a good degree preserved from the blighting and dehumanizing effects of slavery. I was utterly astonished at her goodness. What effect does Douglasss use of the adjectives "blighting and dehumanizing have on the reader? A. They create an image of the quality of the mistresss weaving. B. They emphasize the damage slavery causes to a slaveholders character. C. They describe the harsh treatment that Douglass received from his mistress. D. They illustrate the mistresss kindness toward Douglass. 3. And, to cap the climax of their base ingratitude and fiendish barbarity, my grandmother, who was now very old, having outlived my old master and all his children, having seen the beginning and end of all of them, and her present owners finding she was of but little value, her frame already racked with the pains of old age, and complete helplessness fast stealing over her once active limbs, they took her to the woods, built her a little hut, put up a little mud-chimney, and then made her welcome to the privilege of supporting herself there in perfect loneliness; thus virtually turning her out to die! What effect does Douglasss use of the words welcome, privilege, and perfect have in this paragraph? A. They are used sarcastically to emphasize the cruel treatment of his grandmother. B. They provide a contrast between the wealthy, powerful master and the enslaved person. C. They demonstrate the kind treatment Douglasss grandmother received from her master. D. They are used to describe Douglasss grandmothers dreams of one day being set free. 4. I had two sisters and one brother, that lived in the same house with me; but the early separation of us from our mother had well nigh blotted the fact of our relationship from our memories. What effect does Douglasss use of the word "blotted have on the narrative? A. It creates the image of an unbreakable bond between Douglass and his family. B. It reminds the reader of the efforts that Douglass made to learn to write. C. It implies that Douglass and his siblings nearly forgot about their early lives. D. It emphasizes that Douglass felt he could rewrite elements of his past. 5. In the same book, I met with one of Sheridan's mighty speeches on and in behalf of Catholic emancipation. These were choice documents to me. I read them over and over again with unabated interest. They gave tongue to interesting thoughts of my own soul, which had frequently flashed through my mind, and died away for want of utterance. In this paragraph, what connotation does "choice have? A. difficult to understand B. a selection or decision C. an expensive object D. of very good quality 6. Which statement best represents a negative connotation for the word child? A. Be careful when you are holding the child. B. I have one lovely child, and that is enough. C. A child is a young person who is not an adult. D. Stop being a child, and pay all of your bills. The sum of three consecutive integers is 180. What is the largest integer? What are key values of group work?