which of the following are attributes of the studio system and which are attributes of the independent system?

Answers

Answer 1

The following  attribute of the studio system are:

What is system?

System is an organized collection of interrelated components that work together to achieve an objective. It can refer to an organized set of components that interact to accomplish a goal, such as a computer system or a human body. A system is composed of various components, each with its own specific function, which work together to form an integrated whole.

System components are interrelated and interact with each other to form a unified and functioning system. System components may include hardware, software, networks, databases, and people. A system is made up of interconnected parts that work together to perform a specific task or achieve an objective. A system must be managed, maintained, and monitored in order to ensure its efficient and effective operation.

• Large budgets

Extensive marketing campaigns

• Established star actors

Pre-existing film franchises

Attributes of the Independent System:

• Lower budgets

• Minimal marketing campaigns

Unfamiliar actors

• Unique stories and perspectives

To learn more about system
https://brainly.com/question/1763761
#SPJ4


Related Questions

Water Closet Co. wholesales bathroom fixtures. During the current year ending December 31, Water Closet received the following notes

Answers

Answer:Water Closet Co. wholesales bathroom fixtures. During the current year ending December 31, Water Closet received the following notes: Date Face Amount Term Interest Rate 1. Mar. 6 $75,000 60 days 4% 2. Apr. 7 40,000 45 days 9% 3. Aug. 12 36,000 120 days 7% 4. Oct. 22 27,000 30 days 6% 5. Nov. 19 48,000 90 days 3% 6. Dec. 15 72,000 45 days 5% Required: 1. Determine for each note (a) the due date and (b) the amount of interest due at maturity, identifying each note by number. Assume a 360-day year. (Note: Round each interest computation to the nearest cent.) 2. Journalize the entry to record the dishonor of Note (3) on its due date. Refer to the Chart of Accounts for exact wording of account titles. 3. Journalize the adjusting entry to record the accrued interest on Notes (5) and (6) on December 31. Refer to the Chart of Accounts for exact wording of account titles. Assume a 360-day year. (Note: Round each interest computation to the nearest cent.) 4. Journalize the entries to record the receipt of the amounts due on Notes (5) and (6) in January and February. Refer to the Chart of Accounts for exact wording of account titles.

Explanation:

When using for loops to iterate through (access all elements of a 2D list), the outer loop accesses the __________.

Answers

Answer:

When using for loops to iterate through (access all elements of a 2D list), the outer loop accesses the iterates over the sublists of the 2D list, enabling you to conduct actions on individual rows or access specific components inside rows. The inner loop is then used to iterate through each sublist or row's items.

what is the importance of file management and how do you control files over time?\

Answers

Answer:

File management improves productivity by lowering the amount of time employees spend looking for documents. It also cuts down on the time it takes to recreate files when an employee can't find the original.

To control files over time, here are some tips.

-Delete unnecessary files

-Take immediate action on files you encounter

-Consolidate files when possible

-Have less folders as possible

Jabria are you smart
A: YESSSSSSS
B: No
C: Duh
D: No u
im giving brainliest for correct answer

Answers

Answer:

A. YESSSSSS

Explanation:

C duh . pop off hahahaha

Keith is creating a database for his shop. Arrange the steps to create his database in the correct order.
Save the database.
Determine all field names.
Analyze the tables you require.
Define data types for fields.

Answers

Answer:

Analyze the tables you require.

Determine all field names.

Define data types for fields.

Save the database.

definition of 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 an email, play games, and browse the Web.

Why would an open operating system best suit my needs?

Answers

An open operating system, such as Linux or Android, may be the best choice due to its customization options, wide range of software, security, cost-effectiveness, community support, and compatibility.

Why would an open operating system best suit my needs?

Open operating system such as Linux or Android are very good due to;

1. Wide range of it's software applications

2. The security and privacy that comes with it

3. Ease of customization and its flexibility

4. It's highly cost effective

5. Has a great support and community of developers

6. It has a good compatibility and interoperability

We will need to take into consideration the specific needs, prefernces and technical expertise while choosing an operating system. Open systems tend to have lots of advantage, but it also requires great deal of technical knowledge and efforts when we compare it to other commercial alternatives.

Learn more on operating system here;

https://brainly.com/question/1033563

#SPJ1

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.

