The collaborative team responsible for creating a film is in the process of creating advertisements for it and of figuring out how to generate excitement about the film. Which of the five phases of filmmaking are they most likely in?

Answers

Answer 1

Answer:

Distribution.

Explanation:

Filmmaking can be defined as the art or process of directing and producing a movie for viewing in cinemas or television. The process of making a movie comprises of five (5) distinct phases and these are;

1. Development.

2. Pre-production.

3. Production.

4. Post-production.

5. Distribution.

Distribution refers to the last phase of filmmaking and it is the stage where the collaborative team considers a return on investment by creating advertisements in order to have a wider outreach or audience.

In this scenario, the collaborative team responsible for creating a film is in the process of creating advertisements for it and of figuring out how to generate excitement about the film.

Hence, they are likely to be in the distribution phase in relation to the five phases of filmmaking.

Answer 2

Answer:

C: distribution

Explanation:

edg2021

The Collaborative Team Responsible For Creating A Film Is In The Process Of Creating Advertisements For

Related Questions

Jamal wants to download a software program that is free to use. What should he do?

Jamal should download the software from ??? and should then ???.
The Free website] install the software]
a reputable website] scan the download for viruses]
the first pop-up] copy the download on a flesh drive]

please just please help me

Answers

Answer:

The Free website] install the software]

a reputable website] scan the download for viruses]

THIS is the correct answer I think

Need help with this python question I’m stuck

Need help with this python question Im stuck
Need help with this python question Im stuck
Need help with this python question Im stuck

Answers

It should be noted that the program based on the information is given below

How to depict the program

def classify_interstate_highway(highway_number):

 """Classifies an interstate highway as primary or auxiliary, and if auxiliary, indicates what primary highway it serves. Also indicates if the (primary) highway runs north/south or east/west.

 Args:

   highway_number: The number of the interstate highway.

 Returns:

   A tuple of three elements:

   * The type of the highway ('primary' or 'auxiliary').

   * If the highway is auxiliary, the number of the primary highway it serves.

   * The direction of travel of the primary highway ('north/south' or 'east/west').

 Raises:

   ValueError: If the highway number is not a valid interstate highway number.

 """

 if not isinstance(highway_number, int):

   raise ValueError('highway_number must be an integer')

 if highway_number < 1 or highway_number > 999:

   raise ValueError('highway_number must be between 1 and 999')

 if highway_number < 100:

   type_ = 'primary'

   direction = 'north/south' if highway_number % 2 == 1 else 'east/west'

 else:

   type_ = 'auxiliary'

   primary_number = highway_number % 100

   direction = 'north/south' if primary_number % 2 == 1 else 'east/west'

 return type_, primary_number, direction

def main():

 highway_number = input('Enter an interstate highway number: ')

 type_, primary_number, direction = classify_interstate_highway(highway_number)

 print('I-{} is {}'.format(highway_number, type_))

 if type_ == 'auxiliary':

   print('It serves I-{}'.format(primary_number))

 print('It runs {}'.format(direction))

if __name__ == '__main__':

 main()

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

) Python command line menu-driven application that allows a user to display, sort and update, as needed a List of U.S states containing the state capital, overall state population, and state flower. The Internet provides multiple references with these lists. For example:

Answers

Answer:

Explanation:

The following is a Python program that creates a menu as requestes. The menu allows the user to choose to display list, sort list, update list, and/or exit. A starting list of three states has been added. The menu is on a while loop that keeps asking the user for an option until exit is chosen. A sample output is shown in the attached picture below.

states = {'NJ': ['Trenton', 8.882, 'Common blue violet'], 'Florida':['Tallahassee', 21.48, 'Orange blossom'], 'California': ['Sacramento', 39.51, 'California Poppy']}

while True:

   answer = input('Menu: \n1: display list\n2: Sort list\n3: update list\n4: Exit')

   print(type(answer))

   if answer == '1':

       for x in states:

           print(x, states[x])

   elif answer == '2':

       sortList = sorted(states)

       sorted_states = {}

       for state in sortList:

           sorted_states[state] = states[state]

       states.clear()

       states = sorted_states

       sorted_states = {}

   elif answer == '3':

       state = input('Enter State: ')

       capital = input('Enter Capital: ')

       population = input('Enter population: ')

       flower = input('Enter State Flower: ')

       states[state] = [capital, population, flower]

   else:

       break

) Python command line menu-driven application that allows a user to display, sort and update, as needed

