Answer:
def ViewRatings(str, rating):
for book in books:
if r >= rating:
print(book)
ViewRatings("emma", 3)
Explanation:
* The code is in Python.
Since the are missing parts in your question. I am assuming there is a books list and there is a rating, r for each book.
- Create a function called ViewRatings that takes two parameters
- Initialize a for loop that iterates through each book in the books list
- For each book, check its rating with given rating. If the rating of the book is greater than or equal to given rating, print the book
- Call the function
communication is a cure-all?
Yes, our shared social experiences lead us to think communication is a cure-all.
This is because, helps the individual in shaping their mental and emotional health for the rest of their life.
With shared social experiences , there would be communication among people and it serves as a cure-all.
Therefore, shared social experiences lead us to think communication is a cure-all.
Learn more about social experiences at:
Answer:
Yes
Explanation:
Shared social illustrations have always shown that any problem of any kind can be sorted by communication.
Eg : Whenever societies face any problem - eg recession, the competent people related to that area of problem (representing different interests of various groups also) sit & discuss (ie communicate in detail) about it.
These communications have seen to be solution to all problems world has faced.
B. outrageous and crazy.
C. stern and authoritative.
D. dark and serious.
Answer:
Search Object
Explanation:
Qlikview is a form of computer software application that is basically used in analytics explanation. In order to search for information anywhere in the document inside the Qlikview application, a form of sheet object referred to as SEARCH OBJECT is utilized.
Hence, in this case, In QlikView, SEARCH OBJECT is used to search for information anywhere in the document.
They make it easier for computers to connect to one another. WANs provide more options for communication than LAN networks, which are more constrained and limited in scope.
A local area network, or LAN, is a network of computers created within a restricted area, like a home, business, or group of buildings. On the other hand, a wide-area network (WAN) is a computer network that spans a large geographic area. Users can transport data more quickly across LANs than they can via WANs, which have a significantly slower data transmission rate.
LANs are straightforward networks that are used to link computers and other gadgets in a constrained space, such as a home, business, or campus. WLANs are entirely wireless in comparison to traditional LANs, which connect the devices using Ethernet cables. WLANs
To know more about LAN visit:-
#SPJ1
hey hi Mark hi mark
the console output is:
hey 1
hi 2
Mark 1
hi 2
mark 1
Answer:
JavaScript code is given below
Explanation:
function calcWordFrequencies() {
var words = prompt("Enter the sentence below").split(" ");
var unique_words = [], freqencies = [], count = 0;
for (var i = 0; i < words.length; i++) {
var found = false;
for (var j = 0; j < count; j++) {
if (words[i] === unique_words[j]) {
freqencies[j] = freqencies[j] + 1;
found = true;
}
}
if (!found) {
unique_words[count] = words[i];
freqencies[count] = 1;
count++;
}
}
for (var i = 0; i < words.length; i++) {
var result = 0;
for (var j = 0; j < count; j++) {
if (words[i] === unique_words[j]) {
result = freqencies[j];
break;
}
}
console.log(words[i] + " " + result);
}
}
b. 2
c. 3
d. 4
Answer:
b. 2
Explanation: