The assertion that collection development starts with community analysis is logically correct.
The collection development policy is vital for setting goals for the collection that mirror the missions of the library. It gives information to the stakeholders of the library about how the collection will be chosen, and who will make the decisions regarding the collection.
Collection development starts with community analysis. The collection plan should follow a logical process in order to be effective. The community should be taken into consideration before the plan is carried out. The more one knows about the community, the better it'll be to make the collection plan effective.
Read related link on:
https://brainly.com/question/21529943
explain how communication in fuses management efficiency
Explanation:
Effective communication is pivotal in increasing productivity because it directly influences the behavior of the staff and the way they perform. ... That is why it is essential that you practice communicating with your staff. It will improve understanding and, in the result, will elevate productivity and efficiency.
2p + 1 = -1
please help
Answer:
this is the start of the equation
Explanation:
2p + 1 = -1
-2 -2
Answer:
I think its -1
Explanation:
2p+1=-1
2p+1-1=-1-1 minus one from each side
2p=-2 divide both sides by 2
2p/2=-2/2
p=-1
Which term describes the variable x in this program?
x = int(input("Enter a score or enter -1 to end. "))
while x != -1:
x = int(input("Enter a score or enter -1 to end. "))
an iteration counter
a sentinel value
a string counter
a loop counter
Answer: a sentinel value
Explanation:
a sentinel value is a value that is used as a condition to end the program. notice that it says "enter -1 to end"
Number 1 is what part of an application
Title Bar
Ribbon
Quick Access Toolbar
Status Bar
Answer:
The correct answer is Quick acces tool bar. You litteraly probably don't even use brainly anymore lol.
Explanation:
I absolutly confirm this is correct.
The number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.
What does the Quick Access toolbar contain 1 point?The customizable Quick Access Toolbar contains a set of commands that are independent of the currently displayed tab on the ribbon. You can move the Quick Access Toolbar from one of the two possible locations, and you can add buttons that represent commands to the Quick Access Toolbar.
According to the context of this question, the quick access toolbar is located in the title bar of the application window but can be configured to display below the ribbon usually consisting of the number 1 part of an application.
Therefore, number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.
To earn more about Quick access toolbar, refer to the link:
https://brainly.com/question/13523749
#SPJ6
Which type of game is least likely to need a structured narrative?
a first-person shooter, ,
an adventure game ,
a role-playing game ,
a sports game
Question 4
Answer:
an adventure game
Explanation:
It is this because people explore more than rather have certain dialouge or storylines like perspective games. so in that case i hope this answer helps!!!
Write a program that can add, Subtract, multiply and divide entered numbers.
In Python:
def add(x, y):
return x + y
def subtract(x, y):
return x - y
def multiply(x, y):
return x * y
def divide(x, y):
return x / y
What do you understand by the term input, output, processing and storage.
Explanation:
The hardware responsible for these four areas operates as follows: Input devices accept data in a form that the computer can use; they then send the data to the processing unit. ... Output devices show people the processed data-information in a form that they can use. Storage usually means secondary storage.
Answer:
input is any information that are given by user and output is the meaningful results that displays in screen and processing means the actions of computer to convert input into output and storage is the last stage where the data and information held for future. I hope you like the answer
what are the components of computer system??
Answer:
1. A motherboard.
2. A Central Processing Unit (CPU)
3. A Graphics Processing Unit (GPU), also known as a video card.
4. Random Access Memory (RAM), also known as volatile memory.
5. Storage: Solid State Drive (SSD) or Hard Disk Drive (HDD)
(Please give me brainliest)
phân tích cạnh tranh của cocacola và pepsi
I just need question 2 answered. Someone please help I’m on a test!
Answer:
Principal photography
Explanation:
In order to get the maximum functionality out of a device that is plugged in, a user should download the specific ___ for that device.
The theory of plate tectonics evolved from previous theories and concepts put forward by several scientists before its conception. Which theories and concepts are part of this evolution? I. continental drift III. convection current II. seafloor spreading IV. internal structure of Earth
Answer:
I. Continental drift.
Hope this helps
how does communication promotes team building
Answer:
Effective communication within a team will build a common purpose among team members that will allow them to reach their goals. ... Strong group communication will create understanding and that understanding will create powerful relationships within a team.
Which option is the output of the Functional Requirements of the SRS document?
A.
program modules
B.
data formats
C.
storage capabilities
D.
hardware interfaces
E.
communication interfaces
Answer:
E
communication interface
explain how communication managerial efficiency
Answer:
The efficiency of manager depends upon his ability to communicate effectively with the members of his organisation. It is only through communication that management conveys its goals and desires, issues instructions and orders, allocates jobs and responsibility and evaluates performance of subordinates.
pls tag me brainliest
Hey all! How would you write write this code?
Write a C++ program using variables and loops in order to implement the Hi-Low strategy of card counting and keep a running count. The Hi-Low strategy of card counting assigns one of three values to a card, based on its face value. The table below breaks down these values. FACE VALUE ASSIGNEDVALUE 2, 3, 4, 5, 6 +1 7, 8, 9 0 10, J, Q, K, A -1 In a typical game of Blackjack, a card counter will start with a fresh deck and a count of 0. Each time a card is played, its assigned value is added (or subtracted) from what is known as the running count. The running count rolls over from hand to hand. For instance, if the first 7 cards of a game were: Queen, Jack, 4, 6, 7, Jack, 9, then the running count would be (0) -1 -1 + 1 + 1 + 0 –1 + 0 =-1
The program is an illustration of loops.
Loops are used to perform repetitive actions.
The program in C++ where comments are used to explain each line, is as follows:
#include <string>
#include <iostream>
using namespace std;
int main(){
//This declares all variables
int n, count = 0; string k;
//This gets input for the number of cards
cin>>n;
//The following is repeated n-times
for(int i = 0;i <n;i++){
//This gets input for the current card value
cin>>k;
//If the card is a digit
if(isdigit(k[0])){
//This checks if the card number is between 2 and 6 (inclusive)
if(stoi(k) >= 2 && stoi(k) <= 6){
//If yes the face value is increased by 1
count+=1;
}
//This checks if the card number is 10
else if(stoi(k) == 10){
//If yes the face value is decreased by 1
count-=1;
}
}
//This checks if the card number is J, Q, K or A
else if (k == "J" || k == "Q" || k == "K" || k == "A") {
//If yes the face value is decreased by 1
count-=1;
}
}
//This prints the face value
cout<<count;
return 0;
}
At the end of the program, the face value is printed.
Read more about similar programs at:
https://brainly.com/question/24578223
In which of these images would lines become an evaluating factor?
Answer: The fish?
Explanation:
Answer:
birds in flight and railroad tracks
Explanation:
i got it right
Thiết kế biểu đồ thực thể liên kết và tập lược đồ cơ sở dữ liệu quan hệ cho các bài toán quản lý sau:
Bài toán 1. Bạn cần một cơ sở dữ liệu để quản lý thông tin về các tạp chí. Với mỗi tạp chí bạn cần quản lí tên tạp chí, số ISSN (mã số công bố của tạp chí), số phát hành và năm phát hành. Dữ liệu về các bài báo trong tạp chí bao gồm: tiêu đề bài báo, trang bắt đầu và trang kết thúc của bài báo trong tạp chí (nghĩa là bài báo bắt đầu từ trang nào, và kết thúc ở trang nào trong tạp chí). Giả thiết rằng không có hai bài báo nào có cùng tiêu đề. Mỗi bài báo được viết bởi một vài tác giả. Mỗi tác giả bạn sẽ lưu các thông tin về tên, địa chỉ email và địa chỉ cơ quan.
Answer:
sorry please write in English than i help.you i don't understand your language
what is the impact of using computer in office?
Answer:
It significantly enhance productivity.It can increase the speed and accuracy of many work processes, which improves overall worker efficiency. Documents can be written and edited much more quickly with the aid of a word processing program, and procedures, such as billing and accounting, can also occur more rapidly and with fewer errors.Computers in the office increase productivity not only in areas such as word processing, data management and information access, but also in information creation, collation and ultimately storage.
The Impact of using computer in the office can not be over emphasised as it generally increase throughput makes work flow fluid and encourages collaboration.
Some other positive Impact of using computer
Some of the positive effects are faster communication, an organisation of data and information, computerisation of tasks, and easier access to the information.
Learn more about impact of computer:
https://brainly.com/question/984271
Given a list of twenty number count the numbers among the list
Answer:
Thank you for the points<33
what is keyboard buffer tell me the answer nicely and I will give brainlitst
Answer:
A keyboard buffer is a very small partition of memory that is usually stored in the computer memory in random access memory (RAM) and captures all the keystrokes made on a keyboard.
Explanation:
Types of cloud storag?
Answer:
There r 3 types of data storage: object storage, file storage, and block storage. Each offers their own advantages and have their own use cases: Object Storage - Applications developed in the cloud often take advantage of object storage's vast scalablity and metadata characteristics.
7. What was the original purpose of the network that would become the internet?
A shopping and commerce
B. social media
C. digitizing books
D. military and academic communication
Answer:
D, Mulitary and Academic communicationj
Explanation: Just did this
Design and implement an application that reads a string from the user then determines and prints how many of eachlowercase vowel (a,e,i,o,and u) appear in the entire string.
Give short introduction of profession and make a list of its types.
CPU is also called RAM.
True or false.
Answer:
False
Explanation:
RAM works in conjunction with the central processing unit (CPU). If RAM is the temporary memory, you can think of the CPU as the brain of the computer. The CPU chip retrieves data from the RAM
FALSE ...
BECAUSE RAM IS A MEMORY AND CPU IS A UNIT OF COMPUTER THAT'S WHY IT IS FALSE
Philip took pictures with his smartphone and save them into his computer unless you delete the photos from the computer they will remain strong because the a computer has a
Answer:
Storage drive
Explanation:
1. Philip took pictures on a smartphone; given
2. Philip saved pictures from smartphone onto computer; given
Philip saved the pictures onto the computer. This means that the data was transferred from the phone's storage drive onto the computer's storage drive. Storage drives are strong/hard storage mediums. This means that the storage drive will not be deleted on each start-up, unlike weak/soft storage of random access memory (RAM).
HDD = Hard Disk Drive; strong/hard medium (non-volatile); a mechanical actuator etches data into magnetic platters.
SSD = Solid State Drive; strong/hard medium (non-volatile); NAND logic gates on electronically erasable programmable read-only memory (EEPROM) chips are controlled through a SSD controller
RAM = Random Access Memory; weak/soft medium (volatile); Double Data Rate (DDR) Synchronous Dynamic Random Access Memory modules (SDRAM) are controlled most commonly through a central processor unit (CPU) or through a dedicated memory chip (specialized tasks most commonly).
We know that February has either 28 or 29 days, but there is a year in the future, February will have 30 days
What exactly is this year?
Answer:
39 days is the offensive number
Explanation:
cuz calendar no have that numer
While shopping online, Tucker visits a website that looks outdated and has limited reviews. Which of the following strategies should he use to make sure the site is trustworthy?
Evaluate source credibility.
Fact check.
Use the website anyway.
Look for authenticity.
Answer:
Evaluate source credibility
Explanation:
cuz it is
Evaluate source credibility is the strategies should he use to make sure the site is trustworthy. Hence, option A is correct.
What is source credibility?documents released during the last ten years; research publications written by reputable and well-known writers; websites registered by governmental and educational institutions.
the extent to which consumers trust and believe what other people and organizations say about a specific offering or service According to the source credibility idea, when a source promotes itself as credible, people are more likely to be convinced.
The sources can be categorized into three groups: primary sources, secondary sources, and tertiary sources. There are numerous distinct sorts of sources. Since they provide you with direct evidence of the topic you are investigating, primary sources are frequently thought to be the most credible forms of support for your claim.
Thus, option A is correct.
For more information about source credibility, click here:
https://brainly.com/question/16530693
#SPJ2
1. The jargon for navigating on the Internet is called: A. surfing B. selecting C. clicking D. analyzing
Answer:
A. surfing
Explanation:
Browsing the internet is known as surfing the internet.