___________ is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Answers

Answer:

Supply chain disruption is a global issue and there is a requirement to find out the interdependencies among the customers and suppliers.

Explanation:

The context suggests we are discussing some type of challenge involving the relationships between customers, suppliers and a larger supply chain. A "global issue" involving "interdependencies among the customers and suppliers" points to potential supply chain disruption or issues in a supply network.

Since there is a "requirement to find out the interdependencies" between customers and suppliers, this suggests we need to identify and analyze how they are connected and dependent upon each other in order to resolve the broader "global issue." This information could then be used to make changes, build resilience or manage risks in the supply chain.

Hope this helps!

Answer:

Internet is global issues

Design a class named StockTransaction that holds a stock symbol (typically one to four characters), stock name, number of shares bought or sold, and price per share. Include methods to set and get the values for each data field. Create the class diagram and write the pseudocode that defines the class.
Design a class named FeeBearingStockTransaction that descends from StockTransaction and includes fields that hold the commission rate charged for the transaction and the dollar amount of the fee. The FeeBearingStockTransaction class contains a method that sets the commission rate and computes the fee by multiplying the rate by transaction price, which is the number of shares times the price per share. The class also contains get methods for each field.
Create the appropriate class diagram for the FeeBearingStockTransaction class and write the pseudocode that defines the class and the methods.
Design an application that instantiates a FeeBearingStockTransaction object and demonstrates the functionality for all its methods.

Answers

The class diagram and pseudocode for the StockTransaction class is given below

What is the class?

plaintext

Class: StockTransaction

-----------------------

- symbol: string

- name: string

- shares: int

- pricePerShare: float

+ setSymbol(symbol: string)

+ getSymbol(): string

+ setName(name: string)

+ getName(): string

+ setShares(shares: int)

+ getShares(): int

+ setPricePerShare(price: float)

+ getPricePerShare(): float

Pseudocode for the StockTransaction class:

plaintext

Class StockTransaction

   Private symbol as String

   Private name as String

   Private shares as Integer

   Private pricePerShare as Float

   Method setSymbol(symbol: String)

       Set this.symbol to symbol

   Method getSymbol(): String

       Return this.symbol

   Method setName(name: String)

       Set this.name to name

   Method getName(): String

       Return this.name

   Method setShares(shares: Integer)

       Set this.shares to shares

   Method getShares(): Integer

       Return this.shares

   Method setPricePerShare(price: Float)

       Set this.pricePerShare to price

   Method getPricePerShare(): Float

       Return this.pricePerShare

End Class

Read more about StockTransaction  here:

https://brainly.com/question/33049560

#SPJ1

You can only choose one Animation effect on one slide in Power Point
*
a) True
b) False

Answers

Answer: B False

Explanation:

Name six different administrative controls used to secure personnel

Answers

The  six different administrative controls used to secure personnel are: Preventative, detective, corrective, deterrent, recovery, directive, and compensation.

What controls have the additional name "administrative controls"?

To lessen or restrict exposure to a particular hazard at work, administrative controls, also known as work practice controls, are used. When substitution, omission, or the use of engineering controls are not practical, this type of hazard control alters the way work is done.

Therefore, Policies, processes, or guidelines that outline employee or company practices in keeping with the organization's security objectives are referred to as administrative security controls.

Learn more about administrative controls from

https://brainly.com/question/15134135
#SPJ1

What is the role of Computer Aided Qualitative Data Analysis Software (CAQDAS)?

Please can someone answer this in a 200 word paragraph please I will give 100 point and will give Brainleiest to who ever does so <3 ... Thank you in advance

Answers

Answer:

Computer Aided Qualitative Data Analysis Software (CAQDAS) is a type of software that is designed to help researchers analyze and interpret qualitative data. This type of data is typically unstructured and text-based, and can include interview transcripts, focus group transcripts, survey responses, and other forms of open-ended data. CAQDAS is used to help researchers organize, code, and analyze this data in order to identify patterns and themes that can be used to support their research findings.