Answers

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

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

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. You may assume that the string does not contain spaces and will always contain less than 50 characters.Ex: If the input is:n Mondaythe output is:1Ex: If the input is:z TodayisMondaythe output is:0Ex: If the input is:n It'ssunnytodaythe output is:2Case matters.Ex: If the input is:n Nobodythe output is:0n is different than N.C++ Code:#include #include int main(void) {/* Type your code here. */return 0;}

Answers

Answer:

Here is the C++ program:

#include <iostream> // to include input output functions

using namespace std; // to identify objects like cin cout

int counter(string userString, char character) { //function counter

   int count = 0;   // counts the no of times a character appears in the string

   for (int i=0;i<userString.length();i++)  

// loop to move through the string to find the occurrence of the character

       if (userString[i] == character) //if characters is found in the string

           count++;   //counts the occurrence of the character in the string

   return count; }   //returns the no of times character occurs in the string

int main() { //start of the main() function body

   string s; // stores the string entered by the user

   cout<<"Enter a string: "; //prompts user to enter the string

   cin>>s; //reads the string from user

   char ch; //stores the character entered by the user

   cout<<"Enter a character: "; //prompts user to enter a character

   cin>>ch; //reads the character from user

   cout << counter(s, ch) << endl; }  

//calls counter function to find the number of times a character occurs in the //string

Explanation:

The counter function works as following:

It has a count variable which stores the number of occurrences of a character in the userString.

It uses a for loop which loops through the entire string.

It has i position variable which starts with the first character of the string and checks if the first character of userString matches with the required character.

If it matches the character then count variable counts the first occurrence of the character and in the userString and is incremented to 1.

If the character does not match with the first character of the userString then the loops keeps traversing through the userString until the end of the userString is reached which is specified by the length() function which returns the length of the string.

After the loop ends the return count statement is used to return the number of occurrences of the character in the userString.

The main() function prompts the user to enter a string and a character. It then calls counter() function passing string s and character ch arguments to it in order to get the number of times ch appears in s.

The output is attached in a screenshot.

Write a program whose input is a character and a string, and whose output indicates the number of times

d) State any three (3) reasons why users attach speakers to their computer?​

Answers

Answer:

the purpose of speakers is to produce audio output that can be heard by the listener. Speakers are transducers that convert electromagnetic waves into sound waves. The speakers receive audio input from a device such as a computer or an audio receiver.

Explanation: Hope this helps!

What is the otput of this program if the user input is 'ant'?

animal=input("Which animal? ")
animals = ["ant", "bear", "seal"]
if animal in animals:
print("bingo")
else:
print("boo")

Answers

The output of this program if the user input is 'ant' would be bingo

What is an Output?

This refers to the result of a command or program that is given to a computer using an input unit which shows the result of the action that is displayed on the computer, by an output device.

Hence, it can be seen that from the given program, there are certain conditional statements given after an integer has been initialized.

In the column "animal", there are three elements in it which are: "ant", "bear", "seal" and the first conditional statement states that if the given input is found in the column "animal", then the output would be bingo and if not, then it would print boo.

If the user inputs 'ant', this can be found in the column "animal" and the output would be bingo.

Read more about output here:

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

2. Write a C program that generates following outputs. Each of the

outputs are nothing but 2-dimensional arrays, where ‘*’ represents

any random number. For all the problems below, you must use for

loops to initialize, insert and print the array elements as and where

needed. Hard-coded initialization/printing of arrays will receive a 0

grade. (5 + 5 + 5 = 15 Points)

i)

* 0 0 0

* * 0 0

* * * 0

* * * *

ii)

* * * *

0 * * *

0 0 * *

0 0 0 *

iii)

* 0 0 0

0 * 0 0

0 0 * 0

0 0 0 *

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional

Answers

Answer:

#include <stdio.h>

int main(void)

