You are in a library to gather information from secondary sources, and you want to find a current print resource that can supplement information from a book. What source should you use
Answer:
Periodical Literature
Explanation:
In this specific scenario, the best source for you to use would be the periodicals. Periodical Literature is a category of serial publications that get released as a new edition on a regular schedule, such as a magazine, newsletters, academic journals, and yearbooks. Some real-life examples include Sports Illustrated, Discovery, or even Time Magazine. These periodical literary sources all provide up to date data on any topic that is needed.
Assuming the user types the sentence
Try to be a rainbow in someone's cloud.
and then pushes the ENTER key, what will the value of ch be after the following code executes?.
char ch = 'a';
cin >> ch >> ch >> ch >> ch;
(in c++)
The value of ch will be the character entered by the user after executing the code.
What is the value of ch after executing the code?The code snippet cin >> ch >> ch >> ch >> ch; reads four characters from the user's input and assigns them to the variable ch. Since the user input is "Try to be a rainbow in someone's cloud." and the code reads four characters, the value of ch after the code executes will depend on the specific characters entered by the user.
In conclusion, without knowing the input, it is not possible to determine the exact value of ch. Therefore, the value of ch will be the character entered by the user after executing the code.
Read more about code execution
brainly.com/question/26134656
#SPJ1
Using computers can lead to a number of physical safety issues. State and explain TWO(2) of these types of issues.
The types of issues that is seen are:
Electrocution Fire Tripping over wires and others.What is the physical safety about?There are a lot of of physical safety issues that can come up from using ICT devices.
A fire outbreak can occur if there is an issue with the wiring of the computer system or when there is too much voltage supplied and this is therefore a type of physical safety issues in the computer room.
Note that Electrocution is said to be the death or bad injury that is known to be caused as a result of an electric shock from electric current that tends to pass through the body.
Hence, The types of issues that is seen are:
Electrocution Fire Tripping over wires and others.Learn more about Electrocution from
https://brainly.com/question/1810934
#SPJ1
Cristina works in the sales department of a company that provides security services to businesses. She is writing a proposal to persuade a shopping mall to hire her company. She is using the most recent version of Microsoft word but just learned that the customer has an older version. What word-processing function will let her provide a document her customer's software can read?
In such a situation, Cristina must save the document in a format that the customer's software can read.To ensure compatibility, Cristina can use the "Save As" function to save the document in an earlier version of Microsoft Word format. When using this function, she must choose the earliest version that is compatible with the customer's software.
When writing a proposal to persuade a shopping mall to hire a company that provides security services to businesses, the writer must ensure that the proposal is compatible with the software the customer uses. Cristina works in the sales department of such a company, and she is using the most recent version of Microsoft Word. However, she just learned that the customer has an older version.
In such a situation, Cristina must save the document in a format that the customer's software can read.To ensure compatibility, Cristina can use the "Save As" function to save the document in an earlier version of Microsoft Word format. When using this function, she must choose the earliest version that is compatible with the customer's software.
In this case, she must save the document in a format that is compatible with the older version of Word used by the customer.The "Save As" function in Microsoft Word is used to create a new version of the same document with a different name and file format. It is used to save the document in a different location and to save it in a different format from the original. The function is useful when a document must be saved in a different file format to be compatible with other software programs.
For more such questions on Microsoft Word, click on:
https://brainly.com/question/25813601
#SPJ8
Which of the following would be considered software? Select 2 options.
memory
printer
operating system
central processing unit (CPU)
Microsoft Office suite (Word, Excel, PowerPoint, etc.)
Thing
Answer:
Microsoft Office suite (Word, Excel, PowerPoint, etc.), and thing
Explanation:
The Operating system and Microsoft Office suite will be considered as software.
A Software is the opposite of Hardware in a computer system.
Let understand that Software means some set of instructions or programs on a computer which are used for operation and execution of specific tasks.There are different type of software and they include:
Application Software are software installed into the system to perform function on the computer E.g. Chrome.System Software is the software designed to provide platform for other software installed on the computer. Eg. Microsoft OS. Firmware refers to set of instructions programmed on a hardware device such as External CD Rom.In conclusion, the Operating system is a system software while the Microsoft Office suite is an application software.
Learn more about Software here
brainly.com/question/1022352
In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.
Answer: Excel Average functions
Explanation: it gets the work done.
Answer:
excel average
Explanation:
Is friction is a noncontact force ehich speeds up moving objects
Answer:
No
Explanation:
Friction is a contact force that slows down moving objects
A ______ can hold a sequence of characters such as a name.
A string can hold a sequence of characters, such as a name.
What is a string?A string is frequently implemented as an array data structure of bytes (or words) that records a sequence of elements, typically characters, using some character encoding. A string is typically thought of as a data type. Data types that are character strings are the most popular.
Any string of letters, numerals, punctuation, and other recognized characters can be stored in them. Mailing addresses, names, and descriptions are examples of common character strings.
Therefore, a string is capable of storing a group of characters, such as a name.
To learn more about string, refer to the link:
https://brainly.com/question/17091706
#SPJ9
In java language please.
A java program that creates a 2D integer array is given below:
The Program//Class RURottenTomatoes
public class RURottenTomatoes
{
//main method
public static void main (String[] args)
{
//Declaring & initializing variable to store index of command line argument
int index = 0;
//Obtaining number of rows & columns for 2D array from command line
int r = Integer.parseInt(args[index++]);
int c = Integer.parseInt(args[index++]);
//Creating a 2D integer array of r rows & c columns
int ratings[][] = new int[r][c];
//Declaring iterator for loop
int i, j;
//Declaring variable to store sum of a movie ratings, highest sum of movie ratings
int sum, highest;
//Declaring variable to store index of sum of highest ratings movie
int highest_index;
//Filling value in 2D array from arguments of command line
for ( i = 0; i < r; i++ )
{
for ( j = 0; j < c; j++ )
{
ratings[i][j] = Integer.parseInt(args[index++]);
}
}
//Initializing highest sum of movie ratings & corresponding index
highest = highest_index = -1;
//Calculating index of the movie with highest sum of ratings
for ( i = 0; i < c; i++ )
{
sum = 0;
for ( j = 0; j < r; j++ )
{
sum = sum + ratings[j][i];
}
//Checking whether
if(sum > highest)
{
highest = sum;
highest_index = j;
}
}
//Displaying index of the movie with highest sum of ratings
System.out.println(highest_index);
}
}
OUTPUTjavac RURottenTomatoes.java
java RURottenTomatoes 3 4 1 2 3 4 5 6 7 8 9 10 11 12 3
Read more about java programming here:
https://brainly.com/question/18554491
#SPJ1
Numerical methods are implementations of mathematical algorithms, but constructed with special consideration for accuracy of solutions and computational run-time. The order in which we implement floating point arithmetic for any numerical method will effect the accuracy of the final computed value. For this reason, extra thought must be placed on our basic mathematical operations. In this problem, you are asked to add-up the values in a large array called data. How should you do this to achieve the most accurate final sum
Answer:
find detailed description of algorithms (direct and iterative methods) in books [8], [3], [24]. We limit ourself to only selected problems and methods which are important in chemical engineering. 1.2.1 Conditioning of a system of linear equations We do not compute accurately because of rounding errors, which affect results of calcu-lations.
Explanation:
You use the ATM machine to withdraw money from your checking account. What set of steps does the DBMS need to perform in order for you to complete your transaction?
To execute your transaction at the ATM, the DBMS must authenticate your account, check your account balance, process the withdrawal request, update the account balance, and produce a transaction record.
What is an ATM's UI? Which machine components are used for input and output?The automated teller machine's block diagram largely comprises of two input devices and four output units. The speaker, display screen, receipt printer, and cash depositor are output devices, whereas the card reader and keypad are input devices.
I want to take money out of my bank account.Fill out a withdrawal paper at a bank branch to make a withdrawal. You can choose to have money taken out of your checking or savings account.
To know more about transaction visit:-
https://brainly.com/question/20301638
#SPJ1
The protocol that translates between IP addresses and MAC addresses on a network is
?
Answer: Address Resolution Protocol
Explanation: ARP is the Address Resolution Protocol, used to translate between Layer 2 MAC addresses and Layer 3 IP addresses. ARP resolves IPs to MAC addresses by asking, “Who has IP address 192.168. 2.140, tell me.” An example of an ARP reply is “192.168. 2.140 is at 00:0c:29:69:19:66.”
Adders Chapter 4 Mano
Given:
Find c1,…,c4 and S0,…,S3 if C0 = 0 and
A = (A0,…,A3) =(1001) AND B =(1101)
Whis is the answer if c0 =1
Modify the diagram to subtract B-A and c0
Modify the diagram, B, and c0 to find A
Using the original A and B, how can this diagram be used to findA +B then B-A?
To find B - A, we can use the complement method. We can take the complement of A and connect it as an input to the adder circuit, with B as the other input and c0 set to 1. The output will be the difference between B and A, with a carry-out bit of either 0 or 1.
To modify the diagram in Chapter 4 of Mano, we need to first understand what it represents. The diagram is an adder circuit that adds two binary numbers, A and B, along with a carry-in bit, c0.
The output is the sum of A and B, along with a carry-out bit, c1.
If c0 = 1, we need to modify the circuit to account for the additional carry-in bit. We can do this by adding an extra input to the first full adder, labeled "cin".
This input will be connected to c0, allowing it to be included in the addition process.
To find A using the modified diagram, we can assume that B is known and set c0 to 0.
This will result in the sum outputting B, with a carry-out bit of 0. We can then subtract B from this result by using a second adder circuit that takes the complement of B as an input. This will give us A as the output, with a carry-out bit of 1.
To find A + B using the original A and B, we can simply connect them as inputs to the adder circuit, with c0 set to 0. The output will be the sum of A and B, with a carry-out bit of either 0 or 1.
For more questions on adder circuit
https://brainly.com/question/29891574
#SPJ11
Demonstrate competence in a range of skills in Excel including charting and use of functions Select appropriate techniques to explore and summarise a given dataset Highlight and communicate results to the relevant audienc
Answer:
I cannot answer this question as "audienc" isn't a valid word. Please re-write the question (show below):
Demonstrate competence in a range of skills in Excel including charting and use of functions Select appropriate techniques to explore and summarise a given dataset Highlight and communicate results to the relevant audienc
OK OK OK IM KIDDING HERE'S YOUR SOLUTION
Real Answer:
To demonstrate competence in a range of skills in Excel, one should have a strong understanding of the basic and advanced features of Excel, including charting, use of functions, and data analysis tools. This can be achieved through taking online courses, attending workshops, or practicing on their own.
To select appropriate techniques to explore and summarise a given dataset, one should first understand the nature and characteristics of the data, such as its size, format, and complexity. From there, one can choose appropriate Excel functions and tools to organize and analyze the data, such as filtering, sorting, grouping, and pivot tables.
To highlight and communicate results to the relevant audience, one should use appropriate charts and graphs to visually represent the data, as well as create clear and concise summaries and explanations of the results. This requires a strong understanding of the data, as well as the ability to communicate complex information in a clear and understandable manner. Additionally, one should consider the intended audience and their level of expertise when presenting the results, and adjust the presentation accordingly.
Hope it helps!!
Need help with this python question I’m stuck
It should be noted that the program based on the information is given below
How to depict the programdef classify_interstate_highway(highway_number):
"""Classifies an interstate highway as primary or auxiliary, and if auxiliary, indicates what primary highway it serves. Also indicates if the (primary) highway runs north/south or east/west.
Args:
highway_number: The number of the interstate highway.
Returns:
A tuple of three elements:
* The type of the highway ('primary' or 'auxiliary').
* If the highway is auxiliary, the number of the primary highway it serves.
* The direction of travel of the primary highway ('north/south' or 'east/west').
Raises:
ValueError: If the highway number is not a valid interstate highway number.
"""
if not isinstance(highway_number, int):
raise ValueError('highway_number must be an integer')
if highway_number < 1 or highway_number > 999:
raise ValueError('highway_number must be between 1 and 999')
if highway_number < 100:
type_ = 'primary'
direction = 'north/south' if highway_number % 2 == 1 else 'east/west'
else:
type_ = 'auxiliary'
primary_number = highway_number % 100
direction = 'north/south' if primary_number % 2 == 1 else 'east/west'
return type_, primary_number, direction
def main():
highway_number = input('Enter an interstate highway number: ')
type_, primary_number, direction = classify_interstate_highway(highway_number)
print('I-{} is {}'.format(highway_number, type_))
if type_ == 'auxiliary':
print('It serves I-{}'.format(primary_number))
print('It runs {}'.format(direction))
if __name__ == '__main__':
main()
Learn more about program on
https://brainly.com/question/26642771
#SPJ1
Name some areas in which computer are being used
Answer:
Computers play a role in every field of life. They are used in homes, business, educational institutions, research organizations, medical field, government offices, entertainment, etc.
Explanation:
Home
Computers are used at homes for several purposes like online bill payment, watching movies or shows at home, home tutoring, social media access, playing games, internet access, etc. They provide communication through electronic mail. They help to avail work from home facility for corporate employees. Computers help the student community to avail online educational support.
Medical Field
Computers are used in hospitals to maintain a database of patients’ history, diagnosis, X-rays, live monitoring of patients, etc. Surgeons nowadays use robotic surgical devices to perform delicate operations, and conduct surgeries remotely. Virtual reality technologies are also used for training purposes. It also helps to monitor the fetus inside the mother’s womb.
Entertainment
Computers help to watch movies online, play games online; act as a virtual entertainer in playing games, listening to music, etc. MIDI instruments greatly help people in the entertainment industry in recording music with artificial instruments. Videos can be fed from computers to full screen televisions. Photo editors are available with fabulous features.
Industry
Computers are used to perform several tasks in industries like managing inventory, designing purpose, creating virtual sample products, interior designing, video conferencing, etc. Online marketing has seen a great revolution in its ability to sell various products to inaccessible corners like interior or rural areas. Stock markets have seen phenomenal participation from different levels of people through the use of computers.
Education
Computers are used in education sector through online classes, online examinations, referring e-books, online tutoring, etc. They help in increased use of audio-visual aids in the education field.
Government
In government sectors, computers are used in data processing, maintaining a database of citizens and supporting a paperless environment. The country’s defense organizations have greatly benefitted from computers in their use for missile development, satellites, rocket launches, etc.
Banking
In the banking sector, computers are used to store details of customers and conduct transactions, such as withdrawal and deposit of money through ATMs. Banks have reduced manual errors and expenses to a great extent through extensive use of computers.
Business
Nowadays, computers are totally integrated into business. The main objective of business is transaction processing, which involves transactions with suppliers, employees or customers. Computers can make these transactions easy and accurate. People can analyze investments, sales, expenses, markets and other aspects of business using computers.
Training
Many organizations use computer-based training to train their employees, to save money and improve performance. Video conferencing through computers allows saving of time and travelling costs by being able to connect people in various locations.
Arts
Computers are extensively used in dance, photography, arts and culture. The fluid movement of dance can be shown live via animation. Photos can be digitized using computers.
Science and Engineering
Computers with high performance are used to stimulate dynamic process in Science and Engineering. Supercomputers have numerous applications in area of Research and Development (R&D). Topographic images can be created through computers. Scientists use computers to plot and analyze data to have a better understanding of earthquakes.
Malaysia..HP,Lenovo,dell
India,Asser,Asus
apple,ibm, Microsoft
places where computer are used
Answer:
Banks and financial.
Business.
Communication.
Defense and military.
Education.
Internet.
Medical.
Transportation.
etc..
Answer:
businesses, schools, colleges, medical offices, banks.
In the lab, you defined the information systems security responsibility for each of the seven domains of a typical IT infrastructure. In which domain would you be most likely to secure access through the Internet and from employees’ homes?
Answer:
Remote Access Domain
Explanation:
Remote access Domain allows users to enter into system network through VPN.
how did hitles rules in nazi germany exemplify totiltarian rule?
Answer:
hope this helps if not srry
Write a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.
Answer:
ok
Explanation:
aprogram that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers. is written below
a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.
True or False: Nanomemory applies to computers.
Answer:
True
Explanation:
The Huawei developed Nanomemory Card (used for phones) can also be used for computers. A nanomemory card is just like an SD card, it provides you with extra storage space. Computer memory is also measured in nanomemory, so it can be used. Therefore, the answer to the question is True.
Best of Luck!
It is important to create a strong password because it will
let someone steal your personal information
allow your friends to easily guess it
keep your private information safe and secure
give your computer a virus
How can u refer to additional information while giving a presentation
Answer:
There are various ways: Handing out papers/fliers to people, or presenting slides.
Diseconomies of scale are likely to result from which one of the followings?
_____ are specific verbal language and nonverbal behaviors that are encoded when a message is sent. a. Pragmatics b. Decoders c. Channels d. Signals
d. Signals are specific verbal language and nonverbal behaviors that are encoded when a message is sent.
Signals are specific verbal language and nonverbal behaviors that are encoded when a message is sent. What is a signal?The signal is defined as anything that serves to direct, guide, or warn, particularly something that can be seen, heard, or otherwise perceived, such as a light, sound, gesture, or object. A signal is a word, sound, gesture, or physical item that communicates information about something or someone. The information conveyed by a signal is typically a symbol, indicating a message that the receiver can decode.The following are some other definitions of signal:Signal is the information transmitted through a communication system from one point to another, including analog, digital, audio, or visual signals.A signal is a collection of information that has been encoded and sent over a communication channel. The sender encodes the information into a signal that is transmitted over the channel, and the receiver decodes the signal to extract the original information.
To know more about digital click here
brainly.com/question/18943642
#SPJ11
You are given an array of integers, each with an unknown number of digits. You are also told the total number of digits of all the integers in the array is n. Provide an algorithm that will sort the array in O(n) time no matter how the digits are distributed among the elements in the array. (e.g. there might be one element with n digits, or n/2 elements with 2 digits, or the elements might be of all different lengths, etc. Be sure to justify in detail the run time of your algorithm.
Answer:
Explanation:
Since all of the items in the array would be integers sorting them would not be a problem regardless of the difference in integers. O(n) time would be impossible unless the array is already sorted, otherwise, the best runtime we can hope for would be such a method like the one below with a runtime of O(n^2)
static void sortingMethod(int arr[], int n)
{
int x, y, temp;
boolean swapped;
for (x = 0; x < n - 1; x++)
{
swapped = false;
for (y = 0; y < n - x - 1; y++)
{
if (arr[y] > arr[y + 1])
{
temp = arr[y];
arr[y] = arr[y + 1];
arr[y + 1] = temp;
swapped = true;
}
}
if (swapped == false)
break;
}
}
in terms of computer what does mie mean
Answer:
Microsoft Internet explorer
You use a word processor to create and save a text-based document on your computer. What does the text in your document represent? Question 15 options: 1) data 2) hardware 3) operating system 4) application
Since you use a word processor to create and save a text-based document on your computer. The text in your document represent: 1) data.
What is the word processor?The term Data is known to be one that connote a form of raw facts, figures, as well as symbols that are placed to a computer for processing.
Note that In this case, the text that is said to be formed via the use of a word processor is the raw data that is known to being input to the computer.
Therefore, The word processor application is one that tends to processes this data to make the final document that a person can be able to be saved on the computer's storage device.
Learn more about word processor from
https://brainly.com/question/985406
#SPJ1
Complete the code to generate a pseudo-random integer between 1 and 44, including the possibility of both 1 and
44.
>>> import secrets
>>> secret
Answer:
Explanation:
.randbelow(44) + 1
The code above uses the secrets module, which is a part of the Python standard library and uses a cryptographically strong random number generator. The randbelow() function generates a random integer below the number given as an argument. In this case, the argument is 44, which means that the function will generate a random integer between 0 and 43. To get a random integer between 1 and 44, we add 1 to the result of the function.
With clear examples, describe how artificial intelligence is applied in fraud detection
Answer:
AI can be used to reject credit transactions or flag them for review. Like at Walmart
Explanation:
I work with AI, i know what i'm talking about.