CAQDAS is often used in fields such as sociology, psychology, education, and anthropology, where researchers need to analyze large amounts of qualitative data in order to understand complex social phenomena and human behavior. The software can help researchers to identify key concepts and categories within the data, as well as track the connections and relationships between different pieces of data. This can help researchers to identify trends, patterns, and themes that might otherwise be difficult to see in the raw data.

CAQDAS can also help researchers to organize their data in a way that makes it easier to share and collaborate with other researchers. Many CAQDAS programs allow researchers to create annotated transcripts, codebooks, and other types of data summaries that can be shared with colleagues or used in reports and publications. Additionally, some CAQDAS programs offer features such as word clouds and network diagrams, which can help researchers to visualize and communicate their findings in a more compelling and engaging way.

Overall, the role of CAQDAS is to provide researchers with tools and techniques that can help them to make sense of large and complex sets of qualitative data. By organizing, coding, and analyzing data in a systematic and efficient way, CAQDAS can help researchers to uncover insights and findings that can advance their research and deepen our understanding of the world around us.

Match the features of integrated development environments (IDEs) and website builders to the appropriate location on the chart.

Match the features of integrated development environments (IDEs) and website builders to the appropriate

Answers

Answer:

website builder

complex coding techniques and advanced programming languages.

One of the common tests used to evaluate the accessibility of a web page consists of

using an Internet search engine to see if the page can be found easily.
clicking all hyperlinks in the page to test for broken or inaccurate links.
using the TAB and ENTER keys to move through the page’s content.
comparing the page with others in the website to find inconsistent layout.

Answers

The statement provided is True. An Internet search engine examination is a comprehensively employed method to evaluate the accessibility of a webpage, gauging if the page can be expeditiously found by users.

Other methods of accessing data

Furthermore, all hyperlinks in the page are clicked upon to weed out broken or inaccurate links which may negatively affect user experience by leading them astray. This rubric helps identify any links that may pose difficulties in accessing an accurate destination or even incorrect one, thus excluding any possibility of misunderstanding or degradation of user satisfaction.

An additional arbiter frequently employed to determine the accessibility of a webpage is using TAB and ENTER keys on a keyboard only interface. Loopholes for a comfortable exploration via keyboards when digital displays cannot help decipher is demonstrated in this manner; important for those susceptible to low vision or motor impairments obeying disability codes with accessible requirements or anyone else lacking interaction means save the keyboard.

Learn more about Internet search engine at

https://brainly.com/question/26488669

#SPJ1

what is information richness

Answers

Information Richness is the ability of information to change understanding within a time interval.

Hope it helps. Have a great day.

Brainliest would be greatly appreciated.

___________________________________________________________

#SaveTheEarth

#SpreadTheLove

- Mitsu JK

Teachers can organize the classroom environment to facilitate activities and to prevent problems. True Or False

Answers

Answer:

True

Explanation:

It is possible to organize a classroom environment to promote social interaction and minimize potential points of stress

What is the best way to deal with a spam

Answers

Simply ignoring and deleting spam is the best course of action. Avoid responding to or engaging with the spam communication because doing so can let the sender know that your contact information is still live and invite additional spam in the future. Additionally, it's critical to mark the email as spam using your email program or by reporting it to the relevant authorities. Make careful to report the spam to the proper authorities for investigation if it appears to be a phishing scheme or contains hazardous content.

Question 1 Why should a user seek support when troubleshooting a computer problem is beyond his or her technical knowledge?​

Answers

A user must seek support when troubleshooting a computer problem is beyond his or her technical knowledge because: When the user seeks support, the computer problem is solved accordingly and further complications are avoided.

Discussion:

Further computer problems may arise from a computer problem. As such, when a user finds it difficult to troubleshoot a computer problem, the user should seek support since the computer problem is beyond his or her technical knowledge

Read more on troubleshooting:

https://brainly.com/question/18315517

Question providede in the document please use my provided codes!!

Answers

Answer:

become successful in your Photo to the best of all time favorite