{

int arr1[4][4];

int a;

printf("Enter a number:\n");

scanf("%d", &a);

for (int i=0; i<4; i++)

{

for(int j=0; j<4; j++)

{

 if(j<=i)

 {

  arr1[i][j]=a;

 }

 else

 {

  arr1[i][j]=0;

 }

}

}

for(int i=0; i<4; i++)

{

for(int j=0; j<4; j++)

{

 printf("%d", arr1[i][j]);

}

printf("\n");

}

printf("\n");

int arr2[4][4];

int b;

printf("Enter a number:\n");

scanf("%d", &b);

for (int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  if(j>=i)

  {

   arr1[i][j]=b;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

for(int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

int arr3[4][4];

int c;

printf("Enter a number:\n");

scanf("%d", &c);

for (int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  if(j!=i)

  {

   arr1[i][j]=c;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

for(int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

return 0;

}

Explanation:

arr1[][] is for i

arr2[][] is for ii

arr3[][] is for iii

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional
2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional

Use the drop-down menus to complete statements about archiving and backing up data fileArchiving data files manages the size of a mailbox for storage.
Creating an Outlook data file
data files in storage on a computer.

Answers

Answer:

Archiving data files manages the size of a mailbox for  

local

storage.

Creating an Outlook data file  

protects

data files in storage on a computer.

Explanation:

Because its right.

Answer:

an increase in cloud computing

Explanation:

Using do while loop,write a program that will input numbers and display the count of odd numbers.(c++ programming)
Output:
Enter a number:30,17,22,9,14
Odd numbers found:2
Even numbers found:3

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

   // Declare variables to store the number input by the user and the count of odd and even numbers

   int number, oddCount = 0, evenCount = 0;

   // Use a do-while loop to input numbers until the user enters a negative number

   do

   {

       cout << "Enter a number: ";

       cin >> number;

       // Increment the count of odd numbers if the input number is odd

       if (number % 2 == 1)

       {

           oddCount++;

       }

       // Increment the count of even numbers if the input number is even

       else if (number % 2 == 0)

       {

           evenCount++;

       }

   }

   while (number >= 0);

   // Print the count of odd and even numbers

   cout << "Odd numbers found: " << oddCount << endl;

   cout << "Even numbers found: " << evenCount << endl;

   return 0;

}

Explanation:

This program will prompt the user to enter a number, and it will continue to input numbers until the user enters a negative number. For each number that is input, the program will increment the count of odd numbers if the number is odd, or the count of even numbers if the number is even. Finally, the program will print the count of odd and even numbers.

Here is an example of the output you would see if you ran this program:

Enter a number: 30

Enter a number: 17

Enter a number: 22

Enter a number: 9

Enter a number: 14

Enter a number: -5

Odd numbers found: 2

Even numbers found: 3

Which of these options is an example of a nested structure?A.
for loop
B.
while loop
C.
if-then-else loop
D.
if else inside a for loop

Answers

Answer:

D. if else inside a for loop

Explanation:

What are the core steps to add revisions or features to a project?(1 point)
Responses

Evaluate feasibility of the goals, create a list of functionality requirements, and develop the requirements of the feature.

Evaluate feasibility of the goals, develop programming solutions, and evaluate how well the solutions address the goals.

understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature.

Communicate with the client, create a sprint backlog, develop the project, and evaluate how well the solution fits the requirements.

Answers

The core steps to add revisions or features to a project are ""Understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature." (Option C)

How  is this so?

 

The core steps to add revisions or features to a project include understanding the goals,evaluating the impact on   the project, creating a list of functionality requirements,and developing   the requirements of the feature.

These steps ensure that the goals are clear, the impact is assessed, and the necessary functionality is identified and implemented effectively.

Learn more about project management at:

https://brainly.com/question/16927451

#SPJ1

What’s the relationship among speed frequency and the number of poles in a three phase induction motor

Answers

Answer:

The number of poles in the windings defines the motor's ideal speed. A motor with a higher number of poles will have a slower rated speed but a higher rated torque.

Explanation:

The relationship among speed, frequency, and the number of poles in a three-phase induction motor is governed by what is known as the synchronous speed equation.

The synchronous speed of an induction motor is the speed at which the rotating magnetic field generated by the stator windings of the motor rotates.

The synchronous speed (Ns) of a three-phase induction motor is given by the following equation:

Ns = (120 × f) / P

where:

Ns is the synchronous speed in revolutions per minute (RPM).

f is the supply frequency in hertz (Hz).

P is the number of poles.

From the equation, it can be observed that the synchronous speed is directly proportional to the frequency and inversely proportional to the number of poles.

This means that if the frequency increases, the synchronous speed also increases, assuming the number of poles remains constant.

Conversely, if the frequency decreases, the synchronous speed decreases.

The actual speed of an induction motor is known as the rotor speed or slip speed, which is always slightly lower than the synchronous speed. The difference between the synchronous speed and the actual speed is referred to as slip and is necessary for the motor to induce a voltage in the rotor and generate torque.

It's important to note that the synchronous speed equation assumes an ideal motor with no load. In practice, the actual speed of the motor depends on various factors, including the load torque, rotor resistance, and motor design.

Learn more about synchronous speed equation click;

https://brainly.com/question/33166801

#SPJ2

Write a program to read a list of nonnegative integers and to display the largest integer, the smallest integer, and the average of all the integers. The user indicates the end of the input by entering a negative sentinel value that is not used in finding the largest, smallest, and average values. The average should be a value of type double so that it is computed with a fractional part. Input Notes: The input is simply a sequence of positive integers, separated by white space and terminated by -1.

Answers

Answer:

The program in Python is as follows:

mynum = []

num = int(input("Enter a number: "))

total = 0

while num >= 0:

   mynum.append(num)

   total+=num

   num = int(input("Enter a number: "))

   

print("Smallest: ",min(mynum))

print("Largest: ",max(mynum))

print("Average: ",total/len(mynum))

Explanation:

This creates an empty list

mynum = []

This prompts the user for input

num = int(input("Enter a number: "))

This initializes total to 0

total = 0

The following is repeated until a negative number is inputted

while num >= 0:

This appends the inputted number into the list

   mynum.append(num)

This calculates the sum of all the numbers inputted

   total+=num

This prompts the user for another input

   num = int(input("Enter a number: "))

   

This calculates and prints the smallest

print("Smallest: ",min(mynum))

This calculates and prints the largest

print("Largest: ",max(mynum))

This calculates and prints the average

print("Average: ",total/len(mynum))

The index is the ____________ of a piece of data.

An individual piece of data in a list is called an __________.

For Questions 3-5, consider the following code:

stuff = []




stuff.append(1.0)

stuff.append(2.0)

stuff.append(3.0)

stuff.append(4.0)

stuff.append(5.0)




print(stuff)


What data type are the elements in stuff?

What is the output for print(len(stuff))?

What is the output for print(stuff[0])?

Consider the following code:

price = [1, 2, 3, 4, 5]

This code is an example of a(n) ______________ _____________.

Group of answer choices

number list

int list

price list

initializer list

Answers

Answer:

The index is the position of a piece of data in a list.

An individual piece of data in a list is called an element.

The elements in stuff are float data type.

The output for print(len(stuff)) is 5, which is the number of elements in the stuff list.

The output for print(stuff[0]) is 1.0, which is the first element of the stuff list.

The code price = [1, 2, 3, 4, 5] is an example of a list that contains integer elements. We can call this list an integer list or simply a list.

Question 2 Multiple Choice Worth 5 points)
(04.01 LC)
Computers take in and process certain kinds of information
O at the same rate as humans can
O in the same way humans can
much faster than humans can
O much more slowly than humans can

Question 2 Multiple Choice Worth 5 points)(04.01 LC)Computers take in and process certain kinds of informationO

Answers

Answer:

Answer:much faster than Humans can

Answer:

c

Explanation:

Subtract (-1110)2 from (1101) 2 with steps

Answers

When you Subtract (-1110)2 from (1101) 2 , the answer will be: (0111)2.

What is the subtraction about?

To subtract (-1110)2 from (1101)2, you can use the following steps:

Convert the second number to its two's complement representation. To do this, you can invert the bits of the number and add 1.

(-1110)2 = (0001)2

(0001)2 + 1 = (0010)2

Add the two numbers using the rules of binary addition.

1 1 0 1

   0 0 1 0

The outcome will be 1 0 1 1

If the result has a carry bit (an extra 1 at the leftmost side), discard it.

The result is (0111)2, which does not have a carry bit, so you can stop here.

Therefore, the result of (-1110)2 - (1101)2 is (0111)2.

Therefore, note that this process only works if the two numbers are represented in two's complement form. If the numbers are not in two's complement form, you will need to first convert them to two's complement before performing the subtraction.

Learn more about subtraction from

https://brainly.com/question/13378503

#SPJ1

Why would an organization most likely decide to implement an Acceptable Use Policy (AUP) for its computers?

A. To allow administrators to review what users are doing online
B. To protect its computer network from the threat of malware
C. To specify how data can be used over its computer network
D. To limit the resources users are allowed to access​

Answers

An organization would most likely decide to implement an Acceptable Use Policy (AUP) for its computers to achieve B)  To protect its computer network from the threat of malware.

An AUP can be implemented to protect the organization's computer network from the threat of malware.

By establishing guidelines regarding the downloading of files, visiting potentially harmful websites, or executing suspicious software, the policy helps mitigate the risk of malware infections that could compromise the organization's data, systems, and operations.

It sets expectations for users to refrain from engaging in activities that could introduce harmful elements into the network.

For more questions on Acceptable Use Policy

https://brainly.com/question/2625500

#SPJ8

When creating a user generated function, what procedure is followed?
a) create a function prototype before main()
b) create a function definition after main()
c) create a function definition before main()
d) all of the above

