Answer:
rows and columns, or matrix
Explanation:
Two-dimensional 2D arrays are being indexed with the help of two subscripts. The first one is for the row and the second one if for the column. And each of the elements of the 2D array must be of the one kind like they all can be an object type or they all can be of primitive type.
Like:
int A[3][3];
The above is the 2-dimensional array in C++, and elements are of type int, which is a primitive data type.
What the phrase should say in Kim's SQL Query is; WHERE Customer = Sales Rep
<h3>What is SQL Query?</h3>
Structured Query Language (SQL) is defined as a standardized programming language that is used to manage relational databases and perform various operations on the data in them.
Now in SQL Query, when one SQL query is embedded in another SQL query to simulate a join, the second SQL query is embedded in the "WHERE" of the first query.
Since the query will pull a list of customers with outstanding orders and the sales rep for each order. Then, the where phrase will be;
WHERE Customer = Sales Rep
Read more about SQL Query at; brainly.com/question/10097523
Answer:
Virtual Private Network.
Explanation:
A VPN helps protect your data when accessing the internet. It usually scrambles your IP location and encrypts your data.
Honestly , brainly may seem like a place to get answers but it’s not , people come here to troll, like me
Answer:
wertweabcd
Explanation:
The LPAD() function left-pads a string with another string, to a certain length.
LPAD(string, length, lpad_string)
Parameter Description
string: Required. The original string. If the length of the original string is larger than the length parameter, this function removes the overfloating characters from string
length: Required. The length of the string after it has been left-padded
lpad_string: Required. The string to left-pad to string.
In example;
SELECT LPAD("SQL Brainly", 20, "ABC");
Output : ABCABCABSQL Brainly