true/false. the most common hybrid system is based on the diffie-hellman key exchange, which is a method for exchanging private keys using public-key encryption.

Answers

The given statement "The most common hybrid system is based on the diffie-hellman key exchange, which is a method for exchanging private keys using public-key encryption." is False because the most common hybrid system is based on RSA encryption.

The most common hybrid system is based on RSA encryption, which is a public-key encryption method for exchanging private keys. Diffie-Hellman key exchange, on the other hand, is a key exchange algorithm used to establish a shared secret between two parties over an insecure communications channel. To create secure communication between two parties, encryption, and decryption methods are used.

The RSA encryption algorithm is the most commonly used public-key encryption method. The RSA algorithm is named after its inventors, Ron Rivest, Adi Shamir, and Leonard Adleman. It is based on the difficulty of factoring large numbers. The security of RSA encryption is based on the fact that it is difficult to factor large numbers into their prime factors.

Know more about RSA encryption here :

https://brainly.com/question/27116296

#SPJ11

String[][] arr = {{"Hello,", "Hi,", "Hey,"}, {"it's", "it is", "it really is"}, {"nice", "great", "a pleasure"},

{"to", "to get to", "to finally"}, {"meet", "see", "catch up with"},
{"you", "you again", "you all"}};
for (int j = 0; j < arr.length; j++) {
for (int k = 0; k < arr[0].length; k++) {
if (k == 1) { System.out.print(arr[j][k] + " ");
}
}
}
What, if anything, is printed when the code segment is executed?

Answers

Answer:

Explanation:

The code that will be printed would be the following...

Hi, it is great to get to see you again

This is mainly due to the argument (k==1), this argument is basically stating that it will run the code to print out the value of second element in each array within the arr array. Therefore, it printed out the second element within each sub array to get the above sentence.

When the code segment is executed, the output is "Hi, it is great to get to see you again "

In the code segment, we have the following loop statements

for (int j = 0; j < arr.length; j++) {for (int k = 0; k < arr[0].length; k++) {

The first loop iterates through all elements in the array

The second loop also iterates through all the elements of the array.

However, the if statement ensures that only the elements in index 1 are printed, followed by a space

The elements at index 1 are:

"Hi," "it" "is" "great" "to" "get" "to" "see" "you" "again"

Hence, the output of the code segments is "Hi, it is great to get to see you again "

Read more about loops and conditional statements at:

https://brainly.com/question/26098908

which of the following file formats cannot be imported using Get & Transform

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, the given options are:

A.) Access Data table  

B.)CVS  

C.)HTML  

D.)MP3

The correct option to this question is D- MP3.

Because all other options can be imported using the Get statement and can be further transformed into meaningful information. But MP3 can not be imported using the GET statement and for further Transformation.

As you know that the GET statement is used to get data from the file and do further processing and transformation.

Which arithmetic operation is used by a signed binary comparator to determine if two operands are equal

Answers

Answer:

Equality Operators

Explanation:

The equality operators, which are often written as "equal (==), and not-equal (!=)" are technically used by a signed binary comparator to determine if two operands are equal or not equal. They produce 1 in a situation where both operands have equal value, and 0 if they do not have equal value.

Hence, in this case, the correct answer is Equality Operators.

Simple Calculator
Write a program to take two integers as input and output their sum.
Sample Input:
2
8
Sample Output:
10

Remember, input() results in a string.

Answers

For the program for the given scenario, please visit the explanation part for better understanding.

What is programming?

The method of constructing a set of commands that tells a desktop how to accomplish a task is known as programming. Computer programming languages such as JavaScript, Python, and C++ can be used to create programs.

The input() function can be used to request that a user enter data into the program and save it in a variable that the computer can process.

The print() function is used to output a message to the screen or another standard output device.

Given:

Sample Input:2,8

Sample Output: 10

Program can be written as:

a=int(input("Enter the first number:"))

b=int(input("Enter the second number:"))

sum=a+b

print("The sum of given numbers is",sum)

Thus, above mentioned is the program for the given scenario.

For more details regarding programming language, visit:

https://brainly.com/question/23959041

#SPJ1

Jerry purchased 25 dozens of eggs. He used 6 eggs to bake 1 cake. How
many similar cakes can Jerry bake with the number of eggs he purchased?​