Answers

When creating a user-generated function, what procedure is followed d) all of the above.

What are the three factors of user-described characteristic?

A user-described characteristic has 3 essential additives which might be characteristic declarations, characteristic definition and characteristic called.

The characteristic prototypes are used to inform the compiler approximately the variety of arguments and approximately the specified datatypes of a characteristic parameter, it additionally tells approximately the go-back kind of the characteristic. By this information, the compiler cross-assessments the characteristic signatures earlier than calling.

Read more about the prototype :

https://brainly.com/question/7509258

#SPJ1

Create a new data frame, first_south, by subsetting titanic to include instances where a passenger is in the first class cabin (pclass column is 1) and boarded from Southampton (embarked column is S).

Answers

The data frame first_south is created using first_south = (titanic['Pclass']==1) & (titanic['Embarked']=='S')

How to create the data frame?

To do this, we make the following assumptions:

The pandas module has been loaded as pdThe dataset has also been loaded as titanic

When pclass column is 1.

This is represented as:

titanic['pclass']==1

When the passenger boards from Southampton.

This is represented as:

titanic['Embarked']=='S'

So, we have:

first_south = (titanic['Pclass']==1) & (titanic['Embarked']=='S')

Read more about data frames at:

https://brainly.com/question/16524297

#SPJ1

