Explanation:
no linda is the core member not rhe project
Answer:
Project Manager
Explanation:
plato-edmentum
Assume that "a" is an array of integers. What, if anything, is wrong with this Java statement:
a[a.length] = 10;
The problem with the given Java statement is that the index it wants to access is out of bounds which means that it is an index that is out of bounds
What is wrong with the code snippet?The statement attempts to get an index that is greater than the array's length as Java arrays start at 0, which cause valid indices range from 0 to the length minus 1.
This makes the call of "a.length" causes an "ArrayIndexOutOfBoundsException".
Read more about Java here:
https://brainly.com/question/31394928
#SPJ1
The Yuba College Library would like a program to calculate patron fines for overdue books. Fines are determined as follows: Paperbacks Regular $.20 / day with a maximum fine of $8.00 Best-Sellers $.50 / day with a maximum fine of $15.00 Magazines $.25 / day with a maximum fine of $5.00 Hardcover Books $.30 / day with a maximum fine of $23.00 The program must prompt the user to enter the following information at the keyboard. Data entry MUST be validated as required. Fines must also be calculated using a function(s). A class object should contain the methods (functions) to determine library fine. Provide a UML and description of disign.Patron’s library card number (a 4-digit number) - ValidatePatron’s namePatron’s addressType of book - ValidateNumber of days over due - ValidateA sample interactive session is shown below:Enter the patron’s card number: 2089Enter the patron’s name: Erica RobinsonEnter the patron’s address: 2234 RoadWay Trl.Enter the book’s title: The Trail Less Traveled.1. Paperback - Regular2. Paperback - Bestseller3. Magazine4. Hardcover bookEnter number corresponding to type of book (1 – 4): 4Enter the number of days overdue: 11Do you wish to perform another transaction?
Answer:
Explanation:
The following Python code creates all of the necessary functions in order to request and validate all of the inputs from the user. Once everything is entered and validated it calculates the total fee and outputs it to the user. Also calls the entire class at the end using a test variable...
class Customer:
library_card = 0
patrons_name = ""
patrons_address = ""
type_of_book = ""
book_title = ""
days_overdue = 0
fee = 0.0
book_list = ['paperback regular', 'paperback best seller', 'magazine', 'hardcover']
def __init__(self):
self.library_card = self.get_library_card()
self.patrons_address = input("Patron's Address: ")
self.book_title = input("Book Title: ")
self.type_of_book = self.get_type_of_book()
self.days_overdue = float(self.get_days_overdue())
self.calculate_total()
print("Your total Fee is: " + str(self.fee))
def get_library_card(self):
library_card = int(input("Enter 4-digit library card number: "))
if (type(library_card) == type(0)) and (len(str(library_card)) == 4):
return library_card
else:
print("Invalid Card number:")
self.get_library_card()
def get_type_of_book(self):
type_of_book = input("Type of Book 1-4: ")
if (int(type_of_book) > 0) and (int(type_of_book) <= 4):
return int(type_of_book)
else:
print("Invalid Type")
self.get_type_of_book()
def get_days_overdue(self):
days_overdue = input("Number of Days Overdue: ")
if int(days_overdue) >= 0:
return days_overdue
else:
print("Invalid number of days")
self.get_days_overdue()
def calculate_total(self):
if self.type_of_book == 1:
self.fee = 0.20 * self.days_overdue
if self.fee > 8:
self.fee = 8
elif self.type_of_book == 2:
self.fee = 0.50 * self.days_overdue
if self.fee > 15:
self.fee = 15
elif self.type_of_book == 3:
self.fee = 0.25 * self.days_overdue
if self.fee > 5:
self.fee = 5
else:
self.fee = 0.30 * self.days_overdue
if self.fee > 23:
self.fee = 23
test = Customer()
Create a method called ReadString that will ask the user for a string. Instead of returning the value like in ReadInteger, you should use pass by reference to get the string back to the caller.
Answer:
public void ReadString (string inputString, ref string word)
{
Console.WriteLine(inputString);
word = Console.ReadLine();
}
Explanation:
The C# function above is defined as a class method that accepts two arguments, the inputString and the word. The first block code outputs the string message of the first string argument, 'inputString', then the second block reads the input and assigns it to the second argument 'word'. The 'ref' keyword is used as a return statement to return the word variable.
In the command b=0:2:10; 0 denotes
Answer:
Hour
Explanation:
_________ is designed to support the most common workflows and tasks to close a client's monthly books. It consists of the following three workflow tabs:
How have advancements in technology and social media impacted communication and relationships in our society?
Answer:The advancement of technology has changed how people communicate, giving us brand-new options such as text messaging, email, and chat rooms,
Explanation:
Answer: the answer will be they allow faster and more efficient communication and can help build relationships.
Explanation:
can someone help me with this
Note that the output of the above program is: "TWO". The code calculates the remainder of 6 divided by 2 and assigns it to the variable x. If x is equal to 1, "ONE" is printed, otherwise, "TWO" is printed. In this case, the output will be "TWO".
What is a variable in programming?A variable in programming is a value that may vary depending on the conditions or information provided to the program. A program is typically made up of instructions that tell the computer what to perform and data that the program utilizes while executing.
In a program, when you define a variable, you describe its type, which might be integral, floating point, decimal, boolean, or nullable. The type instructs the compiler on how to handle the variable and detect type mistakes.
Learn more about Programming:
https://brainly.com/question/11023419
#SPJ1
Which of the following is true of horror films like Insidious and The Conjuring?
Answer:
Those movies have inapropirate parts and it is really scary. Also, those movies are not meant for little kids.
Explanation:
......................... and ....................... are two ways to define the text in Inkscape.
Answer:
There are two ways to add text to an Inkscape drawing. The first is as regular text. In this case, as text is typed, the text box grows to accommodate the text. Line breaks must be manually added.
Explanation:
Complete the sentence about readability.
Color
should have a contrast ratio of four to one or lower
Color should have a contrast ratio of four to one or lower. The lowest contrast ratio should be 3:1.
What is a 4 5 1 contrast ratio?When one has a "normal" sized text or images of text, the required minimum contrast ratio is said to be 4:5:1. A large text or images of large text is known to have the minimum contrast ratio is 3:1.
Conclusively, the definition of color ratio is known to be a volumetric ratio that consist of all dark minerals to light in the case of igneous rocks.
Learn more about Color from
https://brainly.com/question/911645
Answer:
may be perceived differently in different countries
Explanation:
Edge
Which microsoft tool can be used to review a systems security configuration recommended?
Answer:The Security Compliance Toolkit (SCT)
Explanation:
It allows security administrators to download, analyze, test, edit, and store Microsoft-recommended security configuration baselines for Windows and other Microsoft products.
evaluate the following scenario and determine which principle of design is being described Caleb created an image that utilized a repeating sequence of shapes throughout his design
Answer:
The principle of design that is being described in the given scenario is "Repetition."
Explanation:
numPeople is read from input as the size of the vector. Then, numPeople elements are read from input into the vector runningListings. Use a loop to access each element in the vector and if the element is equal to 3, output the element followed by a newline.
Ex: If the input is 7 193 3 18 116 3 3 79, then the output is:
3
3
3
Using a loop to access each element in the vector and if the element is equal to 3, is in explanation part.
Here's the Python code to implement the given task:
```
numPeople = int(input())
runningListings = []
for i in range(numPeople):
runningListings.append(int(input()))
for listing in runningListings:
if listing == 3:
print(listing)
```
Here's how the code works:
The first input specifies the size of the vector, which is stored in the variable `numPeople`.A `for` loop is used to read `numPeople` elements from input and store them in the vector `runningListings`.Another `for` loop is used to iterate through each element in `runningListings`.For each element, if it is equal to 3, it is printed to the console followed by a newline.Thus, this can be the program for the given scenario.
For more details regarding programming, visit:
https://brainly.com/question/14368396
#SPJ1
Make sure your animal_list.py program prints the following things, in this order:
The list of animals 1.0
The number of animals in the list 1.0
The number of dogs in the list 1.0
The list reversed 1.0
The list sorted alphabetically 1.0
The list of animals with “bear” added to the end 1.0
The list of animals with “lion” added at the beginning 1.0
The list of animals after “elephant” is removed 1.0
The bear being removed, and the list of animals with "bear" removed 1.0
The lion being removed, and the list of animals with "lion" removed
Need the code promise brainliest plus 100 points
Answer:#Animal List animals = ["monkey","dog","cat","elephant","armadillo"]print("These are the animals in the:\n",animals)print("The number of animals in the list:\n", len(animals))print("The number of dogs in the list:\n",animals.count("dog"))animals.reverse()print("The list reversed:\n",animals)animals.sort()print("Here's the list sorted alphabetically:\n",animals)animals.append("bear")print("The new list of animals:\n",animals)
Explanation:
What formatting changes do spreadsheet applications permit in the rows and columns of a spreadsheet?
Row and Column Formatting Options
Formatting rows and columns is similar to cell formatting. In an OpenOffice Calc spreadsheet, you can format data entered into rows and columns with the help of the Rows and Columns options. You can insert rows and columns into, or delete rows and columns from, a spreadsheet. Use the Insert or Delete rows and columns option on the Insert tab. Alternatively, select the row or column where you want new rows or columns to appear, right-click, and select Insert Only Row or Only Column options.
You can hide or show rows and columns in a spreadsheet. Use the Hide or Show option on the Format tab. For example, to hide a row, first select the row, then choose the Insert tab, then select the Row option, and then select Hide. Alternatively, you can select the row or columns, right-click, and select the Hide or Show option.
You can adjust the height of rows and width of columns. Select Row and then select the Height option on the Format tab. Similarly, select Column, then select the Width option on the Format tab. Alternatively, you can hold the mouse on the row and column divider, and drag the double arrow to the position. You can also use the AutoFit option on the Table tab to resize rows and columns.
Formatting rows and columns in a spreadsheet is similar to cell formatting. In OpenOffice Calc, users can insert or delete rows and columns, hide or show them, and adjust the height and width of the rows and columns.
What is spreadsheet?A spreadsheet is an electronic document that stores data in a tabular format and is used to perform calculations and analysis. It is a type of software program designed to assist with data entry, calculations, and other analysis tasks. Spreadsheets often contain formulas and functions that allow users to quickly and accurately calculate values based on the data they enter. Spreadsheets also provide users with the ability to present data in an organized and visually appealing way. Spreadsheets are an essential tool for businesses, schools, and other organizations to help them make decisions, track progress, and manage resources.
Users can access these options from the Insert, Format, and Table tabs. Alternatively, they can select the row or column they want to format, right-click, and select the relevant option. Additionally, users can hold the mouse on the row or column divider and drag the double arrow to the desired position. The AutoFit option on the Table tab can also be used to resize rows and columns.
To learn more about spreadsheet
https://brainly.com/question/30039670
#SPJ1
PERGUNTA 1
Um pesquisador deve escolher o seu método de pesquisa:
a. Pelas facilidades em realizar a pesquisa.
b. Pelas experiências de outros pesquisadores.
c. Pelas especificidades do objeto de pesquisa.
d. Pelas regras dos manuais de pesquisa.
e. Por aquilo que for determinado pela instituição a qual está vinculado.
Answer:
c. Pelas especificidades do objeto de pesquisa.
Explanation:
É o que eu acho e quem achar diferente ta errado
Select all examples of active listening.
Interrupt if you do not agree
Give the speaker your full attention
Be aware of how your opinions could influence what you hear
Notice the speaker's emotions
Ask questions to clarify
Answer:
Give the speaker your full attention
Be aware of how your opinions could influence what you hear
Notice the speaker's emotions
Ask questions to clarify
To launch the mail merge help dialog box, what option should you select using the Microsoft word office assistant?
Answer:
Complete setup.
Explanation:
Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.
A Mail Merge is a Microsoft Word feature that avails end users the ability to import data from other Microsoft applications such as Microsoft Access and Excel. Thus, an end user can use Mail Merge to create multiple documents (personalized letters and e-mails) for each entry in the list at once and send to all individuals in a database query or table.
Hence, Mail Merge is a Microsoft Word feature that avails users the ability to insert fields from a Microsoft Access database into multiple copies of a Word document.
Some of the options available in the Write & Insert Fields group of Mail Merge are;
I. Highlight Merge Fields.
II. Address Block.
III. Greeting Line.
Generally, when a user wants to launch the Mail Merge help dialog box, the option he or she should select using the Microsoft word office assistant is complete setup.
Additionally, the sequential steps of what occurs during the mail merge process are;
1. You should create the main document
2. Next, you connect to a data source
3. You should highlight or specify which records to include in the mail.
4. You should insert merge fields.
5. Lastly, preview, print, or email the document.
2 point) Express this problem formally with input and output conditions.2.(2 points) Describe a simple algorithm to compute the upper median. How manyoperations does it take asymptotically in the worst case?3.(7 points) Show how you can use the (upper) medians of the two lists to reduce thisproblem to its subproblems. State a precise self-reduction for your problem.4. (7 points) State a recursive algorithm that solves the problem based on your reduction.5.(2 point) State a tight asymptotic bound on the number of operations used by youralgorithm in the worst case.
Answer:
See attached images
The ability of a build system for handling a rise in the amount of code that it blends and analyzes is called ___________.
Answer:
Build integration
Explanation:
The ability of a build System to handle the rise in amount of code it blends/analyses is known as build integration.
It is the overall capacity of the build System to handle the growing amount of code. It is also a process where the system tries to handle potentials to accommodate growth. This is a very important condition.
A poll predicted that 68% of voters plan to vote for the current mayor in the upcoming election. If the poll had a standard deviation of 4%, what is the margin for error?
how can you stretch or skew an object in paint
Answer:
Press Ctrl + Shift + Z (Rotate/Zoom). Rotate the roller-ball control about a bit. The outer ring rotates the layer.
Explanation:
How is a collapsed qubit similar to a bit?
The collapsed qubit similar to a bit as it has a single value of either 0 or 1.
What is the difference between a qubit and a bit?Note that a classical computer is one that has a memory composed of bits that is, each bit is known to hold a one or a zero.
Note also that a qubits (quantum bits) is one that can hold a one, a zero or can also superposition the both.
Hence, The collapsed qubit similar to a bit as it has a single value of either 0 or 1.
See full question below
How is a collapsed qubit similar to a bit? It can stay in a state of superposition. It is still dependent on its counterparts. It has a single value of either 0 or 1. It has numerous potential paths to follow.
Learn more about qubit from
https://brainly.com/question/24196479
#SPJ1
what is mobile computing
Explanation:
Mobile computing is human–computer interaction in which a computer is expected to be transported during normal usage, which allows for the transmission of data, voice, and video. Mobile computing involves mobile communication, mobile hardware, and mobile software. ... Hardware includes mobile devices or device components.
Question: what is mobile computing
Answer:
Mobile computing is human–computer interaction in which a computer is expected to be transported during normal usage, which allows for the transmission of data, voice, and video. Mobile computing involves mobile communication, mobile hardware, and mobile software. Communication issues include ad hoc networks and infrastructure networks as well as communication properties, protocols, data formats, and concrete technologies. Hardware includes mobile devices or device components. Mobile software deals with the characteristics and requirements of mobile applications.Explanation:
Hope it helps
#CarryOnLearning
Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.
Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.
Writting the code:Assume the variable s is a String
and index is an int
an if-else statement that assigns 100 to index
if the value of s would come between "mortgage" and "mortuary" in the dictionary
Otherwise, assign 0 to index
is
if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)
{
index = 100;
}
else
{
index = 0;
}
See more about JAVA at brainly.com/question/12975450
#SPJ1
examining the entries in bus, is the bid unique for each record (i.e. each row of data)? your code should compute the answer, i.e. don't just hard code true or false. hint: use pd.value counts() or pd.unique() to determine if the bid series has any duplicates.
A key component of the machine learning pipeline is data exploration. We need to know what the contents of our data are before deciding which model to train and how many.
Value counts is one of a number of helpful functions provided by the Pandas library specifically for this use. In a pandas dataframe, this method returns the number of unique elements. Nevertheless, we frequently wind up utilizing value counts with the default settings. I'll thus demonstrate how to do more by changing the default parameters in this little essay. A Series containing the counts of distinct values is the result of the value counts() method. This means that this method returns the number of unique entries for each column in a data frame.
Learn more about data here-
https://brainly.com/question/17355880
#SPJ4
Discuss the advantages of DBMS over file-based information systems
Answer:
The primary benefits of DBMS over all the file processing parameters are described elsewhere here.
Explanation:
Flexibility:
So even though initiatives, as well as data, seem to be autonomous, projects don't have to be reconfigured because once totally unconnected input parameters were also incorporated or otherwise deactivated or removed from either the directory and whenever storage devices modifications are introduced.Less storage:
Hypothetically, only certain instances of data elements now have to be collected once and only, eradicating the availability of redundant information.2. The FIRST step in cooling a large roast before refrigerating it is to?
Answer: Yes we can do this
Explanation: If it is too big to put in the frig by itself, carve some slices for lunches and move it to smaller storage containers. Make sure it is cool not hot or warm, then make sure it is wrapped with plastic wrap or tin foil then once you have it at the proper size put it in the frig or freezer for another great meal.
if we add 100 + 111 using a full adder, what is your output?
A digital circuit that performs addition is called a full adder. Hardware implements full adders using logic gates. Three one-bit binary values, two operands, and a carry bit are added using a complete adder. Two numbers are output by the adder: a sum and a carry bit. 100 has the binary value, 1100100. Is your output.
What full adder calculate output?When you add 1 and 1, something similar occurs; the outcome is always 2, but because 2 is expressed as 10 in binary, we receive a digit 0 and a carry of 1 as a result of adding 1 + 1 in binary.
Therefore, 100 has the binary value, 1100100. As we all know, we must divide any number from the decimal system by two and record the residual in order to convert it to binary.
Learn more about full adder here:
https://brainly.com/question/15865393
#SPJ1
write a program using one-dimensional array that get the smallest input value from the given array. Array size is 10.
Here is an example of a program that uses a one-dimensional array to find the smallest input value from an array of size 10 in Python:
def find_smallest_value(arr):
smallest = arr[0] #initialize the first element of array as the smallest
for i in range(1, len(arr)): # start the loop from 1 as we already have the first element as the smallest
if arr[i] < smallest:
smallest = arr[i]
return smallest
arr = [5, 2, 8, 9, 1, 3, 4, 6, 7, 10]
print("The smallest value in the array is:", find_smallest_value(arr))
This program defines a function find_smallest_value() that takes an array as an input. Inside the function, it initializes the first element of the array as the smallest. Then it uses a for loop to iterate through the array, starting from the second element. For each element, it checks if the current element is smaller than the current smallest value. If it is, it updates the smallest value. After the loop is finished, it returns the smallest value. In the last line, we call the function and pass the array and print the result.
You can change the elements of the array and test it again to see the result.