Answers

Answer:

50

Explanation:

He bought 25 dozens of eggs:

25 (12) = 300

He used 6 eggs to make 1 cake, so:

300 eggs/6 eggs per cake = 50 cakes

Select the items that can be measured.
capacity
smoothness
nationality
thickness
distance
scent
income

Answers

Answer:

distance

capacity

smoothness

thickness

capacity, smoothness, thickness, distance, income

5.27 LAB*: Program: Soccer team roster (Vectors)
This program will store roster and rating information for a soccer team. Coaches rate players during tryouts to ensure a balanced team.
(1) Prompt the user to input five pairs of numbers: A player's jersey number (0 - 99) and the player's rating (1 - 9). Store the jersey numbers in one int vector and the ratings in another int vector. Output these vectors (i.e., output the roster). (3 pts)
Ex:
Enter player 1's jersey number:
84
Enter player 1's rating:
7
Enter player 2's jersey number:
23
Enter player 2's rating:
4
Enter player 3's jersey number:
4
Enter player 3's rating:
5
Enter player 4's jersey number:
30
Enter player 4's rating:
2
Enter player 5's jersey number:
66
Enter player 5's rating:
9
ROSTER
Player 1 -- Jersey number: 84, Rating: 7
Player 2 -- Jersey number: 23, Rating: 4
...
(2) Implement a menu of options for a user to modify the roster. Each option is represented by a single character. The program initially outputs the menu, and outputs the menu after a user chooses an option. The program ends when the user chooses the option to Quit. For this step, the other options do nothing. (2 pts)
Ex:
MENU
a - Add player
d - Remove player
u - Update player rating
r - Output players above a rating
o - Output roster
q - Quit
Choose an option:
(3) Implement the "Output roster" menu option. (1 pt)
Ex:
ROSTER
Player 1 -- Jersey number: 84, Rating: 7
Player 2 -- Jersey number: 23, Rating: 4
...
(4) Implement the "Add player" menu option. Prompt the user for a new player's jersey number and rating. Append the values to the two vectors. (1 pt)
Ex:
Enter a new player's jersey number:
49
Enter the player's rating:
8
(5) Implement the "Delete player" menu option. Prompt the user for a player's jersey number. Remove the player from the roster (delete the jersey number and rating). (2 pts)
Ex:
Enter a jersey number:
4
(6) Implement the "Update player rating" menu option. Prompt the user for a player's jersey number. Prompt again for a new rating for the player, and then change that player's rating. (1 pt)
Ex:
Enter a jersey number:
23
Enter a new rating for player:
6
(7) Implement the "Output players above a rating" menu option. Prompt the user for a rating. Print the jersey number and rating for all players with ratings above the entered value. (2 pts)
Ex:
Enter a rating:
5

Answers

Answer:

Explanation:

The following code is written in Java and loops five times asking for the desired inputs from the user and saves that information in two Vectors named jerseyNumber and ratings. Then creates a while loop for the menu and a seperate method for each of the options...

import java.util.Scanner;

import java.util.Vector;

class Brainly {

   static Scanner in = new Scanner(System.in);

   static Vector<Integer> jerseyNumber = new Vector<>();

   static Vector<Integer> ratings = new Vector<>();

   public static void main(String[] args) {

       for (int x = 0; x < 5; x++) {

           System.out.println("Enter player " + (x+1) + "'s jersey number:");

           jerseyNumber.add(in.nextInt());

           System.out.println("Enter player " + (x+1) + "'s rating:");

           ratings.add(in.nextInt());

       }

       boolean reloop = true;

       while (reloop == true) {

           System.out.println("Menu");

           System.out.println("a - Add player");

           System.out.println("d - Remove player");

           System.out.println("u - Update player rating");

           System.out.println("r - Output players above a rating");

           System.out.println("o - Output roster");

           System.out.println("q - Quit");

           char answer = in.next().charAt(0);

           switch (answer) {

               case 'a': addPlayer();

                   break;

               case 'd': removePlayer();

                   break;

               case 'u': updatePlayer();

                   break;

               case 'r': outputRating();

                   break;

               case 'o': outputRoster();

                   break;

               case 'q': System.exit(0);

                   reloop = false;

                   break;

           }

       }

   }