C program

You are to write a program which will do the Lotto.
The lotto consists of 5 numbers from 1-70 and a power ball from numbers 1-30.
The first 5 numbers should not repeat (same for the winning numbers). The power ball can repeat with any of the first 5 numbers.

You are going to purchase 10,000 lotto tickets. Each ticket has 6 numbers (5 num and 1 pow).
Give each ticket random numbers, and compare to the winning numbers (winning numbers generated only once).

Match the 5 numbers and the power ball number and you win the jackpot!
Match 5 numbers only and you win $1,000,000.
Match 4 numbers only and you win $50,000.
Match 3 numbers only and you win $7.
Match under 3 numbers, but you got the power ball and you win $4.

anything else wins nothing.

Need help, program must work!!!

Answers

Code :

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

#define NUM_TICKETS 10000

#define NUM_NUMBERS 5

#define MAX_NUMBER 70

#define MAX_POWERBALL 30

void generateNumbers(int arr[], int n, int max) {

int i, j, temp;

for (i = 0; i < n; i++) {

arr[i] = rand() % max + 1;

for (j = 0; j < i; j++) {

if (arr[j] == arr[i]) {

i--;

break;

}

}

}

}

void printNumbers(int arr[], int n) {

int i;

for (i = 0; i < n; i++) {

printf("%d ", arr[i]);

}

}

int checkMatch(int ticket[], int winningNumbers[], int powerball) {

int i, numMatch = 0;

for (i = 0; i < NUM_NUMBERS; i++) {

if (ticket[i] == powerball) {

numMatch++;

break;

}

}

for (i = 0; i < NUM_NUMBERS; i++) {

int j;

for (j = 0; j < NUM_NUMBERS; j++) {

if (ticket[i] == winningNumbers[j]) {

numMatch++;

break;

}

}

}

return numMatch;

}

int main() {

int i, j;

int winningNumbers[NUM_NUMBERS];

int winningPowerball;

int ticket[NUM_NUMBERS + 1];

int jackpot = 0, match5 = 0, match4 = 0, match3 = 0, matchPowerball = 0;

srand(time(NULL));

generateNumbers(winningNumbers, NUM_NUMBERS, MAX_NUMBER);

winningPowerball = rand() % MAX_POWERBALL + 1;

printf("Winning numbers: ");

printNumbers(winningNumbers, NUM_NUMBERS);

printf("Powerball: %d\n", winningPowerball);

for (i = 0; i < NUM_TICKETS; i++) {

generateNumbers(ticket, NUM_NUMBERS, MAX_NUMBER);

ticket[NUM_NUMBERS] = rand() % MAX_POWERBALL + 1;

int numMatch = checkMatch(ticket, winningNumbers, winningPowerball);

switch (numMatch) {

case 6:

jackpot++;

break;

case 5:

match5++;

break;

case 4:

match4++;

break;

case 3:

match3++;

break;

case 1:

if (ticket[NUM_NUMBERS] == winningPowerball) {

matchPowerball++;

}

break;

}

}

printf("Jackpot winners: %d\n", jackpot);

printf("Match 5 winners: %d\n", match5);

printf("Match 4 winners: %d\n", match4);

printf("Match 3 winners: %d\n", match3);

printf("Match powerball winners: %d\n", matchPowerball);

return 0;

}

EXPLANATION:This program generates the winning numbers and powerball using the generateNumbers() function, which ensures that each number is unique. It then generates 10,000 lotto tickets and checks each one using the checkMatch() function, which returns the number of matching numbers and the powerball. The results are tallied and printed at the end

create a script about dressmaking​

Answers

They can increase their self-esteem and skill confidence by sewing. A person's overall can be significantly increased by learning a new ability and gradually mastering it.

What is dressmaking?Cut, sew, fix, and alter clothing is what tailors and dressmakers do. Tailors often only create clothing for men, such as suits, jackets, and coats, whereas dressmakers create clothing for women, such as dresses, blouses, suits, evening wear, bridal and bridesmaids gowns, and sportswear. Beginner sewing may be a lot of fun because it is so exciting to learn the craft and begin making your first items. It's something you'll adore! A person who sews clothing for a living is called a seamstress.Dressmaking is the process of creating clothing for girls or women. People who wear gowns may highlight their physical qualities and hide their flaws. Like makeup, clothes are fundamentals that can help someone draw attention to their greatest qualities and hide any flaws they wish to keep hidden.

To learn more about dressmaking, refer to:

https://brainly.com/question/28349881

#SPJ1

x = int(input ("Enter a value: "))
C = 0
sum = 0
while (x != 0):
x = int(input ("Enter a value: "))
C = c + 1
sum sum + X
print ("\n\nSum: " + str(sum))


Pls help ASAP

x = int(input ("Enter a value: "))C = 0sum = 0while (x != 0):x = int(input ("Enter a value: "))C = c

Answers

Answer:

python code

C = 0

sum = 0

x = 1 # Initialize x to a non-zero value

while (x != 0):

   x = int(input("Enter a value: "))

   C = C + 1

   sum = sum + x

print("\n\nSum: " + str(sum))

Explanation: asked an ai and here we go.

The given code is written in Python and appears to prompt the user to input a value repeatedly until the user enters 0. During each iteration, the code increments a variable C by 1 and adds the input value to a variable sum. Once the user enters 0, the code prints the value of sum.

However, there are a couple of errors in the code:

The initial value of variable C is incorrectly written as c (lowercase) instead of C (uppercase).

The variable sum is not initialized to 0 before the loop begins.

Here's the corrected code above

In this corrected code, C is correctly initialized to 0, sum is initialized to 0, and x is initialized to a non-zero value to ensure that the loop runs at least once. Additionally, the variable sum is updated with the user input value during each iteration, and the loop continues until the user enters 0. Finally, the code prints the value of sum after the loop has completed.

The shortest-route technique would best be used to determine the amount of LAN network wiring within a building. determine the path for a truck making frequent but repeatable drops. determine the number of units to ship from each source to each destination. minimize the amount of traffic flow on a busy highway.

Answers

Answer:

Determine the path for a truck making frequent but repeatable drops.

Explanation:

A shortest route technique is mainly used to determine the shortest distance between an original point (departures) and various destination points at a specific period of time.

In order to effectively and efficiently use the shortest technique, it is important to illustrate or represent the various routes as a network comprising of nodes. The first key step in applying the shortest route technique is to, choose the nearest node having the shortest route to the origin and put a distance box.

The shortest-route technique would best be used to determine the path for a truck making frequent but repeatable drops.

Other applications of the shortest-route technique are;

1. A tourist planning a vacation with the aim of minimizing the required driving time and stress.

2. A dispatch rider using the shortest route so as to minimize fuel and the distance traveled to get to his destination.

