Broker Ray is closely acquainted with the Subdivision Heights neighborhood of his town. Over the year, Ray has made it a practice to contact homeowners in person and also to send them quarterly mailings. This method of finding listings is known as:

Answers

Answer 1
Answer: No multiple choice?

Related Questions

Anna is a high school senior who plans to go to UT in the fall. Her parents have saved up some moneyfor her college education, but it will not be enough to pay for her tuition all four years. She does notbelieve she will qualify for need based assistance. What advice would you give Anna?
. A file allocation table (FAT) is used to keep track of the portions assigned to a file. Select one: True False
The program that you create for this exercise will begin by reading the cost of a meal ordered at a restaurant from the user. Then your program will compute the tax and tip for the meal. Use your local tax rate when computing the amount of tax owing. Compute the tip as 18 percent of the meal amount (without the tax). The output from your program should include the tax amount, the tip amount, and the grand total for the meal including both the tax and the tip. Format the output so that all of the values are displayed using two decimal places.
What types of messages flow across an SDN controller’s northbound and southbound APIs? Who is the recipient of these messages sent from the controller across the southbound interface, and who sends messages to the controller across the northbound interface?
The Clean Air Act Amendments of 1990 prohibit service-related releases of all ____________. A) GasB) OzoneC) MercuryD) Refrigerants

Quicksort reaches the worst-case time complexity when:Partition is not implemented in place
Picking the largest one of input or partitioned data as pivot value
Median of input or partitioned data is expensive to calculate
Data is sorted already and always pick the median as pivot
Choose the incorrect statement:
When the median is always picked as pivot in input/partitioned data, then quicksort achieves the best-case time complexity.
Mergesort has O(N(log(N)) time complexity for its worst case, average case and best case
Insertionsort reaches its best-case time complexity O(N log(N)) when the input data is pre-sorted
Quicksort is practically fast and frequently used sorting algorithm.
Choose the incorrect statement:
In the lower bound analysis by using decision tree, each branch uses one comparison to narrow down possible cases
In the lower bound analysis by using decision tree, he number of required comparisons can be represented by height of decision tree
A decision tree to sort N elements must have N^2 leaves
O(N log(N)) lower bound means that comparison-based algorithm cannot achieve a time complexity better than O(N log(N))
Choose the incorrect statement regarding time complexity of union-find operation:
Inverse Ackermann function does not depend on N and is a constant factor.
When we use arbitrary union and simple find for union-find operation, the worst-case time complexity is O(MN) for a sequence of M operations and N elements
Union-by-size and Union-by-rank both improve the time complexity to O(M log(N)) for a sequence of M operations and N elements
To finish the entire equivalence class computation algorithm, we need to go over each pair of elements, so if we use union-by-rank with path compression for find operation, then the overall time complexity is O(N^2 log*N), where log*N denotes the inverse Ackermann function.
Choose the incorrect statement regarding Dijstraâs algorithm
Dijstraâs algorithm is a greedy algorithm
Dijstraâs algorithm requires to dynamically update distance/costs/weights of paths.
To begin with, Dijstraâs algorithm initializes all distance as INF
Dijstraâs algorithm can be implemented by heaps, leading to O(|E|+|V| log(|V|)) time complexity, where, particularly, log(|V|) is due to "insert" operation in heaps.

Answers

i) Picking the largest one of input or partitioned data as pivot value.

ii) Insertion sort reaches its best-case time complexity O(N log(N)) when the input data is pre-sorted

iii) A decision tree to sort N elements must have N^2 leaves

iv) Inverse Ackermann function does not depend on N and is a constant factor.

v) Dijstraâs algorithm requires to dynamically update distance/costs/weights of paths.

What is quicksort?

  • Quicksort is an efficient sorting algorithm used to sort items in an array. It is an in-place algorithm, meaning it does not require any additional memory for sorting.
  • The algorithm works by choosing a pivot element from the array and partitioning the array based on the pivot.
  • All elements that are less than the pivot are placed before it, and all elements that are greater than the pivot are placed after it. This is repeated until the array is completely sorted.
  • Quicksort is considered one of the fastest sorting algorithms and is used in many applications, such as sorting data in databases.
  • It is also used in many programming languages, including C, Java, and Python.
  • Quicksort is an example of a divide-and-conquer algorithm, as it splits the array into smaller pieces which are easier to sort.

To learn more about quicksort refer to:

brainly.com/question/29981648

#SPJ4

Who do you think larger or smaller clients will benefit most from MasterCard’s analytics tools? Why?

Answers

Answer:The key to analytics success is not about searching for answers, ... If you are trying to determine where to find new customers, there is a recipe for how to do that, and it ... As we work with small businesses, we help them answer their big ... Moving forward, there is going to be a lot more data of varying types.

Explanation:

(Display nonduplicate words in ascending order)Write a program that prompts the user to enter a text in one line and displays all the nonduplicate words in ascending order.
Sample Run
Enter a text: Good morning Good afternoon Good evening
Good afternoon evening morning

Answers

The programreturns uniqueelements in the string passed in with no duplicates. The programis written in python 3 thus :

text = input('Enter text : ')

#promptsuserto enterstring inputs

split_text = text.split()

#splitinputtedtext basedonwhitespace

unique = set(split_text)

#usingtheset function,takeonlyuniqueelementsin thestring

combine = ' '.join(unique)

#usethejoinfunctiontocombinethestringstoformasingle lengthstring.

print(combine)

Asamplerunoftheprogramisattached

Learn more : brainly.com/question/15086326

Answer:

The program to this question as follows:

Program:  

value = input("Input text value: ") #defining variable value and input value by user

word = value.split() #defining variable word that split value

sort_word = sorted(word) #defining variable using sorted function

unique_word = [] #defining list

for word in sort_word: #loop for matching same value

   if word not in unique_word: #checking value

       unique_word.append(word) #arrange value using append function

print(' '.join(unique_word)) #print value

Output:

Input text value: Good morning Good afternoon Good evening

Good afternoon evening morning  

Explanation:

In the above python code, a value variable is defined that uses input function to input value from the user end, and the word variable is declared, which uses the split method, which split all string values and defines the sort_word method that sorted value in ascending order.

  • Then an empty list "unique_word" is defined, which uses the for loop and inside the loop, a conditional statement is used.
  • In if block, it matches all value is unique if this is condition is true it will arrange all values and uses the print function to print all value.  

Given the following code segment, what is output after "result = "? int x = 1, y = 2, z = 3; cout << "result = " << (x < y ? y : x) << endl;a. 1
b. 2
c. 3
d. 4

Answers

Answer:

b. 2

Explanation:

What makes a computer a computer?​

Answers

Answer:

A computer is an electronic device that manipulates information, or data. It has the ability to store, retrieve, and process data. You may already know that you can use a computer to type documents, send email, play games, and browse the Web

Explanation:

Follow me..............

central processor unit (CPU)

memory (ram)

input (mouse keyboard)

output (monitor or printer)

browse the web

ability to store retrieve and process data

I don't rlly know much about technology but I hope this helps

Write the prototype for a function named showSeatingChart that will accept the following two-dimensional array as an argument. const int ROWS = 20; const int COLS = 40; string seatingChart[ROWS][COLS]; Note: The two-dimensional array argument must be a const string array. You must include a second integer argument (scalar, not an array).

Answers

Answer:

See explaination

Explanation:

void showSeatingChart(string seatingChart[20][40], const int ROWS, const int COLS){

for(int i = 0;i<ROWS;i++){

for(int j = 0;j<COLS;j++){

cout<<seatingChart[i][j]<<" ";

}

cout<<endl;

}

}