   public static void addPlayer() {

       System.out.println("Enter player's jersey number:");

       jerseyNumber.add(in.nextInt());

       System.out.println("Enter player's rating:");

       ratings.add(in.nextInt());

   }

   public static void removePlayer() {

       System.out.println("Enter Jersey number:");

       int number = in.nextInt();

       for (int x = 0; x < jerseyNumber.size(); x++) {

           if (jerseyNumber.get(x) == number) {

               jerseyNumber.remove(x);

               ratings.remove(x);

           }

       }

   }

   public static void updatePlayer() {

       System.out.println("Enter Jersey number:");

       int number = in.nextInt();

       System.out.println("Enter new Rating:");

       int rating = in.nextInt();

       for (int x = 0; x < jerseyNumber.size(); x++) {

           if (jerseyNumber.get(x) == number) {

               ratings.set(x, rating);

           }

       }

   }

   public static void outputRating() {

       System.out.println("Enter Rating:");

       int rating = in.nextInt();

       for (int x = 0; x < ratings.size(); x++) {

           if (ratings.get(x) >= rating) {

               System.out.println(jerseyNumber.get(x));

           }

       }

   }

   public static void outputRoster() {

       for (int x = 0; x < jerseyNumber.size(); x++) {

           System.out.println("Player " + (x+1) + " -- Jersey number: " + jerseyNumber.get(x) + ", Rating: " + ratings.get(x));

       }

   }

}

5.27 LAB*: Program: Soccer team roster (Vectors)This program will store roster and rating information
5.27 LAB*: Program: Soccer team roster (Vectors)This program will store roster and rating information

Page's team is complaining about entering data into her table using the Datasheet view. They ask Page to help make data entry easier. Which database component can Page use to help her team with data entry?

Answers

The database component that can help Page to help her team with data entry is form.

What is database?

A database is known to be a kind of an organized makeup of structured information, or data, that are said to be stored in a computer system.

Note that The database component that can help Page to help her team with data entry is form as it will help her to make her data entry easier.

Learn more about database from

https://brainly.com/question/26096799

#SPJ1

Write an assembly code
Read 1 byte number (between 0 and 9). Write a program that prints:

It's ODD

if input is odd and prints

It's EVEN if input is even

Answers

; Read input byte

MOV AH, 01h ; Set up input function

INT 21h ; Read byte from standard input, store in AL

; Check if input is even or odd

MOV BL, 02h ; Set up divisor

DIV BL ; Divide AL by BL, quotient in AL, remainder in AH

CMP AH, 00h ; Compare remainder with zero

JNE odd ; Jump to odd if remainder is not zero

JMP done ; Jump to done if remainder is zero

odd: ; Odd case

MOV DX, OFFSET message_odd ; Set up message address

JMP print

even: ; Even case

MOV DX, OFFSET message_even ; Set up message address

print: ; Print message

MOV AH, 09h ; Set up output function

INT 21h ; Print message

done: ; End of program

What is the name of the big hole in the ground in Northern Arizona? A. Not this one B. My swimming pool c.Grand Canyon d. There isn’t one

Answers

Answer:

C

is this a serious question

Answer:

There is a big hole in the ground in Northern Arizona but the name isn't here. And is this like an actual question because the answer choices seem quite weird.

Explanation:

HI can someone help me write a code.
Products.csv contains the below data.
product,color,price
suit,black,250
suit,gray,275
shoes,brown,75
shoes,blue,68
shoes,tan,65
Write a function that creates a list of dictionaries from the file; each dictionary includes a product
(one line of data). For example, the dictionary for the first data line would be:
{'product': 'suit', 'color': 'black', 'price': '250'}
Print the list of dictionaries. Use “products.csv” included with this assignment

Answers

Using the knowledge in computational language in python it is possible to write a code that write a function that creates a list of dictionaries from the file; each dictionary includes a product.

Writting the code:

import pandas

import json  

def listOfDictFromCSV(filename):  

 

# reading the CSV file    

# csvFile is a data frame returned by read_csv() method of pandas    

