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
which type of writing is most commonly used in the field of information technology
Answer:
Technical writing
.........
What Pre-Built PC should I get? I don't have a lot of money so I'm looking for cheap options.
Answer:
for a gaming pc i recommend better graphic cards and for streaming gpu you can find some good options online not exactly sure what model.
Not every design choice in your game interface requires having a thought process behind it.
True
False
Answer:
true
Explanation:
cause every design have it's own thought process and we also have our choice
Answer:
true
i agree with the person that answerd
HELP ME PLEASE
explain 2 threats to data that can arise when a pc is not connected to the Internet
Explanation:
Threats
Computer Security Threats are possible dangers that can affect the smooth functioning of your PC. These may be a small piece of adware or a harmful Trojan malware. In the present age, computer security threats are constantly increasing as the world is going digital. computer security threats
Types of Computer Security Threats
There are several types of computer security threats such as Trojans, Virus, Adware, Malware, Rootkit, hackers and much more. Check some of the most harmful types of computer Security Threats.
COMPUTER VIRUS
A Computer Virus is a malicious program, which replicates itself and infects the files and programs of your PC and can make them non-functional.
COMPUTER WORMS
A self-replicating computer program that spreads malicious codes, computer worms make use of the network to send copies of the original codes to other PCS. It can also go to the extent of sending transferring documents utilizing the email of the user.
SCAREWARE
Scareware is a malware that tricks victims to buy software by displaying fake virus alerts. A scareware infected PC may get pop-ups of fake malware threats and to get rid of those, users are prompted to purchase a fake anti-malware software.
KEYLOGGER
Also known as a keystroke logger, Keyloggers can track the real-time activity of a user on his computer. Keylogger runs in the background and records all keystrokes made by a user and passes the information to the hacker with the motive to steal password and banking details.
ROOTKIT
A rootkit is considered extremely dangerous as they appear to be legitimate files and deceives the computer user. Rootkit masks viruses and worms and makes them appear as necessary files. These are very difficult to remove and only an antivirus with the anti-rootkit feature can remove a rootkit.
Tips for Best Computer Security
For best computer security, you must follow certain guidelines, which are also called computer best practices. 1. Use the best antivirus software, which not only provides protection to your PC but also internet protection and guards against cyber threats. 2. Do not download untrusted email attachments and these may carry harmful malware. 3. Never download software from unreliable sites as they may come with a virus that may infect your system as soon as you install the software.
Describe the function of memory and
processing unit of Computer system
Answer:
Computer memory is a temporary storage area. It holds the data and instructions that the Central Processing Unit (CPU) needs. ... This allows the CPU direct access to the computer program. Memory is needed in all computers.
Explanation:
hope it help
Type the correct answer in the box. Spell all words correctly.
Which method of cooking does the following passage describe?
makes use of a flat-topped plece of equipment to quickly cook food products.
Answer:
I believe that this is frying. When you cook food on a flat-topped piece of equipment you are usually using a frying pan.
Explanation:
you receive a text from your boss, who’s on vacation. it says she can’t connect to the network and urgently needs you to send a file using an enclosed link. what type of social engineering attack is being used here?
The type of social engineering attack that is being used here is phishing. It exploits human errors.
Phishing is a type of social engineering attack that requires human errors to obtain credentials and/or spread malicious malware.
This type of attack (phishing) represents the most common type of social engineering attack.
Phishing generally involves email attachment files or links that are infected with malicious malware.
Learn more about phishing here:
https://brainly.com/question/23021587
Sampson runs his own online business, and much of his success depends on the reliability and accuracy of various online data. How does integrity help to ensure that Sampson can trust the online data he is using?
A.
Integrity takes steps to ensure Sampson's information cannot be altered or deleted by unauthorized people.
B.
Integrity refers to a process that makes it impossible for anyone but Sampson to see the data that he is using.
C.
Integrity blocks all hackers from interfering with Sampson's data and what he does with it.
D.
Integrity allows Sampson to access and move data on an unsecured network.
Answer: because integrity takes steps to ensure Sampson's information cannot be altered or deleted by unauthorized people and that it stays intact, no matter where it goes
Explanation:
help me pleaseeeeeeee
Answer:
I think you have to ask to your parents
Select all that apply
photoshop question
Form is gives the object this look?
a. Flat
b. Textured
c. Dark
D. 3d
a data visualization tool that updates in real time and gives multiple outputs is called
Answer:
A data dashboard
Explanation:
A data visualization tool that updates in real time and gives multiple outputs is called data dashboard.
Why is data dashboard required?A data dashboard is a tool that many businesses use to monitor, examine, and present data—typically to acquire understanding of the general health of an organisation, division, or particular procedure.
Businesses utilise an interactive analytical tool called a data dashboard to analyse and monitor the effectiveness of their plans using high-quality KPIs.
These tools give businesses access to real-time data so they can extract useful insights and guarantee ongoing growth.
Making it simpler for data analysts, decision-makers, and everyday users to understand their data, acquire deeper insights, and make better data-driven decisions is the main goal of a data analytics dashboard.
Data dashboard is a term used to describe a real-time updating, multi-output data display tool.
For more details regarding a data dashboard, visit:
https://brainly.com/question/29854747
#SPJ6
How many letters is in whatyoudoingareyougood
Answer:
43847823773 letters
Explanation:
haha to easy
Answer:
22 letters, 6 words.
:) hope this helps! <3
how does microsoft label mac addresses in the windows utilities that show you the mac address?
Based on computer analysis, Microsoft labels mac addresses in the windows utilities "by showing the MAC address in the 'Physical Address' field."
What is MAC Address?MAC Address is the acronym for media access control address. A distinct identifier is allocated to a network interface controller (NIC).
MAC address is used as a network address in communications within a network component.
There are two ways to check for a MAC address in the Windows Utilities which is either through Command Prompt or Network Setting.
Hence, in this case, it is concluded that the correct answer is "by showing the MAC address in the 'Physical Address' field."
Learn more about MAC Address here: https://brainly.com/question/24812654
Which of the following described a global network connecting billions of computers and other
devices?
A) WiFi
B
ISP
C
World Wide Web
D
Internet
Unit 6: Lesson 2 - Coding Activity 1 AP Computer science
The complete program is to define a boolean method that returns true if all elements of an array are negative, or return false, if otherwise
The method in java, where comments are used to explain each line is as follows:
//This defines the method
public static boolean chkNegative (double[] myArr) {
//This initializes a boolean variable
boolean isNeg = true;
//This iterates through the array
for (int i = 0; i < myArr.length; i++) {
//If the array element is 0 or positive
if (myArr[i] >= 0) {
//Then the boolean variable is set to false
isNeg = false;
//And the loop is exited
break;
}
}
//This returns true or false
return isNeg;
}
Read more about boolean methods at:
https://brainly.com/question/18318709
which function would you use to change the appearance of data in a cell from decimal to percentage
Answer: use the numbers behind the decimal for the percentage
Explanation:
Answer:format
Explanation: I took the test
How to recover permanently deleted photos from gallery?
Answer:
it's technically impossible to recover permanently deleted photos
but if you have a copy of the photo or maybe have backup that would help.
I'm sorry if my answer isn't much help
Draw truth table for the following logic circuit:
(Please I really need help with this)
Keep Scrolling! :D
[tex] \rule{999pt}{66646pt}[/tex]
Which string method returns true if the character is a numeric character?
letter = input("Enter a letter: ")
A. isDigit(letter)
B. isdigit(letter)
C. letter.isDigit()
D. letter.isdigit()
Answer:
It is D. letter.isdigit()
Explanation:
reason being is that there is only very few scenarions that require a capital letter in them and most of those that have scenarions are to input a operation into the program.
In the given options, the method that will return true when an input charater is a numeric is optionC. letter.isDigit()
Methods In ProgrammingBasically what this function does it to check whether the input variable letter is a numeric character, if true then the function returns true.
Hence, the functions input parameter is a string and it returns and boolean
it should be noted that there is a sligth difference between and method and a function in programming.
Learn more about programming here:
https://brainly.com/question/1538272
Why would you add learning inside the app? A. To add contextual help for each page in the app B. To contact Salesforce support C. To link to your company’s onboarding resources D. To add resources about working in Salesforce Classic E. A and C
There are different reasons why there was the addition of learning to the app. The reasons why you would you add learning inside the app is that:
To add contextual help for each page in the app.To link to your company’s onboarding resources.Salesforce Learning Paths is known to result in bringing out the power of learning straight into the app.
It can help companies to update their teams as they function or work in Salesforce.
Through the use of the Learning Paths, firms whether big or small and other industry can update or equip their employees with timely, personalized learning in the flow of work.
This can therefore help employees of all experience levels by boasting their skills and in turn increase their productivity.
Learn more about Salesforce from
https://brainly.com/question/7452075
Can someone plss help me with this!!
Answer:
Text
Explanation:
There is no text in between the <h1> and </h1> tags.
I hope thats correct.
what is the difference between windows 10 and windows 11
Answer: Windows 11 brings a brand-new, more Mac-like interface to the OS. It features a clean design with rounded corners and pastel shades. The iconic Start menu also moves to the centre of the screen along with the Taskbar. But you can move those back to the left, as they are in Windows 10, if you prefer.
Explanation:
Windows 11 will be a better operating system than Windows 10 when it comes to gaming. ... The new DirectStorage will also allow those with a high-performance NVMe SSD to see even faster loading times, as games will be able to load assets to the graphics card without 'bogging down' the CPU.
I WILL GIVE BRAINLIEST TO WHOEVER HELPS ME
I keep pressing the "fn" key or "function" key and the disable / enable touchpad button
fn + f9 = enable/disable touchpad
but all it's doing is disabling it, everytime I press to enable it just keeps saying "touchpad has been disabled"
Assuming you're using Windows 10/11, navigate to settings --> Bluetooth and settings --> Touchpad (Or just search Touchpad on your search bar) --> Toggle the touchpad on.
Hope this helps! :)
it is defined as the interloping of yarn with the use of a hook to make a design . A smocking B knitting C crocheting D embroidery
Answer:
letter C
Explanation:
because the crocheting is defined as the interloping yarn and use to make and made a design to excellent.
goal of any user-friendly game should be to create a good what for the player?
A. user experience (UX)
B. user-interface (UI)
C. user intuition (UIT)
D. user skill (US)
Answer:
A
Explanation:
The goal of user friendly game is to provide UX.
For example a user friendly game will have much different interface than professional CAD program.
Answer:
user friendly.
Explanation:
in ____ orientation, a page is taller than it is wide.
Answer:
portrait
Explanation:
Alex needs to create a function capable of counting item reference numbers that he is inserting into a spread sheet. The purpose of this function will be to keep track of inventory. How would Alex go about finding a function to do this? Click the Home tab and use the Find.
Alex can find a function to do this by entering the item reference numbers into the worksheet, and click the Sort button to count the items.
A spreadsheet can be defined as a document or file which comprises cells in a tabulated format (rows and columns), that are typically used for formatting, arranging, analyzing, storing, calculating, counting, and sorting data on computer systems through the use of a spreadsheet application such as Microsoft Excel.
In this scenario, Alex wants to keep track of inventory by creating a function that is capable of counting item reference numbers as he is inserting into a spread sheet. Thus, he should enter the reference numbers of each item into the worksheet, and click the Sort button to count the items.
Read more: https://brainly.com/question/14299634
Answer:
It’s C
Explanation:
edge
Technical skills are also called soft skills.
Question 9 options:
True
False
The statement is false, technical skills are those that serve to perform a specific function and are also called hard skills.
Technical skills are skills that include knowledge in the mechanical, computer, mathematical or scientific area that will allow a good performance of specific tasks.
A person with technical or hard skills is able to apply specific methods, procedures and techniques in a specialized field.Soft skills refers to the characteristics and personal competencies that show how a person copes with others, it is related to emotional intelligence.Therefore, we can conclude that technical or hard skills are the practical knowledge necessary to perform specific tasks, while soft skills are those skills associated with the ability to interact effectively on a personal level.
Learn more about technical skills here: https://brainly.com/question/10976877
what is the full form of DDR and GWBASIC?
Answer:
DDR: DDR stands for Double Data Rate.
GWBASIC: The full form of GW-BASIC is Graphics and Windows Beginner‘s All-Purpose Symbolic Instruction Code.
What is DDR? - It is a technique in computing with which a computer bus transfers data at double the rate sending data at rising and falling edges of a clock cycle. This method allows for sending 2 signals per clock cycle.
What is GWBASIC? - GW-BASIC is a dialect of the BASIC programming language developed by Microsoft from IBM BASICA. Functionally identical to BASICA, its BASIC interpreter is a fully self-contained executable and does not need the Cassette BASIC ROM found in the original IBM PC.
What does
mean in computer science
Answer:
i think the answer is a character or characters that determine the action that is to be performed or considered.
Explanation:
hope this helps