Answer:
SELECT VendorName, InvoiceNumber, InvoiceDate,
InvoiceTotal - PaymentTotal - CreditTotal AS Balance
FROM Vendors JOIN Invoices
ON Vendors.VendorID = Invoices.VendorID
WHERE InvoiceTotal - PaymentTotal - CreditTotal > 0
ORDER BY VendorName;
Answer:
C
Explanation:
What is something you can setup within your email account to prevent potentially harmful emails making their way to your inbox?.
The thing that one need to setup within their email account to prevent potentially harmful emails making their way to your inbox are:
Set Up Filters.Block unwanted Email Addresses.Report Spam Directly.Do Unsubscribe from Email Lists, etc.Which feature helps to prevent spam messages from being sent to your inbox?To avoid spam in one's email, one of the best thing to do is to Run your inbox through spam filter and virus filter.
Hence, The thing that one need to setup within their email account to prevent potentially harmful emails making their way to your inbox are:
Set Up Filters.Block unwanted Email Addresses.Report Spam Directly.Do Unsubscribe from Email Lists, etc.Learn more about Email from
https://brainly.com/question/24688558
#SPJ1
flowgorithm based on pseudocode to ask user an age it then displays message if the user's age is greater than 65 (retirement age). It also allows the user to end the program by entering a specific number, a sentinel value and looping structure
A sample pseudocode that can be used to perform the operation is:
Print "What is your age?"
If Age > 65
Print "You are of retirement age"
If input= "5"
Terminate
Else
End
What is a Pseudocode?This refers to the plain language that makes a description of the sequence of steps used to execute a program.
Hence, we can see that based on the user request, there is the sample pseudocode that would ask for input, if the age is greater than 65, a print function would be used and the program can be terminated if a specific number (5) is put.
Read more about pseudocodes here:
https://brainly.com/question/24735155
#SPJ1
Consider a student who has the choice to buy or not buy a textbook for a course. We’ll model this as a decision problem with one Boolean decision node, B, indicating whether the agent chooses to buy the book, and two Boolean chance nodes, M, indicating whether the student has mastered the material in the book, and P , indicating whether the student passes the course. Of course, there is also a utility node, U. A certain student, Sam, has an additive utility function: 0 for not buying the book and -$100 for buying it; and $2000 for passing the course and 0 for not passing. Sam’s conditional probability estimates are as follows:
P(p|b,m) = 0.9 P(m|b) = 0.9 P (p|b, ¬m) = 0.5 P (m|¬b) = 0.7 P (p|¬b, m) = 0.8 P (p|¬b, ¬m) = 0.3
You might think that P would be independent of B given M, But this course has an open- book final—so having the book helps.
a. Draw the decision network for this problem. b. Compute the expected utility of buying the book and of not buying it.
c. What should Sam do?
Explanation:
draw the decision network for this problem
Fill in the blanks to help write this professional e-mail:
✔ Hello Mr. King,
My boss asked me to get feedback from an expert on our proposed project schedule.
✔ Would you be willing to look at my document?
The file is attached.
✔ If you can get your feedback to me by the end of the week, that will help me meet my deadlines.
✔ I appreciate your help,
Sam
The Fill in the blanks of this professional e-mail is given below:
What is the email about?The Manger,
Dangete group.
To Mr. King,
Email on project presentation scheduleI want to inform you regarding the project. My boss asked me to get feedback from an expert on our proposed project schedule. I do not know if you be willing to look at my document and if you are, The file is attached.
The project has a fixed deadline and as such, If you can get your feedback to me by the end of the week, that will help me meet my deadlines. Thanks for your understanding. I appreciate your help.
Yours faithfully,
San
Learn more about email from
https://brainly.com/question/25886641
#SPJ1
solve the recurrence relation . x(n)=x(n/3)+n for n>1 ,x(1)=1
The solution to the recurrence relation is [tex]x(n) = \frac 12(3n - 1)[/tex]
How to solve the relation?The relation is given as:
x(n) = x(n/3) + n for n > 1
x(1) = 1
Calculate x(3)
x(3) = x(3/3) + 3
This gives
x(3) = x(1) + 3
x(3) = 1 + 3 = 4
Calculate x(9)
x(9) = x(9/3) + 9
This gives
x(9) = x(3) + 9
x(9) = 4 + 9 = 13
So, we have:
x(1) = 1
x(3) = 4
x(9) = 13
The above sequence forms an arithmetic sequence.
An arithmetic sequence is represented as:
x(n) = x(1) + (n - 1) * d
Substitute 9 for n
x(9) = x(1) + (9 - 1) * d
Substitute 13 for x(9) and 1 for x(1)
13 = 1 + (9 - 1) * d
This gives
12 = 8d
Divide by 8
d = 1.5
Substitute d = 1.5 in x(n) = x(1) + (n - 1) * d
x(n) = x(1) + (n - 1) * 1.5
Substitute x(1) = 1
x(n) = 1 + (n - 1) * 1.5
Expand
x(n) = 1 + 1.5n - 1.5
Evaluate the like terms
x(n) = 1.5n - 0.5
Express as fraction
x(n) = 3n/2 - 1/2
Factor out 1/2
[tex]x(n) = \frac 12(3n - 1)[/tex]
Hence, the solution to the recurrence relation is [tex]x(n) = \frac 12(3n - 1)[/tex]
Read more about recurrence relation at:
https://brainly.com/question/4082048
#SPJ1
You are building a Music Player app.
You need to implement the MusicPlayer class, which should hold the track names as Strings in an array. The array is already defined in the given code.
The player should support the following functions:
add: add the given argument track to the tracks array.
show: output all track names in the player on separate lines.
play: start playing the first track by outputting "Playing name" where name is the first track name.
You can add a new item to an array using +=, for example: tracks += track
make sure the answer or the language code is in kotlin
answer it asap
Using the computational knowledge in JAVA it is possible to write a code that uses the functions to make a Music player app.
Writting the code in JAVAimport React, { Component,useRef, setStatus, status } from 'react';
import ‘./Song.css';
import song1 from "./music/song1.mp3";
import song2 from "./music/song2.mp3"
import song3 from "./music/song3.mp3"
import song4 from "./music/song4.mp3"
export default function MusicPlayer() {
const data = [
/>
</li>
);
};
See more about JAVA at brainly.com/question/12975450
#SPJ1
Research the design basis threat (DBT) in terms of Cybersecurity for an organization of your choice. Discuss what the Cybersecurity objectives should be for that organization and what those objectives should address?
A Design Basis Threat (DBT) is known to be a characteristics of any given or potential insider and also those of external adversaries, that may try to have or gain unauthorized removal or sabotage, against a physical protection system that was set up designed and evaluated.
What are Cybersecurity objectives?Cybersecurity aims are:
To protect computer system, To protect networks, To protect software programs from such cyber attacks.Note that a lot of digital attacks are targeted at accessing, changing, or deleting sensitive information as well as others.
Learn more about IT from
https://brainly.com/question/1276995
#SPJ1
Kim agrees. You get the equipment from the truck and begin working. Kim approaches you as you are installing the modem and is a little concerned about customers being on the same network. Kim is afraid that customers will be able to "read" the information from credit cards and sales registers.
The ideal recommendation would be to offer Kim a VPN setup that will secure all network traffic in order to allay her concerns about consumers being able to "read" the information from credit cards and sales registers when connected to the same network.
What is credit cards?A credit card is a type of credit facility provided by banks that allows customers to borrow money up to a pre-approved credit limit. Customers can utilize it to do business while buying goods and services.
An electronic payment technique known as a credit card can be used for both consumer and business transactions, including cash advances and purchases. A credit card frequently serves as a substitute for cash or checks and provides an unsecured revolving line of credit.
Credit with no interest: A credit card has an interest-free grace period between the time of purchase and the time of payment.
Thus, The ideal recommendation would be to offer Kim a VPN setup.
For more information about credit cards, click here:
https://brainly.com/question/28533111
#SPJ2
What is cloud computing?
It is a way to store information on an independent server for access from any device.
It is a way for people to consolidate their social media presence to one website.
It is a way for users of social media to monitor the information they are making public.
It is a way to predict complicated weather patterns using the Internet and a series of satellites.
Cloud computing is a way to store information on an independent server for access from any device. Option A is the answer.
What is cloud computing?Cloud computing helps to stores information in a secure serve.
It makes use of internet to store information and it can be for a long time.
Therefore, Cloud computing is a way to store information on an independent server for access from any device.
Learn more on cloud computing below
https://brainly.com/question/19057393
#SPJ1
Presentations must have what to be efffective
Answer:
eye contact with the audience, thorough research, you must give your audience time to ask questions
Record the issue of 4,000 shares of $5 par value common stock for $35000 cash
The outcome are:
Cash = $35,000Common Stock $ 5 Par Value = $20,000Paid-in Capital in exc of par val CS = $15,000What is the shares about?Shares are known to be the units of measurement for any equity ownership that is found in a corporation.
Note that in the case above, since the Corporation were said to have issued 4000 shares. the cash they have is $35,000.
To get the Paid-in Capital in exc of par val CS =
Cash ($35,000) - Common Stock $ 5 Par Value ($20,000)
= $15,000
Therefore, The outcome are:
Cash = $35,000Common Stock $ 5 Par Value = $20,000Paid-in Capital in exc of par val CS = $15,000See the question below
A Corporation issued 4000 shares of $5 par value common stock for $35,000
Learn more about shares from
https://brainly.com/question/25818989
#SPJ1
ABC company have lots of computer running window 7. But they are not thinking to upgrade a higher version of window. One of the staff suggested to install CHROME OS Flex and use android app for different purposes. Please state and explain 3 kinds of threats for the above suggestions
First threat
It's malwareBecause chrome OS is not much secure as compare to windows 11 (Prime opponent)2nd threat
It's speedChrome OS is litreally very slow .On comparing to windows edition it lacks in multiple factor so you work per unit tike decreasesThird threat
You may be able to use Android apps but windows is made for ComputersIn several factors like ads,cleanness chrome OS will create problemsGive an example of SaaS (Software as a service) and explain why this can impact organisational security posture
In the case above, An example of SaaS (Software as a service) are DropBox, UserGuiding and Salesforce.
How does SaaS (Software as a service) impact organizational security posture?Software-as-a-Service (SaaS) security posture management (SSPM) is known to be a kind of a group that is made up of an automated security tools that is used for tracking security threats in regards to SaaS applications.
What is organization level security in Salesforce?The organizational level is known to be one that gives room for a person to decide if and from where a given users can be able to access the system.
Note that SaaS platforms is made up of software that is said to be available via third-party and they include BigCommerce, Salesforce and others.
Learn more about SaaS from
https://brainly.com/question/24852211
#SPJ1
Discuss the key benefits organisations like Amazon gain after adopting Cloud Computing.
Answer:
larger access to storage and the ability to send and receive information at improved speeds
One of the principles of
✔ netiquette
includes protecting
✔ privacy
by taking care of the information you send others by e-mail.
By practicing
✔ professional communication
skills in e-mails, you can create a strong professional reputation for yourself.
Sending e-mails is not always the best way to
✔ build professional relationships
. Sometimes having a
conversation
✔ in person
is more efficient and friendly.
for who ever needs it on brainly. ur welcome
The fill up for the missing words are:
netiquetteprivacy professional build professional relationships. in personCheck more about netiquette below;
What is netiquette?Netiquette is known to be a term that was said to be made-up of word gotten from net and etiquette.
Note that Netiquette often tells about the rules of conduct needed for respectful and appropriate communication that one can use on the internet.
Hence, The fill up for the missing words are:
netiquetteprivacy professional build professional relationships. in personSee full question below
One of the principles of X good communication-------------------- includes protecting
----------------- by taking care of the information you send others by e-mail.
By practicing --------------------------skills in e-mails, you can create a strong professional reputation for yourself.
Sending e-mails is not always the best way to --------------------Sometimes having a
conversation--------------------- is more efficient and friendly.
Learn more about from
https://brainly.com/question/942794
#SPJ1
3.12.1: LAB: Instrument information (derived classes)
class Instrument:
def __init__(self, name, manufacturer, year_built, cost):
self.name = name
self.manufacturer = manufacturer
self.year_built = year_built
self.cost = cost
def print_info(self):
print('Instrument Information:')
print(' Name:', self.name)
print(' Manufacturer:', self.manufacturer)
print(' Year built:', self.year_built)
print(' Cost:', self.cost)
class StringInstrument(Instrument):
# TODO: Define constructor with attributes:
# name, manufacturer, year_built, cost, num_strings, num_frets
if __name__ == "__main__":
instrument_name = input()
manufacturer_name = input()
year_built = int(input())
cost = int(input())
string_instrument_name = input()
string_manufacturer = input()
string_year_built = int(input())
string_cost = int(input())
num_strings = int(input())
num_frets = int(input())
my_instrument = Instrument(instrument_name, manufacturer_name, year_built, cost)
my_string_instrument = StringInstrument(string_instrument_name, string_manufacturer, string_year_built, string_cost, num_strings, num_frets)
my_instrument.print_info()
my_string_instrument.print_info()
print(' Number of strings:', my_string_instrument.num_strings)
print(' Number of frets:', my_string_instrument.num_frets)
** I REALLY NEED HELP**
definitiva year vuelta const
Which factor has not aided the success of some social networking sites?
Answer:
Explanation:Comunicarse en la era 2.0, es la forma más sencilla que ha tenido el proceso, sobre todo por los diversos canales que tienen las personas para hacerlo en la actualidad. Sin embargo, la comunicación digital va más allá de estar en contacto con otras personas, principalmente porque ahora, socializar se ha convertido en una función más profunda y cercana a dicha actividad.
Y es que, con las redes sociales, estar en contacto unos a otros es, sin lugar a dudas, un proceso sumamente fácil, instantáneo y entretenido, porque gracias a ellas, podemos saber qué hacen los demás en el momento en qué sucede, y palpar sus reacciones, sin necesidad de estar cerca de ellos. Sin embargo, hay cosas que se deben tomar en cuenta al instante de gestionar las mencionadas comunicaciones.
Realidad
En las redes sociales, la popularidad es algo que todos quieren, y la descubren a través de la cantidad de “likes” o comentarios que tengan sus publicaciones. Sin embargo, las personas quieren ver otras personas, reales y genuinas, y no personajes irreales y viciados de credibilidad. ¡No finjas ser quién no eres!
Variedad
A todos les gusta ver cosas distintas cada día. ¡Lo cotidiano aburre, lo sabemos! Por eso, es bueno compartir contenido diferente, pero además, evitar sobresaturar los perfiles de la misma información, o fotografías.
Seguridad
Este punto es sumamente importante para el dueño de la red, porque de él depende su privacidad. Hay que evitar compartir información muy personal, y que pueda poner en riesgo su propia estabilidad.
En fin, todos ahora quieren estar inmerso en la nueva forma de comunicación del siglo XXI, pero la mayoría omite lo anterior. Por ello, en Florida Global University (FGU) le enseñamos cómo hacerlo, a través de nuestra Licenciatura en Periodismo Digital, especializada en la Gestión de Comunicaciones Digitales, donde aprenderá a realizar un manejo exitoso, ¡Y a ser periodista digital, claro está!
Type the correct answer in the box. Spell all words correctly.
Which professional American organization for designers has set up many standards and guidelines that its members have to follow?
The professional American organization for designers has set up many standards and guidelines that its members have to follow is known as ANSI.
What mean ANSI?The American National Standards Institute (ANSI) is known to be a kind of private, non-profit organization that gives or coordinates the U.S. voluntary standards and the conformity in terms of assessment system.
Hence, The professional American organization for designers has set up many standards and guidelines that its members have to follow is known as ANSI.
Learn more about American organization from
https://brainly.com/question/19334871
#SPJ1
Answer: Institute of Graphic Arts
Explanation:
The American Institute of Graphic Arts (AIGA) is a professional membership organization for designers.
AIGA has set up many standards and guidelines that its members have to follow.
These standards may be ethical, professional, or even legal.
(Plato)
what is the factor of 200
The Factors of 200 are: 1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100 and 200.
What are factors of a number?In math, the factors of any number or algebraic expression is known to be that number that can be able to divides another number or expression in an even way.
Therefore, The Factors of 200 are: 1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100 and 200 because they can divide 200 evenly without reminder.
Learn more about Number factor from
https://brainly.com/question/2058395
#SPJ1
Explain the unique reason why assember language is perfered to high level language
The unique reason why assembler language is preferred to high level language is that It is said to be memory efficient and it is one that requires less memory.
Why is assembly language better than other kinds of high level?
It implies means that the programs that one uses to write via the use of high-level languages can be run easily on any processor that is known to be independent of its type.
Note that it is one that has a lot of better accuracy and an assembly language is one that carries out a lot of better functions than any high-level language, in all.
Note also that the advantages of assembly language over high-level language is in terms of its Performance and accuracy as it is better than high-level language.
Hence, The unique reason why assembler language is preferred to high level language is that It is said to be memory efficient and it is one that requires less memory.
Learn more about assembler language from
https://brainly.com/question/13171889
#SPJ1
I need help with my work
Answer:
totally
awesome
Explanation:
You can evaluate the expressions in the statements by hand:
if (a*b!=c) evaluates to
if (2*3 != 11)
if (6 != 11)
if (true)
so the next line is executed (it prints 'totally')
Likewise, the other if statement also evaluates to true.
Array Basics pls help
Answer:
import java.util.Random;
class Main {
static int[] createRandomArray(int nrElements) {
Random rd = new Random();
int[] arr = new int[nrElements];
for (int i = 0; i < arr.length; i++) {
arr[i] = rd.nextInt(1000);
}
return arr;
}
static void printArray(int[] arr) {
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
public static void main(String[] args) {
int[] arr = createRandomArray(5);
printArray(arr);
}
}
Explanation:
I've separated the array creation and print loop into separate class methods. They are marked as static, so you don't have to instantiate an object of this class type.
the size of a newly created folder on the computer is
Answer:
2,345,696 bytes
Explanation:
in order to figure out how many bytes a newly created folder is right click the folder and go into properties
hybird computers have the speed of analog computer and accuracy of digital computer true or false
Hybrid computers have the speed of analog computer and accuracy of digital computer is a true statement.
What are the computers about?Hybrid Computer are known for the features they have such as the fact that they have both analogue and digital computer and as such it can be as fast like analogue computer.
Hence, Hybrid computers have the speed of analog computer and accuracy of digital computer is a true statement.
Learn more about hybrid computers from
https://brainly.com/question/27934317
#SPJ1
How serious are the risks to your computer security?
Why is it important to protect a Wi-Fi network? What should you do to protect your Wi-Fi network?
Explanation:
classify the types of digital computer with short description
Type the program's output: weight_oz = 8.25 print('The steak weighs {:.2f} oz'.format(weight_oz))
The steak weighs 8.25 oz
Program's outputweight_oz = 8.25
#The above assigned a value of 8.25 to the variable, weight_oz
print('The steak weighs {:.2f} oz'.format(weight_oz))
#This displays the strings 'The steak weighs' and the value of the variable, weight_oz, but in a formatted form. The limit is the first 2 digits after the decimal point.
More on programming outputs can be found here: https://brainly.com/question/18079696
#SPJ1
Users who are connecting to an NLB cluster have been complaining that after using the site for a few minutes they are prompted to log in using their username. What should you do to fix the problem and retain scalability and why?
The right thing to do is that you need to Set the cluster affinity to Single.
What is single affinity?Single affinity is known to be a term that connote the act of load balancing that uses the source IP address that pertains to the incoming connection.
Note that It is said to automatically redirects all requests and as such, The right thing to do in the case about is that you need to Set the cluster affinity to Single.
Learn more about scalability from
https://brainly.com/question/14301721
#SPJ1
Should a UDP packet header contain both Sour Port # and Destination Port #?
Yes, a UDP packet header should contain both Sour Port # and Destination Port #.
Which fields are included in a UDP header?The fields that one can see in a UDP header are:
Source port :This is known to be the port of the device that is known to be sending the data. This field is one that a person can set to zero only if the destination computer do not require one to reply to the sender.
Destination port :This is known to be the port of the device that is said to be getting or receiving the data.
Hence, to the answer above, my response is Yes, a UDP packet header should contain both Sour Port # and Destination Port #.
Learn more about UDP packet from
https://brainly.com/question/10748175
#SPJ1
If following the 180-degree rule when filming, once an imaginary 180-degree line (the axis of action) has been established, which of the following is TRUE:
A. The axis of action must never shift over the course of the scene
B. The camera may be moved to either side of the line, as long as the main subject remains on the left side of the screen
C. The camera will be placed on one side (this side) of the line only
D. The camera is then free to move up or down 180 degrees on either side of the line
If following the 180-degree rule when filming, option c: The camera will be placed on one side (this side) of the line only.
What is the 180 rule in cinematography?The 180-degree rule in cinematography is one that connote that a camera need to stay on one side of any form of imaginary line that exist between characters to keep visual consistency.
Hence, If following the 180-degree rule when filming, option c: The camera will be placed on one side (this side) of the line only.
Learn more about filming from
https://brainly.com/question/26276466
#SPJ1
I need help with my solution
Answer: B. a = 14 and b = 3
Explanation:
Let's work through the expressions one-by-one:
The first 2 lines create 2 varaibles, a and b, with values of 2 and 7, respectively.
The next line assigns a to the product of a and b.
a * b = 2 * 7 = 14, so the new value of a is 14.
The last line assigns the remainder of b divided by the difference of a and 10.
a - 10 is 14 - 10 which is 4.
The value of b is 7 due to the second expression. 7 % 4 is 3 as 4 goes into 7 once with 3 left over. This value of three is assigned to b.
After all the expressions, the values of the variables are as follows: a = 14 and b = 3.