Answer:
yes because they emit radio waves or radio frequency
Explanation:
A first-in first-out (FIFO) is a memory unit that stores information in such a manner that the item first in is the item first out. Show how a FIFO memory operates with three counters: a write counter WC that holds the address for the memory write operation; a read counter RCthat holds the address for the read operation; and an available storage counter ASC that indicates the number of items stored. ASC is incremented for every item stored and decremented for every item that is retrieved. The memory unit communicates with MAR and MBR.
Answer:
tews
Explanation:
3. An open source software operating system
TYPE THE ANSWER
Answer:
Linux
Explanation:
I read the reading
Write a function that takes two integer lists (not necessarily sorted) and returns true precisely when the first list is a sublist of the second.
The first list may appear anywhere within the second, but its elements must appear contiguously.
HINT: You should define and test a helper function that you can use in sublist.
Answer:
The function written in Python is as follows:
def checksublist(lista,listb):
if(all(elem in lista for elem in listb)):
print("The first list is a sub list of the second list.")
else:
print("The first list is not a sub list of the second list.")
Explanation:
This line defines the function
def checksublist(lista,listb):
The following if condition checks if list1 is a subset of list2
if(all(elem in lista for elem in listb)):
print("The first list is a sub list of the second list.")
The following else statement is executed if the above if statement is not true
else:
print("The first list is not a sub list of the second list.")
The function that takes two integer lists (not necessarily sorted) and returns true precisely when the first list is a sub list of the second is as follows:
def check_sublist(x, y):
if(set(x).issubset(set(y))):
return "The first list is a sublist of the second"
else:
return "The first list is not a sublist of the second"
print(check_sublist([2, 3, 5], [1, 2, 3, 4, 5, 6, 7]))
The code is written is python.
Code explanation:A function is declared called check_sublist. The function accept two parameters namely x and y.if the parameter x is a subset of y then the it will return "The first list is a sublist of the second"Else it will return "The first list is not a sublist of the second"Finally, we use the print statement to call our function with the required parameter.learn more on python code here; https://brainly.com/question/25797503?referrer=searchResults
The email application used by Jim’s office is sending emails with viruses attached to them to user’s computers. What step should Jim try first to resolve the issue?
Downgrade the email software to an older, previous version
Buy a newer email program and migrate the office computers to that program
Switch from open source software to proprietary software
Check for and install patches or software updates
The step that Jim should try first to resolve the issue is to check for and install patches or software updates. Thus, the correct option for this question is D.
What is a Software update?A software update may be defined as a sequence of changes to the software in order to update, fix or improve it. Changes to the software will usually either fix bugs, fix security vulnerabilities, provide new features or improve performance and usability.
The process of software update usually fixes bugs in your current operating system and secures your phone from malicious attacks by fixing any security lapses. G-Pixel handsets receive security updates every month. However, that's not the case with all Android phones.
Therefore, checking for and installing patches or software updates is the step that should Jim try first in order to resolve the issue. Thus, the correct option for this question is D.
To learn more about Software updates, refer to the link:
https://brainly.com/question/5057366
#SPJ2
In the ____ model, each computer in a network can act as a server for all the other computers, sharing files and access to devices.
Answer:
peer to peer
Explanation:
i just know
In a peer-to-peer model, each computer in a network can act as a server for all the other computers, sharing files and access to devices.
What do you mean by Computer Network?Computer Network may be defined as a type of system that significantly connects two or more computing devices with the intention of transmitting and sharing information with one another. In a more simple sense, there is an interconnection between computing devices.
In a peer-to-peer networking model, a group of computers are linked together with having equal responsibilities for the processing of data and information. Each computer is capable to initiate a command that has to be followed by the rest.
Therefore, in a peer-to-peer model, each computer in a network can act as a server for all the other computers, sharing files and access to devices.
To learn more about the peer-to-peer model, refer to the link:
https://brainly.com/question/9315259
#SPJ2
You download a game from the Internet since it looks fun to play. As you begin to play the game, your computer begins
to act erratically and finally crashes. Which of the following types of malware did you download?
Trojan horse
Virus
Worm
O Spyware
HElp
Answer:
Trojan Horse
Explanation:
A trojan horse is something that looks different than what it really is; it's deceptive.
Can someone tell me what to type up this is for my web page design class
Answer:
You have to write the HTML code as given instructions/design.
Write the below code in text file and save as test.html and run.
Explanation:
<html>
<head>
<title>
Storyboard Practice - Text Formatting
</title>
</head>
<body>
<center>
<h1>
Web Design Overview
</h1>
</center>
</body>
</html>
How to give brainliest?
Answer:
Once two people answer a question, it'll have a bar on each answer that says Mark As Brainliest. Click that and it'll make it the Brainliest answer
Answer:
when two people answer there would be a white crown at the bottom right corner (of the answer) when you click on it it turns yellow/gold which means that you have marked that answer brainliest.
Pick the better answer (in your opinion) and then mark it brainliest.
fill in the blanks – the icons mean arranging them in a proper sequence
true false the table can have only one primary key
explain working principle of computer?
Answer:
The working principle of the computer system. Computers do the work primarily in the machine and we can not see, a control center that converts the information data input to output. This control center, called the central processing unit (CPU), How Computers Work is a very complex system.
Explanation:
Joe just joined a new team at his marketing firm, which has been working on a campaign ad for the new Elmo doll. Everyone in the group has children except for Joe, and thus they are familiar with the doll. Joe has never seen an Elmo doll before. How should he deal with the situation?
Answer: ask someone to show or explain the doll to him
Explanation:
edmentum
Answer: ask someone to show or explain the doll to him
Explanation:
If Joe asks his teammates to show or explain the doll to him, he too can contribute ideas for the successful completion of the project.
Serveral cheetas are growling at each other while hunting for animals.for which need are they competing?
Answer:
prey
Explanation:
Answer:
food plis let me now if am wrong
Explanation:
There are 12 inches in a foot and 3 feet in a yard. Create a class named InchConversion. Its main() method accepts a value in inches from a user at the keyboard, and in turn passes the entered value to two methods. One converts the value from inches to feet, and the other converts the same value from inches to yards. Each method displays the results with appropriate explanation.
Answer:
import java.util.Scanner;
public class InchConversion
{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter inches: ");
double inches = input.nextDouble();
inchesToFeet(inches);
inchesToYards(inches);
}
public static void inchesToFeet(double inches){
double feet = inches / 12;
System.out.println(inches + " inches = " + feet + " feet");
}
public static void inchesToYards(double inches){
double yards = inches / 36;
System.out.println(inches + " inches = " + yards + " yards");
}
}
Explanation:
In the inchesToFeet() method that takes one parameter, inches:
Convert the inches to feet using the conversion rate, divide inches by 12
Print the feet
In the inchesToYards() method that takes one parameter, inches:
Convert the inches to yards using the conversion rate, divide inches by 36
Print the yards
In the main:
Ask the user to enter the inches
Call the inchesToFeet() and inchesToYards() methods passing the inches as parameter for each method
We need a program to calculate future cost of a loan taken by a user. The financial institution charges the following interest rates for loans. The user inputs are the amount of loan desired, the loan period (number of years), and the number of compounding per year. Your program should determine the interest rate based on the amount of the loan. Your program should calculate the future dollar amount of this loan. The total amount of interest at the end of the loan period. Your program should incorporate a looping structure so that the user could check out many loan scenarios. You need to determine how to stop the loop. Interest rate schedule is per following schedule: Loan < 10k rate = 2% 10k =
Answer:
Follows are the code to this question:
#include<iostream>//defining the header file
#include<cmath>//defining the header file
using namespace std;
int main() //defining main method
{
double p,a,r;//defining double variable
int n,t;//defining integer variable
bool flag = true;//defining bool variable flag
while(flag) //defining while loop for input value
{
cout<<"Enter Present Worth: ";//print message
cin>>p;//input value in p
cout<<"Enter number of compounding: ";//print message
cin>>n;//input value in n
cout<<"Enter Loan Period: ";//print message
cin>>t;//input value in t
if (p<10000)//defining if block that check principle value is graeter then 10000
{
r = 0.02;//defining r varaible that store 0.02 value
}
else if (p>=10000 && p<=50000)//defining else if that value of p is in 10000 to 50000
{
r = 0.05;//defining r varaible that store 0.05 value
}
else if (p>50000)//defining else if that value of p is in 50000
{
r = 0.07;//defining r varaible that store 0.07 value
}
a = p*pow((1 + r/((double)n)), n*t);//defining formula for calculate A
cout<<"\nInterest Rate of Loan: "<<r<<endl;//print r rate value
cout<<"Future Worth: $"<<a<<endl;//print A value
cout<<"Total Interest: $"<<(a-p)<<endl<<endl;//print total interest value
char c;//defining char variable c
cout<<"Do you want to check for more loans(Press 'Y' for yes, otherwise press any other key): ";//print message
cin>>c;//input char value
if (c!= 'Y' && c!= 'y')//define if block that check c value is not equal to y
flag = false;//use flag that hold value false
}
cout<<"Thank you!!!"<<endl;//print message
return 0;
}
Output:
please find the attched file.
Explanation:
In the code, inside the main method three double variables "p, a, and, r", two integer variable "n and t", a bool variable is defined, in which double variable "p, n, and t" is used to input the value from the user-end.
In the next step, a condition statement has used that check the p-value and set the value according to the "p" variable value.The formula is used that calculates the value and prints its value, and uses a char variable that takes input "y" for again run the code or input other value to exit the program.Which one of these stores more data than a DVD ?
Floppy
CD Rom
Blue Ray Disk
Red Ray Disk
Submit
Answer:
Blue Ray Disk
Explanation:
Question 7 of 10
When is it more professional not to send a business email?
O A. When a number of people should be included.
B. When the content is highly sensitive or emotional.
O C. When a written record is needed.
D. As a cover letter for an attachment
Answer:
B. When the content is highly sensitive or emotional
Explanation:
B. When the content is highly sensitive or emotional.
A software program designed to simplify communication between various hospital systems such as ADT (Admission-Transfer-Discharge), Pharmacy, LIS (Lab Information System), RIS (Radiology Information System) and etc. is called
Answer:
"HL7 Translator" seems to be the appropriate answer.
Explanation:
HL7 would be a universal, user-friendly protocol that allows collaboration across two or maybe more programs for health administration. Throughout the context through one and sometimes more HL7 communications, including billing healthcare and customer data, health-related data will be transmitted. The implementation of HL7 includes the participation of clinical technology analysts, integration professionals, system administrators including analysts.what type of model does the Web use?
Answer:
Microsoft, Firefox, Google, and Office onenote webisite
Explanation:
cause they are a model
true false are computer has four main parts
Answer:
It is true because computer have four main parts
Next, copy in your strip_punctuation function and define a function called get_pos which takes one parameter, a string which represents one or more sentences, and calculates how many words in the string are considered positive words. Use the list, positive_words to determine what words will count as positive. The function should return a positive integer - how many occurrences there are of positive words in the text. Note that all of the words in positive_words are lower cased, so you’ll need to convert all the words in the input string to lower case as well.
punctuation_chars = ["", ","," 3 # list of positive words to use 4 positive_words = 0 5 with open ("positive_words.txt") as pos_f: for lin in pos_f: if lin[0] != ';' and lin[0] != '\n': positive_words.append(lin.strip) 6 7 8 9 10
Answer:
Here is the get_pos function:
def get_post(string): #function that takes string as parameter
string=string.lower() #converts the string to lower case
string=strip_punctuation(string) #calls strip_punctuation to remove punctuation from string
string=string.split() #split the string into a list
count_positive=0 #counts the occurrences of positive words
for word in string: #loops through the string
if word in positive_words: #if a word in a string is a positive words
count_positive=count_positive+1 #adds 1 to the count of count_positive each time a positive word appears
return count_positive #returns the positive integer - how many occurrences there are of positive words in the string
Explanation:
In order to explain the working of this function lets suppose the punctuation_chars list contains the following punctuation characters:
punctuation_chars = ["'", '"', ",", ".", "!", ":","?", ";", '#']
Lets suppose the positive_words.txt file contains the following two words i.e. yes okay
Lets suppose the string is Hi! I am okay, see you later.
string = " Hi! I am okay, see you later. "
string=string.lower() statement converts the string to lower case:
string = hi! i am okay, see you later.
string=strip_punctuation(string) this statement calls strip_punctuation method to remove the punctuation from string.
string = hi i am okay see you later
string=string.split() this statement splits the sentence into list
['hi', 'i', 'am', 'okay', 'see', 'you', 'later']
for word in string: this loop iterates through the string
At first iteration if condition checks if word "hi" is in positive_words. This is not true because positive_words only contain the words okay and yes.
At next iteration if condition checks if word "i" is in positive_words. This is not true because positive_words only contain the words okay and yes.
At next iteration if condition checks if word "am" is in positive_words. This is also not true.
At next iteration if condition checks if word "okay" is in positive_words. This is true because positive_words contains the words okay. So count_positive=count_positive+1 statement executes which adds 1 to the count of count_positive so
count_positive = 1
At next iteration if condition if word in positive_words checks if word "see" is in positive_words. This is not true.
At next iteration if condition checks if word "you" is in positive_words. This is also not true.
At next iteration if condition checks if word "later" is in positive_words. This is also not true.
Now the statement: return count_positive returns the occurrence of positive words in the string which is 1. So the output of this is 1.
Here is the strip_punctuation method:
def strip_punctuation(word): #removes punctuation from words
New_word="" #initializes new word string to empty
print("Word is: ",word) #prints the word
for w in word: #iterates through words
if w not in punctuation_chars: #if word is not in punctuation_char list
New_word=New_word+w #adds that word to new word string
return New_word #returns word after removing punctuation
A non-abstract class that implements an interface: __________
a. can use any constants defined by the interface
b. must provide an implementation for each abstract method
c. defined by the interface must inherit the interface
d. all of the above
e. a and b only
Answer:
b
Explanation:
because i think i go with my gut
2 paragraphs of shooting games doesn’t make you violent
Answer:
Video games. A common pastime for the American people, children and adults alike. However, one thing many people confuse about video games is the false notion that violent ones carry over into real life behavior. For example, are you a culinary chef after you play Overcooked? Are you a professional soccer player after playing FIFA? If the answers to those are no, or something of the sort, then shooter games should not be tied to school shootings and things of the such.
For one, shooter games are not realistic scenarios that children and adults will be played in. As for Counter Strike, players can play as police men and defend the people from terrorists who attack them, which is a positive message to send out. Another example would be Doom Eternal, which is a game about fighting demons, which at the end of the day is quite a religious and healthy message to spread to children. Even for more realistic shooter games, children are not likely to find a gun laying around, and by the chance that they do and they know how to use it, their judgment is greater than their anger at that age if they are knowledgeable in how to use a gun.
In conclusion, shooter games do not make people violent. The notion that they do is absurd, as it is, as parents say "not real", and therefore shouldn't have so much time invested in it. But, if a child is doing good in school and well behaved, there is no problem with letting them play shooter games. If anything, they build experiences with friends when they play with them. Isn't that what childhood is about, playing with friends? Adults are typically good with judgment in these sorts of things, and they should know better. For adulthood is full of freedom, and they should be able to do what they need to enjoy it.
Explanation:
3.24 LAB: Seasons
Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day.
Ex: If the input is:
April 11
the output is:
Spring
In addition, check if the string and int are valid (an actual month and day).
Ex: If the input is:
Blue 65
the output is:
Invalid
The dates for each season are:
Spring: March 20 - June 20
Summer: June 21 - September 21
Autumn: September 22 - December 20
Winter: December 21 - March 19
270738.1591718
import java.util.Scanner;
public class LabProgram {
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int inputYear;
boolean isLeapYear;
isLeapYear = false;
inputYear = scnr.nextInt();
/* Type your code here. */
}
}
Answer:
Seasons Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day. Ex: If the input is: April 11 the output is: Spring In addition, check if the string and int are valid (an actual month and day). Ex: If the input is: Blue 65 the output is: Invalid Invalid The dates for each season are: Spring: March 20 - June 20 Summer: June 21 - September 21 Autumn: September 22 - December 20 Winter: December 21 - March 19 LAB ACTIVITY 3.24.1: LAB: Seasons 0/10 main.cpp Load default template... 1 #include eam> 2 #include <string> 3 using namespace std; 4 5 int main() 6 string inputMonth; 7 int inputDay; 8 9 cin >> inputMonth; 10 cin >> inputDay; 11 12 /* Type your code here. */ 13 14 return; 15 }
Which is smaller - 1 PB or 1,000 TB? *
1 PB
1,000 TB
O They're equal
PLEASE HELP 10points
Answer:
they are all equal
Explanation:
I did this before
What is the purpose of application software
Answer:
Explanation:
type of computer program that performs a specific personal, educational, and business function. Each program is designed to assist the user with a particular process, which may be related to productivity, creativity, and/or communication.
Microsoft
is one of the world's most popular operating systems.
Answer:
The answer is "Cooperation
"
Explanation:
Answer:
Microsoft Windows is one of the world most popular operating system
. answer is windows please mark me brain list
Shut down and unplug the computer. Remove the CPU case lid. Locate the various fans, and then use compressed air to blow dirt out through the internal slits from inside the case.
✔ cleaning the fan
Save files to an external storage device to aid in file recovery.
✔ backup
This process allows you to permanently delete files you no longer need.
✔ cleaning out unneeded files
This mini program may be an unwanted application.
✔ widget
Remove programs you accidentally downloaded when you purchased an e-book.
✔ removing unwanted applications
This application scans, locates, and makes needed repairs on the hard drive.
✔ checking the hard drive for errors
I DID THIS CAUSE TI COULDNT FIND THE ANSWERS SO I WANTED TO HELP ANYONE WHO NEEDS THIS
the answers are:
- cleaning the fan
- backup
- cleaning out unneeded files
- widget
- removing unwanted applications
- checking the hard drive for errors
in a company you are in charge of system maintainance. Justify with 5 reasons why your role is key
Answer:
As u are the in charge of system maintainance u have to maintain safety and security to the system.as the system maintainance is a very big role and u can say it is the key to ur company or to ur work.
Plz answer me will mark as brainliest
Answer:
D is the answer
Explanation:
because arteriales don't requare valves because they only go to one direction