Answer:
auto key word
Explanation:
the auto keyword in c++11 can be regarded as one of the features of
“Type Inference” . It should be noted that in In C ++11, the auto key word tells the compiler to determine the variable's data type from the initialization value.
Type the correct answer in the box. Spell all words correctly.
A freelance graphic designer has received an assignment to design a company logo. What image format is most suitable to display this logo on the company website?
The _________ format is most suitable in order to display the logo on the company website.
Answer:
The most suitable format for logo is PNG
Explanation:
PNG stands for portable network graphics. It is an improved version of gif. The best thing in png is that it is lossless compression and the background is not visible. Both 24 and 32 bit Colour can be used in png. PNG became ISO standard in sixteen years ago in 2004.
1. Software that is designed to intentionally cause harm to a device, server, or network is A. outware B.loggerware C.
attackware D. malware Answer:
2. Some examples of malware include: A. robots, viruses, and worms B. trojans, worms, and bots C. computerware,
worms, and robots D.worms, system kits, and loggerware Answer:
3. Viruses and worms can affect a system by A. deleting hard drives B. slowing down the system C. improving system
functions D. producing fake applications Answer:
4. One tool that hackers use to get sensitive information from victims is/are A. loggerware B. keyloggers C.robots D.
phishing Answer:
5. One key feature of malware is that it A. can only work individually B. can only work on certain operating systems C.
can work jointly with other malware types D. can always be stopped by anti-malware software Answer:
6. One vulnerability that makes computers susceptible to malware is A. using anti-malware software B. using password
protection C. using old versions of software D. using encryption on sensitive files Answer:
7. Malware could A. cause a system to display annoying pop-up messages B. be utilized for identity theft by gathering
personal information C. give an attacker full control over a system D. all of the above Answer: -
8. Malware is a combination of which two words? A malevolent and software B. malignant and software C.
maladapted and software D. malicious and software Answer:
9. The most common way that malware is delivered to a system is through the use of A USB sticks B. damaged
hardware C. emails/attachments D.updated software Answer:
10. Mobile malware is A. malware that moves from one device to another B. malware that moves to different areas in
one system C. malware that deactivates after a period of time D. malware that infects smartphones and tablets
Answer:
Answer:
Explanation:
1. D Malware causes harm, the other answers seem irrevelant.
2. B Because they all can cause harm to a server, device or network. (trojan for device, worm for device and bots for networks)
3. B I haven't heard of viruses deleting hard drives, but lots of viruses do slow
down your computer.
4. D Phishing is a way to obtain data so yes.
5. ? This one is wierd... We can rule out D because that's not always true but you have to decide this on your own.
6. Obviously C? Using old versions can make your computer more
susceptible to malware.
7. D Because all of those can be uses.
8. D Malicous software
9. This is a hard one... Not D, Most likely not B and C is probably more
common.
10. D It's MOBILE malware
Why would students most likely need to collect data? Check all that apply.
to answer a question
to purchase an item online
to support a position
to understand a problem
to sort documents
Right options are
A. to answer a question
C. to support a position
D. to understand a problem
Have an amazing day! <3
Students most likely need to collect data
A. to answer a question
C. to support a position
D. to understand a problem
What is data?Data refers to a raw piece of record providing facts about any concept which is processed in order to develop information. The information is referred to as a systematic representation of data.
Data that cannot be quantified numerically is referred to as qualitative data, and no quantity can be derived from them. Information that may be measured in quantity is referred to as quantitative data.
This data is used for various purpose which includes in order to provide any solution or any answer to any question based on facts and evidence.This data can be used to understand the problem and its root cause so that appropriate solution can be provided.
Learn more about data, here:
https://brainly.com/question/1417786
#SPJ6
Object-Oriented Programming (Using Java Language)
===============================================
Answer:
import java.util.Scanner;
class Main {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
System.out.print("Enter a decimal value (0 to 15): ");
int num = scan.nextInt();
scan.close();
if (num < 0 || num >15) {
System.out.printf("%d is an invalid input\n", num);
} else {
System.out.printf("The hex value is %X\n", num);
}
}
}
Explanation:
Hopefully this example will get you going for the other assignments.
Can someone help me with this ?
Answer:
I assume you want to set the opacity (0-100) depending on the mouse's coordinate on the screen. The variables indicating the mouse's coordinates are mouseX and mouseY.
To achieve this, you will need to divide the mouseX/mouseY (whichever you choose) by 4 to what's called "normalize" it. If your mouse was at 320 for example... Dividing it by four would give you 80, and this works because the bounds that the opacity can be set to is 0-100.
normalized = mouseX / 4
Circle(mouseX, mouseY, 50, fill='navy', opacity=normalized)
...or if you want to do it in one line...
Circle(mouseX, mouseY, 50, fill='navy', opacity=mouseX / 4)
Write a program that gives simple math quizzes. The program should display two random numbers that are to be added, such as:
Project 5-11 output
The program should allow the student to enter the answer. If the answer is correct, a message of congratulations should be displayed. If the answer is incorrect, a message showing the correct answer should be displayed.
Answer:
6
Explanation:
the answer would have to be 6