Answer:
Geo search streams
Explanation:
The " Geo search streams " should be used in Twitter to get involved in conversations happening within a specific geographical areas.
The Geo search streams are tools that can be used to filter out the content or conversations according to the geological locations i.e the filter to choose the specific region or the regions nearby.
Thus, it will help to find the conversations that are relevant to the the company in the specific geographical area.
Answer:
* The code is in Python
def joinStrings():
join = ""
while True:
str = input("Enter a word or Q to stop: ")
if str == "Q":
break
else:
join = join + " " + str
return join
print(joinStrings())
Explanation:
Create a function called joinStrings
Initialize join variable to hold the strings that will be combined
Create a while loop that stops when user enters "Q". Otherwise, ask the user for a new string and join it to the join variable with a space
When the loop is done, return the join
Call the function and print the result
Answer:
The answer to this question is given below in the explanation section.
Explanation:
In this question the given options are:
- rule type
- function name
- condition
- cell reference
- argument
- format
<u>The correct options to this question are:</u>
1. rule type
3. condition
6. format
These are the areas that can be used to fill out in the New Formatting Rule dialog box. Other options are not correct becuase these are not used to fill out new formatting rule dialog box.
Def countUppercase(s):
count=0
for i in s:
if i.isupper():
count+=1
s=s.replace(i, "")
else:
s=s.replace(i, "")
countUppercase(s)
return count
element=input("Enter the string: ")
string=countUppercase(element)
print("\nNumber of upper letter in the string: ",string)