Answer:
Static
Explanation:
I just took the test man!
is a virtue by which you need to secure information by limiting computer access to authorized personnel only.
Answer:
ummmmmmmmm
Explanation:
Confidentiality is a virtue which states that you need to secure information by limiting computer access to authorized personnel only.
Keeping confidential data is crucial especially if your business deals with very important information about a person and his security.
Trust is built between a company and a client. The client trusts the company to keep his information secure and confidential from outside parties. Once the confidentiality of the company is compromised, the business will suffer because clients will no longer trust the company to keep their data secure.
! (( i > ( f + 1)) es verdadero o falso segun la logica de programación.
Answer:
yeajadaj
Explanation:
please answer ASAP!!!!!!
Answer:
the first constructor invocation will work.
pet temp("mouse", 5.99);
Explanation:
This will create a pet object on the stack, using the constructor.
If you want to create an object on the heap, you would use the new operator:
pet* pTemp = new pet("mouse", 5.99);
Open-ended games give players the most freedom to explore other worlds.
A.
True
B.
False
You can use the ____ method to search a string to determine whether it contains a specific sequence of characters.
Answer:
in
Explanation:
Not an explanation, but here's an example:
if "mouth" in "mouthwatering":
print("It is.")
else:
pass
Another example:
if "water" in "mouthwatering":
print("Yes.")
else:
pass
Tynker has a particular layout, with the blocks on the left, editor in the middle, and output on the right. Which word best describes this screen layout?
block-based
interface
editor
player
Interface best describes the layout of the screen. This is done by designers
in which they help to design the appearance and style of various software
and devices.
These characteristics help to ensure the users find them friendly and easy to
navigate through when performing various operations .
In this scenario, we were told that the layout has blocks on the left, editor in
the middle, and output on the right which are designs for easy navigation on
Tynker.
Read more about Interface here https://brainly.com/question/5080206
Answer:
interface
Explanation:
Can someone help me please and please answer all the questions and explain :D
Answer:
1. is A. 2. is C. 3. is A.
Explanation:
Filters remove all data that does not match the requirements.
When the logging and managing information flow between management hosts and the managed devices travels on a dedicated management network, this is considered what?
What must be considered is the number of IPs that are allowed to access the management network.
We can arrive at this answer because:
During the management of information flow, it is necessary to guarantee the security of the system, preventing intruders from attacking.This can be done by restricting authorized IPs to access the management interface.This type of security measure is often neglected in systems that use a dedicated management network, as this type of network can only be accessed by a single device in the same VLAN.However, the IPs restriction must be considered even in this system, as there are software that can provoke invasions that cause the leak of shared information.
You can find more information about software here:
https://brainly.com/question/24032221
Physical components of a computer system such as a keyboard, mouse, or modem.
Question 25 options:
Software
Network
Browser
Hardware
Answer:
D
Explanation:
D: Hardware. These are the things like mouse or Modem that you can touch physically.
Software is what the computer runs to make itself useful.
Network is the connection (either virtual or physical) that connects computers together.
Browser is a software program used to navigate the internet
1. Explain 'Computer Ethics" ?
plz following me
Answer:
Computer ethics is a part of practical philosophy concerned with how computing professionals should make decisions regarding professional and social conduct. or the computer experts making the decision regarding the social and professional behaviour while working while with the computer tools and technology is called computer ethics.
Explanation:
Which of the following statements best explains how multitasking works in the human mind?
Answer: He's right
Explanation: I got the answer too
Can someone help me with this please
Answer:
D
Explanation:
Filters and the Sort feature can be applied in any order.
What type of information is appropriate for headers and footers? Check all that apply.
Answer:
C, E,F,G are correct
Explanation:
Answer:
C,E,F,G are correct.
Explanation:
The voltage/potential difference in a circuit is 12 volts, calculate the current that is flowing through the circuit if the resistance is 48 Ohms.
Current (I) = 0.25 ampere (A)
Power (P) = 3 watt (W)
Current (I) = 0.25 ampere (A) Power (P) = 3 watt (W) Steps: I = V R = 12 volt 48 ohm = 0.25 ampere (A) P = V2 R = (12 volt)2 48 ohm = 3 watt (W)
What is an electrical conductor? Name five electrical conductors
Answer:
Explanation:
silver.
copper.
gold.
Steel
Seawater.
Explanation:
Electrical conductors are those which allows the electrons to flow easily. Examples of five conductors are :-
Gold Silver CopperAluminium Iron.how to check amazon gift card balance without redeeming
Answer:
Follow these steps to check your Amazon gift card balance without redeeming.
1. Locate the gift card's claim code. The claim code is on the back of the card (if it's a physical gift card) or on your email or paper receipt (if it's an electronic gift card). The claim code will be 14 to 15 digits long. If it's a physical gift card, you may need to scratch off the protective coating to find the claim code.
2. Sign in to your Amazon account. You can sign in through the website or the mobile app.
3. Search for the word 'help'. Click the search bar, type 'help', and press Enter or Return to search.
4. Click 'Help and customer service'. This option is located at the top of the screen.
5. Talk to a customer support agent.
Mobile app:
Scroll down and click 'Need More Help?'.Click 'Contact Us'.Click 'Something else'.Click 'I need more help'.Computer:
Click 'Something else'.Click 'I need more help'.
6. Type 'find the balance of a gift card without redeeming' into the message box. Send the message.
7. Request the balance of your Amazon gift card. Provide the claim code and request the balance. The support agent will check the gift card balance associated with the claim code and provide it to you without redeeming the card.
Consider the following method, which is intended to return the product of 3 and the nonnegative difference between two int parameters.
public int threeTimesDiff(int num1, int num2) {
return 3 * (num1 - num2);
}
Which precondition is required so that the method works as intended for all values of the parameters that satisfy the precondition?
A. num1 > 0, num2 > 0
B. num1 >= 0, num2 >= 0
C. num1 >= num2
D. num2 >= num1
Methods are code segments that are executed when called or evoked.
The required precondition for the method to work as intended is (c) num1 >= num2
The return value of the method is given as:
3 * (num1 - num2).
The return value is said to be non-negative.
So, the following condition must be true
[tex]3 \times (num1 - num2) \ge 0[/tex]
Divide both sides of the equation by 3
[tex](num1 - num2) \ge 0[/tex]
Remove the bracket
[tex]num1 - num2 \ge 0[/tex]
Add num2 to both sides of the equation
[tex]num1 \ge num2[/tex]
Hence, the required precondition for the method to work as intended is (c) num1 >= num2
Read more about preconditions at:
https://brainly.com/question/13795586
Ethan is afraid that his poor grades will get him kicked out of his university at the end of the semester. He decided to remotely access the dean's computer and change his grades in the school system. If caught, Ethan will have to confess to committing what?
A.
virtual education
B.
grade hacking
C.
a computer crime
D.
educational fraud
Answer:
Computer Crime
Explanation:
You're evading someones privacy and gaining access to their computer or device without consent. Therefore, it is a computer crime.
Answer:
Educational fraud
Explanation:
Ethan changed his grades in the school system claiming to have better grades then he really does.
What is my mistake in this case?
Answer:
I think it suppose to be #print out house
Answer:
i guess take the hint, bro.
Explanation:
is there actually a difference between left and right twix
WHEN IS THE DESIGN PROCESS FINISHED IN ENGINEERING?
Answer:
I think answers is it never ends
What is the missing line of code?
22
>>> books = {294: 'War and Peace', 931:'Heidi', 731:'Flicka'}
>>>
dict_keys([294, 931, 731])
O books allo
O books.values()
O books
O books.keys()
Answer:
books.keys()
Explanation:
I ran the code and the awncers though python and books.keys() is the one that came up with the awncer
books.keys() is the missing line of code with respect to the books with the help of Python language. Thus, option D is correct.
What is a code?In a certain programming language, a collection of commands or a collection of rules are referred to as computer code. It's also the name given to the source code just after the translator has prepared it for computer execution.
Code is a developing company that focuses on producing aesthetically pleasing, code-correct internet, application forms, and phone application.
The correct code will be according to the Python language will be in addition to books.keys():
books.keys()
books = {294: 'War and Peace', 931:'Heidi', 731:'Flicka'}
books.keys()
dict_keys([294, 931, 731])
Therefore, option D (books.keys()) is the correct option.
Learn more about code, here:
https://brainly.com/question/17204194
#SPJ2
A healthcare crisis where millions of patient medication records were tampered with is an example of what type of breach?
A.
integrity breachc.
B.
codependency breach
C.
authentication breach
D.
AIC Triad breach
A healthcare crisis where millions of patient medication records were tampered with is an example of; A: Integrity Breach.
To answer this question, let us access each of the options;
A) Integrity breach; This is a breach that occurs when where there is an unauthorised or accidental alteration of the personal data of individuals or a group.
B) Codependency breach; This is not really a breach in this context as it happens when there is an imbalanced relationship between two or more people.
C) Authentication breach; This is a type of breach that is more common with a breach of passwords and login details.
D) AIC Triad breach; AIC is Availability, Integrity and confidentiality. So it combines Availabilty breach, integrity breach and confidentiality breach.
In this question, the patient medication records were tampered with which means that they were altered and from our definitions above, this is an example of integrity breach.
Read more about security breach at; https://brainly.com/question/15957125
what is syllabus of diploma in computer after class 10
Answer:
[tex] \: [/tex]
List Of Best Computer Courses After 10th :
Certificate Program In MS OfficeBasic Computer CourseWeb Designing CourseDigital Marketing CourseData Entry CourseGraphic Designing CourseWeb Development CourseAnimation And VFX CourseComputer Science Diploma/EngineeringDiploma In Financial AccountingThis type of RAID implementation uses its own Central Processing Unit (CPU) for calculations on an intelligent controller card by:
RAID implementation uses its CPU for calculations on an intelligent controller card by a hardware implementation.
Basically, a hardware implementation refers to a job is done using a physical device or electronic circuit rather than been done automatically by the computer program.
Hence, through a hardware implementation, the RAID implementation is able to use its CPU for calculations on an intelligent controller card
Read more about hardware implementation
brainly.com/question/25803633
A student is writing a research paper on astronomy. His teacher has asked that she include a visual aid to explain the scientific concepts in her paper. She has chosen to write about the moon, and she wants to use a visual aid to show what the surface of the moon looks like.
Which visual aid would best support her topic?
Help to draw in turtle. Python
Answer:
a basic piece of code:
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
Explanation:
What its doing is The TurtleScreen class defines graphics windows as a playground for the drawing turtles. Its constructor needs a tkinter.Canvas or a ScrolledCanvas as argument. It should be used when turtle is used as part of some application.
The function Screen() returns a singleton object of a TurtleScreen subclass. This function should be used when turtle is used as a standalone tool for doing graphics. As a singleton object, inheriting from its class is not possible.
All methods of TurtleScreen/Screen also exist as functions, i.e. as part of the procedure-oriented interface.
RawTurtle (alias: RawPen) defines Turtle objects which draw on a TurtleScreen. Its constructor needs a Canvas, ScrolledCanvas or TurtleScreen as argument, so the RawTurtle objects know where to draw.
Derived from RawTurtle is the subclass Turtle (alias: Pen), which draws on “the” Screen instance which is automatically created, if not already present.
All methods of RawTurtle/Turtle also exist as functions, i.e. part of the procedure-oriented interface.
A means of giving credit to a source when their information is used.
Question 15 options:
Citation
Wi-Fi
Asynchronous Communication
Malware
Shadow and highlight create depth (3D).
TRUE OR FALSE
Answer:
true because then it would be like not popping out
how many pages is 1500 words double spaced 12pt font?
Answer:
6 pages
Explanation: