Answer:
I need the pic
Explanation:
c'est quoi le business intelligence ?
Sam will be using several chemicals for processing photographic negatives and prints. What must he do before he uses darkroom chemicals?
А.thicken them
В.concentrate them
C.mix them together
D.dilute them
Answer:
dilute them
Explanation:
List the invoice number and invoice date for each invoice that was created for James Gonzalez but that does not contain an invoice line for Wild Bird Food (25lb).
Answer:
Derive FROM invoice_transaction, invoice_details, item_details
and JOIN customer_details ON (invoice_transaction.CUST_ID = customer_details.CUST_ID AND customer_details.FIRST_NAME = 'James' AND customer_details.LAST_NAME = 'Gonzalez')
Explanation:
The following details will be there in the invoice
item_details rep_details invoice_details customer_details invoice_transactionDerive FROM invoice_transaction, invoice_details, item_details
and JOIN customer_details ON (invoice_transaction.CUST_ID = customer_details.CUST_ID AND customer_details.FIRST_NAME = 'James' AND customer_details.LAST_NAME = 'Gonzalez')
Log onto the Internet and use a search engine to find three Web sites that can be models for the new site. (At least one should sell sporting goods.) For each site you selected, list the URLs in your document. Tell why you chose them. Navigate to the three sites you choose and take notes about at least three things you like and don’t like about the sites.
Please see the following file for your required answer, thank you.
You defined a book data type.
class book:
title = ''
author = ''
pages = 0
Then, you created an instance of your book.
myBook = book()
Which statement assigns a value to the title?
myBook.book.title = myBook.title = 'To Kill a Mockingbird'
myBook.title('To Kill a Mockingbird')
myBook.title = 'To Kill a Mockingbird'
title = 'To Kill a Mockingbird'
myBook.title = 'To Kill a Mockingbird'
pog 2022
Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string. The output should include the input character and use the plural form, n's, if the number of times the characters appears is not exactly 1. g
Answer:
The program in Python is as follows:
string = input("String: ")
chr = input("Character: ")[0]
total_count = string.count(chr)
print(total_count,end=" ")
if total_count > 1:
print(chr+"'s")
else:
print(chr)
Explanation:
This gets the string from the user
string = input("String: ")
This gets the character from the user
chr = input("Character: ")[0]
This counts the occurrence of the character in the string
total_count = string.count(chr)
This prints the total count of characters
print(total_count,end=" ")
If the count is greater than 1
if total_count > 1:
Then it prints a plural form
print(chr+"'s")
If otherwise
else:
Then it prints a singular form
print(chr)
what is the linear cycle?
Answer:
a mixed media installation that delves into the nature of patterns, cycles and resonant frequencies
USB is _____ memory device. a. Temporary b. primary c. main d. secondary
Answer:
d secondary
Explanation:
Consider the following statements, taken from three different Jack programs. In each one of these programs, the identifier foo represents a different thing: let x = 5 + foo - a // program 1. Here foo represents a simple variable. let y = foo[12] - 3 // program 2. Here foo represents an array. let z = 2 * foo.val() // program 3. Here foo represents an object. Suppose that we are parsing any one of these statements (we don’t know which), and that the current token is foo. What kind of parser do we need to determine if we have a simple variable, an array reference or a method call?
Answer:
instanceOf
Explanation:
The parser that would be best suited for this scenario would be the instanceOf keyword, which is part of the javaParser class. This keyword allows you to check if a variable is a simple variable, an array reference or a method call through an IF statement. If it is equal to the compared type it will return a boolean value of True, otherwise it will return False. This keyword is used in Java and Javascript to check the type of the variables in scenarios such as this one.
Write a program that prompts a user to enter the number of elements to store in an array. Then prompt the user to enter all the numbers stored in the array.
The program should then cycle through the array to see if any numbers are divisible by 5. If any number is divisible by 5 print out which ones are and identify them in the output.
Answer:
Here's an example of a program that does what you've described:
# Get the number of elements in the array
n = int(input("Enter the number of elements to store in the array: "))
# Initialize the array
arr = []
# Get the elements of the array from the user
print("Enter the elements of the array:")
for i in range(n):
arr.append(int(input()))
# Print out which numbers are divisible by 5
print("The following numbers are divisible by 5:")
for i, x in enumerate(arr):
if x % 5 == 0:
print(f"{i}: {x}")
This program will first prompt the user to enter the number of elements in the array. It then initializes an empty array and prompts the user to enter each element of the array. Finally, it loops through the array and prints out the index and value of any element that is divisible by 5.
Explanation:
How can we tell the computer both what to put on
the web page, and how to organize it?
There is only 1 answer. Code. You have to code the web page if you want to put stuff on it/organize it.
We instruct the computer and tell how to organize the web-page through Coding.
Coding in essence, means the language that instruct computer and these are used to develop application, websites, software and so on.
In order to learn how to code, you must follow certain procedure:
Learning the Basics of HTML and Understanding Document Structure Learn about the CSS Selectors Knowing how to put together a CSS Stylesheet etc.In conclusion, instruction given to computer to organize a Web-page and communication with the system are made possible through coding.
Learn more here
brainly.com/question/19535447
in the situation above, what ict trend andy used to connect with his friends and relatives
The ICT trend that Andy can use to connect with his friends and relatives such that they can maintain face-to-face communication is video Conferencing.
What are ICT trends?ICT trends refer to those innovations that allow us to communicate and interact with people on a wide scale. There are different situations that would require a person to use ICT trends for interactions.
If Andy has family and friends abroad and wants to keep in touch with them, video conferencing would give him the desired effect.
Learn more about ICT trends here:
https://brainly.com/question/13724249
#SPJ1
I need help with this!!! PLEASE!!! Are headphones, radios, dishwashers, and remote controls considered Computers? Do any of them store data or process any data?
^_^
Answer:
yes they are some sort of computers
Answer:
yes they are
Example:Tv is a type of computer because they work like a computer but does different things
three transformations are available when you right-click a column header in the Query Editor window?
The three transformations are available when you right-click a column header in the Query Editor window are:
RemoveChange TypeDuplicate ColumnWhat is a query editor window?You may edit and run queries using the Query Window, a fully featured editing environment. A few of the features the editor offers are listed below: editing with drag and drop. Automatic syntax highlighting and brace matching
What purposes does the query editor serve?Power Query Editor is a component of Power BI Desktop as well. Connect to one or more data sources using Power Query Editor, then shape and manipulate the data to suit your needs before loading the model into Power BI Desktop.
How can you build a query editor?The query you want to open should be double-clicked. Then, right-click the selected area and select Design Query in Editor from the menu that appears.
To know more about query editor window visit:
https://brainly.com/question/27960642
#SPJ10
I understand that the question you are looking for is:
Which 3 transformations are available when you right click a column header in the Query Editor window?
What is this tool called?
*
Answer:
what tool?
Explanation:
Find the maximum value and minimum value in below mention code. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program:
Min miles: -10
Max miles: 40
Here's what I have so far:
import java.util.Scanner;
public class ArraysKeyValue {
public static void main (String [] args) {
final int NUM_ROWS = 2;
final int NUM_COLS = 2;
int [][] milesTracker = new int[NUM_ROWS][NUM_COLS];
int i = 0;
int j = 0;
int maxMiles = 0; // Assign with first element in milesTracker before loop
int minMiles = 0; // Assign with first element in milesTracker before loop
milesTracker[0][0] = -10;
milesTracker[0][1] = 20;
milesTracker[1][0] = 30;
milesTracker[1][1] = 40;
//edit from here
for(i = 0; i < NUM_ROWS; ++i){
for(j = 0; j < NUM_COLS; ++j){
if(milesTracker[i][j] > maxMiles){
maxMiles = milesTracker[i][j];
}
}
}
for(i = 0; i < NUM_ROWS; ++i){
for(j = 0; j < NUM_COLS; ++j){
if(milesTracker[i][j] < minMiles){
minMiles = milesTracker[i][j];
}
}
}
//edit to here
System.out.println("Min miles: " + minMiles);
System.out.println("Max miles: " + maxMiles);
}
Answer:
Code works perfectly
Explanation:
There is nothing wrong with your program as it runs perfectly and displays the expected results.
You may need to compile with another compiler if you're not getting the required results.
I've added the source code as an attachment (unedited)
Briefly describe three (3) obstacles to becoming
digitally literate and offer two (2) solutions to these
obstacles.
Obstacles to becoming digital literates and solutions include:
1. Poor network connectivity. Solutions are:
Use good network service providers.Find a good location with good internet facilities.2. Authenticating Information. Solutions are:
Ensure you do a thorough research before sharing any information on the internet.Learn to be critical with information.3. Excessive Use of the Internet. Solutions are:
Always have a target of what you want to achieve with the internet.Avoid unproductive activities.What is Digital Literacy?Digital literacy can be defined as the ability or skills needed to be able to access information and communicate via internet platforms, mobile devices, or social media.
Obstacles to becoming Digital Literates1. Poor Network Connectivity: In areas where network connectivity is poor, digital literacy becomes difficult to achieve as accessing the internet to source information would be impeded. The solutions to this are:
Use good network service providers.Find a good location with good internet facilities.2. Authenticating Information: The internet is awash with information, most of which may not be verifiable, when a user becomes misinformed, they tend to have biases which affects their critical thinking. Solutions to this are:
Ensure you do a thorough research before sharing any information on the internet.Learn to be critical with information.3. Excessive Use of the Internet: People tend to spend much time on the internet which at the end of the day becomes unproductive. Solutions to this include:
Always have a target of what you want to achieve with the internet.Avoid unproductive activities.Learn more about digital literacy on:
https://brainly.com/question/14242512
1. Which of the following terms refers to typical categories or groups of people?
( I have 14 more questions )
( 10 points per question answered )
Demographics is a term that refers to typical categories or groups of people
What is demographics?The term that refers to typical categories or groups of people is "demographics." Demographics refer to the statistical characteristics of a population, such as age, gender, race, income, education level, occupation, and location.
These characteristics can be used to group people into different categories or segments, such as "millennials," "baby boomers," "African American," "rural residents," "college graduates," etc. Understanding demographics is important for businesses, marketers, and policymakers, as it can help them to better target their products, services, or messages to specific groups of people.
Read more on demographics here: https://brainly.com/question/6623502
#SPJ1
#Program to calculate statistics from student test scores. midterm_scores = [99.5, 78.25, 76, 58.5, 100, 87.5, 91, 68, 100] final_scores = [55, 62, 100, 98.75, 80, 76.5, 85.25] #Combine the scores into a single list all_scores = midterm_scores + final_scores num_midterm_scores = len(midterm_scores) num_final_scores = len(final_scores) print(num_midterm_scores, 'students took the midterm.') print(num_final_scores, 'students took the final.') #Calculate the number of students that took the midterm but not the final dropped_students = num_midterm_scores - num_final_scores print(dropped_students, 'students must have dropped the class.') lowest_final = min(final_scores) highest_final = max(final_scores) print('\nFinal scores ranged from', lowest_final, 'to', highest_final) # Calculate the average midterm and final scores # Hint: Sum the midterm scores and divide by number of midterm takers # Repeat for the final
Answer:
try this
Explanation:
#Python program for calculating avg
#Given data
m1 = [99.5, 78.25, 76, 58.5, 100, 87.5, 91, 68, 100]
f1 = [55, 62, 100, 98.75, 80, 85.25]
#combine scores
all_scores = m1 + f1
#number of m1 and f1
num_midterm = len(m1)
num_final = len(f1)
#find avg of scores
avg_midterm = sum(m1) / num_midterm
avg_final = sum(f1) / num_final
#print the avg
print("Average of the m1 score:",round(avg_midterm,2))
print("Average of the f1 score:",round(avg_final,2))
Consider the following method that is intended to modify its parameter nameList by replacing all occurrences of name with newValue.
public void replace (ArrayList nameList, String name,
String newValue)
{
for (int j = 0; j < nameList.size(); j++)
{
if (/*expression */)
{
nameList.set(j, newValue);
}
}
}
Which of the following can be used to replace /* expression */ os that replace will work as intended?
a. nameList[j].equals(name)
b. nameList.get(j).equals(name)
c. nameList.get(j) == name
d. nameList[j] == name
e. nameList.remove(j)
Answer:
The answer is "Option b"
Explanation:
In this question, only the choice b is correct because, in the replace method, it holds the value of two string variables and an array list, in its parameter and defined a for loop, that counts array list value and uses if block to check an array list value equal to a string value. If the condition is true, it uses the set method to hold a value.
Write a non-stop multi-function program to do the following taks:
1. Function Program to find the future value given present value, interest rate and duration in years.
2. Function program to generate a list of prime numbers starting from 1 to n.
3. Function program to generate a list of palindrome numbers starting from 10 to n.
4. Quit the program
Write Code C programming
#include#include#includevoid findFutureValue(float presentValue, float interestRate, int durationInYears){
float futureValue = presentValue * pow((1 + interestRate), durationInYears);
printf("The future value is: %.2f", futureValue);
}
int isPrime(int num){
int i;
for(i = 2; i <= num/2; ++i){ if(num%i == 0){ return 0;
}
}
return 1;
}
void generatePrimes(int n){
int i, j;
printf("The prime numbers between 1 and %d are: ", n);
for(i = 2; i <= n; ++i){ if(isPrime(i)){ printf("%d ", i);
} }}
int isPalindrome(int num){ int temp, remainder, reverse = 0; temp = num;
while(temp != 0){ remainder = temp % 10;
reverse = reverse * 10 + remainder;
temp = temp / 10;
}
if(reverse == num){ return 1;
}
else{ return 0;
}}
void generatePalindromes(int n){
int i;
printf("The palindrome numbers between 10 and %d are: ", n);
for(i = 10; i <= n; ++i){
if(isPalindrome(i)){ printf("%d ", i);
} }}
int main(){
int choice, n;
float presentValue, interestRate;
int durationInYears;
do{ printf("\nEnter your choice:");
printf("\n1. Find future value given present value, interest rate and duration in years");
printf("\n2. Generate a list of prime numbers from 1 to n");
printf("\n3. Generate a list of palindrome numbers from 10 to n");
printf("\n4. Quit the program");
printf("\nChoice: ");
scanf("%d", &choice); switch(choice){
case 1: printf("\nEnter present value: ");
scanf("%f", &presentValue);
printf("\nEnter interest rate: ");
scanf("%f", &interestRate);
printf("\nEnter duration in years: ");
scanf("%d", &durationInYears);
findFutureValue(presentValue, interestRate, durationInYears);
break;
case 2: printf("\nEnter n: ");
scanf("%d", &n);
generatePrimes(n);
break;
case 3: printf("\nEnter n: ");
scanf("%d", &n);
generatePalindromes(n);
break;
case 4: printf("\nQuitting the program. Goodbye!");
break;
default: printf("\nInvalid choice. Please try again.");
}}while(choice != 4); return 0;
}
For more such questions on float, click on:
https://brainly.com/question/29720774
#SPJ8
The movie polar express was critically acclaimed due to the unbelievably lifelike movements of Tom Hanks character
Answer:
False
Explanation:
If you had a job that drill holes in the earth in search of water,what career cluster would you be working in?
The occupation of drilling wells to extract groundwater falls under the realm of Agriculture, Food & Natural Resources career cluster.
Why is this so?This area comprises multiple job roles associated with harvesting natural resources like soil scientists; geologists; hydrologists; conservationists; and environmental engineers.
Their expertise comes into effect when they study these resources to preserve them sustainably instead of depleting them blindly.
So one mustnote that their efforts shift towards formulating agriculture methods that don't harm these reserves or endanger wildlife.
Learn more about Careers:
https://brainly.com/question/30040900
#SPJ1
Editing is the process of cutting out the bad parts. True or false?
Answer:
true
Explanation:
your welcome
Answer:
ttrue ................
Assume you have been contracted by a university to develop a database system to keep track of student registration and accommodation records. The university courses are offered by faculties. Depending on the student’s IQ, there are no limitations to how many courses a student can enroll in. The faculties are not responsible for student accommodation. The university owns a number of hostels and each student is given a shared room key after enrollment. Each room has furniture attached to it. (a) Identify the main entity types for the project. (b) Identify the main relationship types and specify the multiplicity for each relationship. State any assumptions that you make about the data. (c) Using your answers for (a) and (b), draw a single ER diagram to represent the data requirements for the project
Answer:
Explanation:
(a) The main entity types for the project are:
StudentCourseFacultyHostelRoomFurniture(b) The main relationship types and their multiplicities are:
One student can enroll in many courses (1 to many)One course can be taken by many students (1 to many)One faculty can offer many courses (1 to many)One course can be offered by one faculty (1 to 1)One hostel can have many rooms (1 to many)One room can be assigned to many students (1 to many)One room has many pieces of furniture (1 to many)One piece of furniture can be in one room only (1 to 1)Assumptions:
A student can only be assigned to one room.Each piece of furniture can only be in one room.(c) Here's a diagram that represents the data requirements for the project:
** ATTACHED **
The diagram shows the relationships between the entities, with the multiplicities indicated by the symbols at the ends of the lines connecting them.
The main entity types for this project would be Faculty, Student, Course, Room, and Furniture.
(a) The main entity types for the project are:
- Faculty
- Student
- Course
- Room
- Key
- Furniture
(b) The main relationship types and their multiplicities are as follows:
- Faculty offers courses (1:N)
- Students enroll in courses (M:N)
- Students hold a room key (1:1)
- Rooms have attached furniture (1:N)
Assumptions:
- Each student can enroll in multiple courses.
- The faculty is not responsible for student accommodation.
- Each room has furniture attached to it.
(c) See below for the ER diagram:
ER Diagram
Hence, the main entity types for this project would be Faculty, Student, Course, Room, and Furniture.
Learn more about the database here:
https://brainly.com/question/29412324.
#SPJ2
What is the name of the computer program used for file and process management in the Linux system?
Answer:
I believe it's kernel.
Explanation:
Hoped I helped!
System testing – During this stage, the software design is realized as a set of programs units. Unit testing involves verifying that each unit meets its specificatio
System testing is a crucial stage where the software design is implemented as a collection of program units.
What is Unit testing?Unit testing plays a vital role during this phase as it focuses on validating each unit's compliance with its specifications. Unit testing entails testing individual units or components of the software to ensure their functionality, reliability, and correctness.
It involves executing test cases, evaluating inputs and outputs, and verifying if the units perform as expected. By conducting unit testing, developers can identify and rectify any defects or issues within individual units before integrating them into the larger system, promoting overall software quality.
Read more about System testing here:
https://brainly.com/question/29511803
#SPJ1
Procedurally a customer in any bank is required to get registered to a bank system whenever new application from the customer side is made. Such a registration would allow the customer to get service whenever the need arises. Abebe is customer of Bank X and it has been more than 6 months since Abebe has been registered, when he went to the one of the branches of Bank X after 6 months, the teller told Abebe that he needs to get registered to the system so that he could get the required service. However, further investigation of the problem revealed that Abebe is a registered customer of the bank but when data was captured, data about Abebe personal information was entered in a wrong manner. That’s why the Teller failed to provide the service. Based on the narration which specific information characteristics did suffer?
Based on the narration, the specific information characteristic that suffered is data accuracy. Data accuracy refers to the correctness and precision of the information captured and stored in a system. In this scenario, when Abebe went to the branch of Bank X after 6 months, the teller was unable to provide the required service because the data about Abebe's personal information was entered in a wrong manner during the registration process.
The incorrect entry of Abebe's personal information led to a discrepancy between the actual information and the recorded data in the bank's system. As a result, the teller was unable to retrieve accurate and up-to-date information about Abebe, leading to the mistaken assumption that he needed to get registered again.
Data accuracy is crucial in banking systems to ensure that customer information is correctly recorded and maintained. It helps in providing efficient and effective services, preventing errors, and ensuring the smooth functioning of customer interactions. In this case, the inaccurate data entry caused confusion and hindered the teller's ability to provide the required service to Abebe.
For more such questions on accuracy, click on:
https://brainly.com/question/24842282
#SPJ8
Case Project 1-2: Upgrading to Windows 10: Gigantic Life Insurance has 4,000 users spread over five locations in North America. They have called you as a consultant to discuss different options for deploying Windows 10 to the desktops in their organization.
Most of the existing desktop computers are a mix of Windows 7 Pro and Windows 8.1 Pro, but one office is running Windows 8 Enterprise. They have System Center Configuration Manager to control the deployment process automatically. They want to begin distributing applications by using App-V.
Can you identify any issues that need to be resolved before the project begins? Which edition of Windows 10 should they use? Which type of activation should they use?
The best approach for deploying Windows to the desktops at Gigantic Life Insurance will depend on several factors, including the number of desktops, existing hardware.
How much storage is recommended for Windows?While 256GB of storage space is appropriate for many people, gaming enthusiasts will need a lot more. Most experts recommend that you get a minimum of 512GB if you're going to load a few games, but you'll need 1TB of storage if you're planning to load several AAA games.
What are 3 types of installation methods for Windows 10?
The three most common installation methods of Windows are DVD Boot installation, Distribution share installation , image based installation
To know more about Windows visit:-
https://brainly.com/question/28847407
#SPJ1
how i want to be good in coding for subject c programming? anyone has a suggestion?
Answer:
Get more details about Standard Library Functions in C.
Use logical variable names to avoid any confusion.
Don't forget to check a complete guide for Variables in C.
Explore how Escape Sequence in C make your coding better.