csvFile = pandas.read_csv(filename)

   

#Column or Field Names    

#['product','color','price']    

fieldNames = []  

 

#columns return the column names in first row of the csvFile    

for column in csvFile.columns:        

fieldNames.append(column)    

#Open the output file with given name in write mode    

output_file = open('products.txt','w')

   

#number of columns in the csvFile    

numberOfColumns = len(csvFile.columns)  

 

#number of actual data rows in the csvFile    

numberOfRows = len(csvFile)    

 

#List of dictionaries which is required to print in output file    

listOfDict = []  

   

#Iterate over each row      

for index in range(numberOfRows):  

     

#Declare an empty dictionary          

dict = {}          

#Iterate first two elements ,will iterate last element outside this for loop because it's value is of numpy INT64 type which needs to converted into python 'int' type        

for rowElement in range(numberOfColumns-1):

           

#product and color keys and their corresponding values will be added in the dict      

dict[fieldNames[rowElement]] = csvFile.iloc[index,rowElement]          

       

#price will be converted to python 'int' type and then added to dictionary  

dict[fieldNames[numberOfColumns-1]] = int(csvFile.iloc[index,numberOfColumns-1])    

 

#Updated dictionary with data of one row as key,value pairs is appended to the final list        

listOfDict.append(dict)  

   

#Just print the list as it is to show in the terminal what will be printed in the output file line by line    

print(listOfDict)

     

#Iterate the list of dictionaries and print line by line after converting dictionary/json type to string using json.dumps()    

for dictElement in listOfDict:        

output_file.write(json.dumps(dictElement))        

output_file.write('\n')  

listOfDictFromCSV('Products.csv')

See more about python at brainly.com/question/19705654

#SPJ1

HI can someone help me write a code. Products.csv contains the below data.product,color,pricesuit,black,250suit,gray,275shoes,brown,75shoes,blue,68shoes,tan,65Write

if 100 KB file is stored in 2 MB folder how many files can be stored in the folder​

Answers

Answer:

20 files.

Explanation:

Given the following data;

Size of file = 100 kilobytes.

Folder size (memory) = 2 megabytes.

Method 1

1000 kilobytes = 1 megabytes.

100 kilobytes  = x megabytes

Cross-multiplying, we have;

1000x = 100

x = 100/1000

x = 0.1 mb

Now, to find the number of files that can be stored;

\( Number \; of \; files = \frac {Memory}{Size \; of \; each \; file} \)

Substituting into the equation, we have;

\( Number \; of \; files = \frac {2}{0.1} \)

Number of files = 20 files.

Method II

We know that;

1 kilobytes = 0.001 megabytes. 100 kilobytes = 0.1 megabytes. 1000 kilobytes = 1 megabytes. 2000 kilobytes = 2 megabytes.

Substituting into the formula, we have;

\( Number \; of \; files = \frac {Memory}{Size \; of \; each \; file} \)

Substituting into the equation, we have;

\( Number \; of \; files = \frac {2000}{100} \)

Number of files = 20 files.

The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound.
1. Declare a constant named CENTS_PER_POUND and initialize with 25.
2. Get the shipping weight from user input storing the weight into shipWeightPounds.
3. Using FLAT_FEE_CENTS and CENTS_PER_POUND constants, assign shipCostCents with the cost of shipping a package weighing shipWeightPounds.

The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound.1. Declare a constant named

Answers

import java.util.*;

class ship_package {

   public static void main(String[] args) {

       Scanner scnr = new Scanner(System.in);

       int shipWeightPounds;

       int shipCostCents = 0;

       final int FLAT_FEE_CENTS = 75, CENTS_PER_POUND = 25;

       

       //Get user input

       System.out.println("Enter weight: ");

       shipWeightPounds = scnr.nextInt();

       

       //Calc and print the result

       shipCostCents = FLAT_FEE_CENTS + (CENTS_PER_POUND*shipWeightPounds);

       System.out.println("Weight(lb): "+shipWeightPounds);

       System.out.println("Flat fee(cents): "+FLAT_FEE_CENTS);

       System.out.println("Cents per pound: "+CENTS_PER_POUND);

       System.out.println("Shipping cost(cents): "+shipCostCents);

   }

}