1. Using the open function in python, read the file info.txt. You should use try/except for error handling. If the file is not found, show a message that says "File not found"

2. Read the data from the file using readlines method. Make sure to close the file after reading it

3. Take the data and place it into a list. The data in the list will look like the list below

['ankylosaurus\n', 'carnotaurus\n', 'spinosaurus\n', 'mosasaurus\n', ]

5. Create a function called modify_animal_names(list) and uppercase the first letter of each word.

6. Create a function called find_replace_name(list, name) that finds the word "Mosasaurus" and replace it with your name. DO NOT use the replace function. Do this manually by looping (for loop).

The words in the info.text:

ankylosaurus
carnotaurus
spinosaurus
mosasaurus

Answers

try:

   f = open('info.txt', 'r')

except:

   print('File not found')

dino_list = []

for line in f.readlines():

   dino_list.append(line)

f.close()

def modify_animal_names(list):

   for i in range(len(list)):

       list[i] = list[i].capitalize().replace('\n', '')

modify_animal_names(dino_list)

def find_replace_name(list, name):

   for i in range(len(list)):

       if list[i] == name:

           list[i] = 'NAME'

find_replace_name(dino_list, 'Ankylosaurus')

This will print out:

['Ankylosaurus', 'Carnotaurus', 'Spinosaurus', 'NAME']

(If you have any more questions, feel free to message me back)

QUESTION 4/10
Which of the following should be part of an access data request?

Answers

Answer: Access to their personal information.

Explanation: Your lawful basis for processing their data. The period for which you'll store their data (or the criteria you'll use to determine that period—i.e., “as long as you're a customer”) Any relevant information about how the data was obtained

The following should be part of an access data request: Provide justification and Specify exact data needed should be part of an access data request. The correct option is A and B.

What is an access data request?

An access data request is a request made to a data controller or processor by an individual seeking to obtain access to their personal data held by that organization.

Under data protection laws, individuals have the right to request access to their personal data, as well as the right to request corrections or deletions of that data if necessary.

In order to make an effective access data request, it is important to provide justification for the request and specify the exact data needed.

Provide justification and Specify exact data needed should be part of an access data request should be part of an access data request. Therefore, correct option is A and B.

Learn more about access data request here:

https://brainly.com/question/31600082

#SPJ2

The complete question might be:

Which of the following should be part of an access data request?

a) Provide justification

b) Specify exact data needed

c) A second signature

d) Time limit

Other Questions
Compute the following. d/dx (2xx+7x7) What is the best definition of the term "cottage industry"?O a group of cottagelathat serves as a factoryO a group or community that starts an industry togetherO people who leave their homes to work for industriesO people who produce goods out of their homes Fill in the blank with the correct form of estar; Nosotros ______ en la clase de espanol.Fill in the correct form of estar; Nosotros ______ en la clase de espanol.Fill in the correct form of estar; Tu ________ en la clase de espanol. Suppose the judge decides to acquit all defendants, regardless of the evidence, what is the probability of type i error? What are the 3 main factors that influence a person when they decide to vote?. -12x2 + 5x - 26Helppp This Roman general conquered Gaul. Afterwinning a civil war against Pompey Magnushe became dictator for life but was murderedby the senate There are 12 books on a shelf. 7of these books are new. (a) What is the ratio of new books to used books? (b) What is the ratio of all books to used books? The partition that is a result of the inward growth of the cytoplasmic membrane and cell wall from opposing directions is known as the. Consider the following double integral -dy dx By converting into an equivalent double mtegral in polar coordinates, we obtu 1- None of the This option 1- dr do This option This option This option los angeles neighborhood whose name means oak in spanish is? Find the value of.5-8-(-10)step by step From the point of view of loanamortization mortgages fall into what three categories? Is the largest share of GDP in the United States is consumption True or false? The trachea is found ______ to the esophagus; connects the larynx to primary bronchi; inferiorly the trachea divides into right and left _______ ______ the hardcore gang investigations unit is most known for which of the following outcomes? The process of sediment being dropped off in a new location is called ____________? The dominant options exchange is the A. Pacific Stock Exchange. B. Chicago Board Options Exchange. C. Philadelphia Options Exchange. D. American Stock Exchange. William Henry Harrison from Ohio, gave the longest inaugural addresses for any president. If he spoke for about 2 hours, about how many minutes did he speak??? Please help me its due in 30 minutes