The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound.1. Declare a constant named

Upload your completed chart using the information you gained in your interviews.

Answers

Answer:

1.) X-ray Technician

Lead Apron & X-ray Machine

X-ray machine is used to make an image of a person’s bones, and the lead apron is used to block the radiation.

2.) Shipyard Project Manager

Hardhat & Gas Monitors

Gas monitors are used to detect gas leaks; while the hardhats are used to protect from falling objects.

3.) Teacher

Computers & Promethean Boards

Computers are used to project the assignments onto the Promethean boards.

Explanation:

Make me the brainliest!!! Thanks!!!

Other Questions
Write an exponential function in the form y = ab^x that goes through points (0,7)and (4,112) Help me please I do not understand it. How did the explosion of Jews and Muslims harm Spains economy? The teacher said. Gandhiji fought for independence."a) The teacher said that Gandhiji fought for independence.b) The teacher says that Gandhiji had fought for independence. c) The teacher said that Gandhiji had fought for independence. d) The teacher will say that Gandhiji was born in India.e) None of these the nurse is caring for an elderly nursing home client who is anxious and fearful after being admitted to the hospital. which intervention is the nursing priority? HELP ME PLEASE POINTS WILL BE GIVEN JUST HELP ME PLEASE POINTS WILL BE GIVEN PLEASE JUST HELL Which budget allows a business owner to calculate the amount to charge the customer in order to make a profit The P Ltd acquires all issued capital of the S Ltd for a consideration of $1,000,000 cash and 800,000 shares eachvalued at $1.50. The summary statement of the financial position of the subsidiary company immediatelyfollowing the acquisition is:Fair value of assets acquired $2,640,000Fair value of liabilities acquired $720,000Total shareholders equity of the subsidiary company $800,000Retained earnings of the subsidiary company $1,120,000Required:(a) Pass the necessary journal entry to record the acquisition (2 marks)(b) Determine the amount of goodwill (or bargain purchase) arising out of the acquisition (2 marks)(c) Pass the necessary consolidation entry to eliminate the subsidiary by the parent company (2 marks)(d) Determine the amount of goodwill (or bargain purchase) arising out of the acquisition if the purchaseconsideration paid was $1,000,000 cash and 400,000 shares each valued at $1.50 (1 marks) Suppose you have just won a lottery. You will receive a total of 26 annual payment, and each payment is $3,455. You will receive the first payment today. If you can earn 4.9% annual rate of return each year, how much is this lottery worth to you today? (round to the nearest dollar 3. A scientist in the early 1900 's is trying to identify whether a particular microbe is in fact a pathogen causing anthrax disease. Observation of tissue samples from diseased and healthy animals under a microscope revealed that this particular microbe was present in the diseased animals but not the healthy ones. The researcher streaks an agar plate with a sample from a diseased animal, and an individual colony of the suspected pathogen from that plate is inoculated into several healthy animals. However, none of the healthy animals fall ill with anthrax. How many of Koch's postulates have now been met, and how many are unmet? A: 1 postulate met, 3 unmet B: 2 postulates met, 2 unmet C. 3 postulates met, 1 unmet D: All 4 postulates have been met The main dietary factor associated with elevated blood cholesterol is? What is the equation of a line that passes through the points (3, 6) and (8, 4)?532NIy -5 27O 0yoyOy=-x+224o236 6y=x-18 3y=-15x+15 What is the value of x? Species richness is simply the number of species in a community. Species diversity is more complex, and includes a measure of the number of species in a community, and a measure of the abundance of each species. full-thickness graft, free, to the axillae, including direct closure of donor site, 12 sq. cm.: PLEEEEEASE HEEEEEELPPPP Two primary acid-base disorders that are present independently are referred to as:____. in the united states today, we wear pajamas (which originated in ancient persia), use mirrors (which originated in ancient egypt), and eat with forks (which originated in ancient rome). what mechanism of cultural change does this represent? What type of covalent bond is responsible for holding together the secondary structure of proteins What is the smallest integer greater than 2 that will have a remainder of 2 when divided by any member of the set {3, 4, 5, 6, 8}?