A technician is replacing the LCD panel in a laptop. Which of the following components is MOST likely to be damaged accidentally during the repair?
A. Bezel
B. Hinge
C. Motherboard
D. Digitizer

Answers

Answer 1

Answer:

B. Digitizer

Explanation:

In a laptop screen (basically a touch screen) the digitizer is a component (technically one of the layers) of the screen. The screen contains;

i. the glass panel - This is the outermost layer.

ii. the digitizer - This is located just under the glass panel. It responds to touches.

iii. the LCD panel - This displays the image on the screen.

So replacing the LCD panel in a laptop can damage either the digitizer or the glass panel.


Related Questions

Why are cyber security professionals also expected to have some degree of relational skills

Answers

Answer:

Answered below

Explanation:

Relational skills are necessary for cybersecurity professionals in order to enable them interact and relate to other professionals in the fields. Cyber threats are always evolving and changing, therefore cybersecurity professionals need to communicate more with each other and share ideas and notifications about changes in the field.

Relational skills also help a professional understand their clients and what they want and therefore ensures client satisfaction and safety.

______ is used to ensure that data is organized most efficiently in a database. A) Consistency checking. B) Validation C) Normalization D) Range checking

Answers

Answer:

C) Normalization

Explanation:

Normalization is an approach that is to be done in a systematic manner in order to remove the data duplicity and there are non-desirable attributes such as insert, update, delete, etc. In this the process should be followed in multi step that contains the data in a tabular form so that it could eliminate the repetition of data to maintain the efficiency of the data

Therefore according to the given situation, the option C is correct

The process of ensuring that data values are ordered such that the values in the columns confirms to a certain range and expunged duplicate values is called Normalization.

Data Normalization ensures that the data values are efficiently arranged and ordered, while also getting them ready for analytical purpose.

A normalized data will usually be rid of duplicates and the weight of the values in the columns would be even.

Hence, the process is known as Normalization.

Learn more : https://brainly.com/question/21986997

Write a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.

Answers

Answer:

ok

Explanation:

aprogram that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers. is written below

a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.

In C language / Please don't use (sprint) function. Write a function fact_calc that takes a string output argument and an integer input argument n and returns a string showing the calculation of n!. For example, if the value supplied for n were 6, the string returned would be 6! 5 6 3 5 3 4 3 3 3 2 3 1 5 720 Write a program that repeatedly prompts the user for an integer between 0 and 9, calls fact_calc and outputs the resulting string. If the user inputs an invalid value, the program should display an error message and re-prompt for valid input. Input of the sentinel -1 should cause the input loop to exit.

Note: Don't print factorial of -1, or any number that is not between 0 and 9.

SAMPLE RUN #4: ./Fact

Interactive Session

Hide Invisibles
Highlight:
None
Show Highlighted Only
Enter·an·integer·between·0·and·9·or·-1·to·quit:5↵
5!·=·5·x·4·x·3·x·2·x·1·x··=·120↵
Enter·an·integer·between·0·and·9·or·-1·to·quit:6↵
6!·=·6·x·5·x·4·x·3·x·2·x·1·x··=·720↵
Enter·an·integer·between·0·and·9·or·-1·to·quit:20↵
Invalid·Input↵
Enter·an·integer·between·0·and·9·or·-1·to·quit:8↵
8!·=·8·x·7·x·6·x·5·x·4·x·3·x·2·x·1·x··=·40320↵
Enter·an·integer·between·0·and·9·or·-1·to·quit:0↵
0!·=··=·1↵
Enter·an·integer·between·0·and·9·or·-1·to·quit:-1↵

In C language / Please don't use (sprint) function. Write a function fact_calc that takes a string output

Answers

Here's an implementation of the fact_calc function in C language:


#include <stdio.h>

void fact_calc(char* output, int n) {

   if (n < 0 || n > 9) {

       output[0] = '\0';

       return;

   }

   int result = 1;

   sprintf(output, "%d!", n);

   while (n > 1) {

       sprintf(output + strlen(output), " %d", n);

       result *= n--;

   }

   sprintf(output + strlen(output), " 1 %d", result);

}

int main() {

   int n;

   char output[100];

   while (1) {

       printf("Enter an integer between 0 and 9 (or -1 to exit): ");

       scanf("%d", &n);

       if (n == -1) {

           break;

       } else if (n < 0 || n > 9) {

           printf("Invalid input. Please enter an integer between 0 and 9.\n");

           continue;

       }

       fact_calc(output, n);

       printf("%s\n", output);

   }

   return 0;

}



How does the above code work?

The fact_calc function takes two arguments: a string output and an integer n.The function first checks if n is less than 0 or greater than 9. If so, it sets the output string to an empty string and returns.If n is a valid input, the function initializes result to 1 and starts building the output string by appending n! to it.Then, the function loops from n down to 2, appending each number to the output string and multiplying it with result.Finally, the function appends 1 and the value of result to the output string, effectively showing the calculation of n!.In the main function, we repeatedly prompt the user for an integer between 0 and 9 (or -1 to exit) using a while loop.We check if the input is valid and call the fact_calc function with the input and a buffer to store the output string.We then print the resulting output string using printf.If the user inputs an invalid value, we display an error message and continue the loop.If the user enters -1, we exit the loop and end the program.

Learn more about C Language:
https://brainly.com/question/30101710
#SPJ1

if we have a data array as following, what would be the data array after going through the first run of an insertionsort?

Answers

If we had a data array as given, the data array after going through the first run of an insertionsort would be same as before.

What is data array?

An array is a data structure in computer science that contains a collection of elements (values or variables), each of which is identified by at least one array index or key. An array is stored in such a way that the position of each element can be calculated mathematically from its index tuple. A linear array, also known as a one-dimensional array, is the simplest type of data structure.

Two-dimensional arrays are also referred to as "matrices" because the mathematical concept of a matrix can be represented as a two-dimensional grid. In some cases, the term "vector" is used to refer to an array in computing, even though tuples are the more mathematically correct equivalent.

Learn more about arrays

https://brainly.com/question/26104158

#SPJ4

Alex wants another way to compare the editing projects by level, but not by group. Collapse the outline in the Editing Projects PivotTable to display the Level names and to hide the Group IDs. Insert a PivotChart based on the Editing Projects PivotTable using the Stacked Column chart type. Resize and reposition the PivotChart so that the upper- left corner is located within cell A12 and the lower-right corner is located within cell F25. Change the PivotChart colors to Monochromatic Palette 5 to coordinate with the PivotTable.​

Answers

\( \rm answer\)

This activity appears to be related to using Microsoft Excel to create a PivotTable and PivotChart for comparing editing projects by level. The instructions involve collapsing the outline in the Editing Projects PivotTable to display the Level names and hiding the Group IDs. Then, a PivotChart is inserted based on the Editing Projects PivotTable using the Stacked Column chart type. The PivotChart is resized and repositioned to fit within specific cells, and its colors are changed to match the PivotTable using the Monochromatic Palette 5.

Overall, this activity is likely part of a larger task or project that involves analyzing and visualizing data using Excel. It demonstrates how to use PivotTables and PivotCharts to summarize and compare large data sets, and how to customize the appearance of these visualizations to make them more useful and visually appealing.

1.Create a function that accepts any number of numerical (int and
float) variables as positional arguments and returns the sum ofthose variables.
2.Modify the above function to accept a keyword argument
'multiplier'. Modify the function to return an additional variable
that is the product of the sum and the multiplier.
3.Modify the above function to accept an additional keyword
argument 'divisor'. Modify the function to return an additional
variable that is the quotient of the sum and the divisor.

Answers

Answer:

This function accepts any number of numerical variables as positional arguments and returns their sum:

python

Copy code

def sum_numbers(*args):

   return sum(args)

This function accepts a multiplier keyword argument and returns the product of the sum and the multiplier:

python

Copy code

def sum_numbers(*args, multiplier=1):

   total_sum = sum(args)

   return total_sum * multiplier

This function accepts an additional divisor keyword argument and returns the quotient of the sum and the divisor:

python

Copy code

def sum_numbers(*args, multiplier=1, divisor=1):

   total_sum = sum(args)

   return total_sum * multiplier, total_sum / divisor

You can call these functions with any number of numerical arguments and specify the multiplier and divisor keyword arguments as needed. Here are some examples:

python

# Example 1

print(sum_numbers(1, 2, 3))  # Output: 6

# Example 2

print(sum_numbers(1, 2, 3, multiplier=2))  # Output: 12

# Example 3

print(sum_numbers(1, 2, 3, multiplier=2, divisor=4))  # Output: (8, 3.0)

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)

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

You are part of a sales group that has been asked to give a presentation.
Before you begin, what should you and your group do?
O A. Figure out who is the best public speaker.
O B. Look into file-sharing options so that everyone can work on the
same file at the same time.
OC. Buy the best software on the market.
O D. Ask if you have to give a slide presentation.

Answers

The answer is the 2 one becuase I took the test

Many individuals and organizations are choosing cloud storage for their important files. Discuss the pros and cons of cloud storage for both personal files and business files. Many individuals and organizations are choosing cloud storage for their important files. Discuss the pros and cons of cloud storage for both personal files and business files. What inputs and outputs are needed to support the storage environment

Answers

Answer:

Pros of cloud storage

Files can be accessed remotely without having to be connected to a company's intranetSecurity and file backups are managed by the cloud storage company, frees up employees time applying updates and other maintenance tasks.Usually billed monthly which allows for a lower initial startup cost

Cons of cloud storage

File security relies upon trust in the cloud storage providerLong term cost could be higher than storing files yourselfRequires an internet connection to access files

Among your selection in different online interfaces, which are your top three favorites?​

Answers

What is this ? History or ?

Answer:

you can pick anything its your choice.

Explanation:

Before the assembly line only the wealthy could afford automobiles.
True
False

Answers

True poor people or middle class or lower class people could not have a thing because they simply did not have in of money

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

Answers

Answer:

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

Assume a 2^20 byte memory:

a) What are the lowest and highest addresses if memory is byte-addressable?

b) What are the lowest and highest addresses if memory is word-addressable, assuming a 16-bit word?

c) What are the lowest and highest addresses if memory is word-addressable, assuming a 32-bit word?

Answers

a) Lowest address: 0, Highest address: (2^20) - 1. b) Lowest address: 0, Highest address: ((2^20) / 2) - 1. c) Lowest address: 0, Highest address: ((2^20) / 4) - 1.

a) If memory is byte-addressable, the lowest address would be 0 and the highest address would be (2^20) - 1.

This is because each byte in the memory requires a unique address, and since there are 2^20 bytes in total, the highest address would be one less than the total number of bytes.

b) If memory is word-addressable with a 16-bit word, each word would consist of 2 bytes.

Therefore, the lowest address would be 0 (representing the first word), and the highest address would be ((2^20) / 2) - 1.

This is because the total number of words is equal to the total number of bytes divided by 2.

Subtracting 1 gives us the highest address, as the addresses are zero-based.

c) If memory is word-addressable with a 32-bit word, each word would consist of 4 bytes.

In this case, the lowest address would still be 0 (representing the first word), and the highest address would be ((2^20) / 4) - 1.

Similar to the previous case, the total number of words is equal to the total number of bytes divided by 4.

Subtracting 1 gives us the highest address.

For more questions on address

https://brainly.com/question/30273425

#SPJ8

13. Population

Write a program that predicts the approximate size of a population of organisms. The

application should use text boxes to allow the user to enter the starting number of organisms,

the average daily population increase (as a percentage), and the number of days the

organisms will be left to multiply. For example, assume the user enters the following values:

Starting number of organisms: 2

Average daily increase: 30%

Number of days to multiply: 10

The program should display the following table of data:

I'm stuck in this problem in python 1 and also can you guys provide me the flow chart

Answers

Answer:    after day one there is  2   2.6   3.3   9.1   27   81   243  729 2,187

6,561

Explanation:

what is the abbreviation of IP address​

Answers

Answer: Internet Protocol Address

Explanation: IP Address is the abbreviation of Internet Protocol Address

Hope this helps

--Wavey

the meaning of the abbreviation of IP address is: Internet Protocol address(IP address)

sorry if that isn't what you meant, but hope this helps

Give a grammar for the language Time of Day, which accepts strings such as those in the bulleted list below. In general the language has strings with hour times from 1 to 12, followed by a colon, followed by minute times from 00 to 59, and then either am or pm. (Use BNF notation and give good mnemonic names for concepts such as , which is to be the start symbol, and for digits that are hour digits (i.e., 1 through 9 but not 0). Make sure that your grammar does not generate any strings that are not valid times.
12:36 pm
1:59 am
4:00 pm
2:45 am

Answers

The formal mathematical notation used to define the language is called BNF (Backus-Naur notation). It is made up of the following things: the terminal symbol is set. the non-terminal symbol is set.

What three types of mathematics are there?

The three primary fields of modern mathematics are continous mathematics, algebra, and computational geometry. The breakdown is not all-inclusive. Some disciplines, like geometry or mathematical problems, are challenging to categorize precisely.

What are the abilities of mathematical thought?

The core of mathematical thinking includes exploring, querying, working methodically, visualizing, conjecturing, explaining, generalizing, justifying, and proving. These groups of exercises are made to improve your ability to function as a mathematician.

To know more about mathematical visit:

https://brainly.com/question/13668912

#SPJ4

7.9.6 Enable Device LogsYou are the IT security administrator for a small corporate network. You need to enable logging on the switch in the networking closet.In this lab, your task is to perform the following:• Enable Logging and the Syslog Aggregator• Configure RAM Memory Logging as follows:o Emergency, Alert, and Critical: Enableo Error, Warning, Notice, Informational, and Debug: Disable• Configure Flash Memory Logging as follows:o Emergency and Alert: Enableo Critical, Error, Warning, Notice, Informational, and Debug: DisableTask SummaryEnable logging and the Syslog aggregatorSet RAM memory logging to CriticalSet Flash memory logging to AlertsExplanationIn this lab, you perform the following:• Enable Logging and the Syslog aggregator• Configure RAM memory logging as follows:o Emergency, Alert, and Critical: Enableo Error, Warning, Notice, Informational, and Debug: Disable• Configure Flash memory logging as follows:o Emergency and Alert: Enableo Critical, Error, Warning, Notice, Informational, and Debug: DisableComplete this lab as follows:1. From the left menu, expand the Administration.2. Expand System Log.3. Select Log Settings.4. Under Logging, select Enable.5. Under Syslog Aggregator, select Enable.6. Under RAM Memory Logging, enable and disable the appropriate settings.7. Under Flash Memory Logging, enable and disable the appropriate settings.8. Click Apply.

Answers

Since you are the IT security administrator for a small corporate network. The steps to to enable logging on the switch and carry out the task is given below.

What is the role of the security administrator in the above case?

It is important to enable logging on network devices such as switches to collect and store information about network activity and events. This can be useful for troubleshooting issues, detecting security breaches, and performing forensic analysis.

To enable logging on the switch in this scenario, you would need to follow the steps provided in the lab instructions:

From the left menu, expand the Administration menu.Expand the System Log submenu.Select the Log Settings option.Under the Logging section, select the Enable option.Under the Syslog Aggregator section, select the Enable option.Under the RAM Memory Logging section, enable the Emergency, Alert, and Critical options, and disable the Error, Warning, Notice, Informational, and Debug options.Under the Flash Memory Logging section, enable the Emergency and Alert options, and disable the Critical, Error, Warning, Notice, Informational, and Debug options.Click the Apply button to save the changes.

Therefore, These steps will enable logging and the Syslog aggregator on the switch, and configure the RAM and flash memory logging to capture only certain types of events. This can help to reduce the amount of log data that is generated and stored, while still capturing important information.

Learn more about security administrator from

https://brainly.com/question/29645753

#SPJ1

The ____ icon provides an option to insert images from an external storage device into a document.
A) Shapes
B) Image
C) SmartArt
D) Picture

Answers

the good answer is D btw im mr beast

Write a C++ program that creates a word-search puzzle game where the user should find the hidden
words in a square array of letters. Your program should first read from the user their choice for the
game: a) easy, b) medium, c) hard, d) exit the game. If the user selects easy, then the 6x6 puzzle,
shown in Figure 1, will be generated and displayed to the user. If the user selects medium, then the
14 x 14 puzzle shown in Figure 2 should be generated and displayed and lastly, if the user selects
the hard choice, the program should generate a random puzzle, filling the square array of 20 x 20
using random characters/words.
Then your program should repeatedly read from the user, a word to be searched for in the puzzle,
the row and column number where the word starts from and which orientation to search for. The
words can be searched vertically (top to bottom), horizontally (left to right), diagonally (upper left
to lower right) and diagonally (upper right to lower left). The program should check if the column
and row number given by the user are inside the puzzle (array) boundaries, otherwise should display
an error message and ask the user to enter another position. For each word the user inputs, the
2
program should display whether the word was found or not. The program should stop reading
words when the user will press “X” and then the total number of found words will be displayed to
the user.
The program should repeatedly display the game menu until the user will select to exit the game

Answers

C++ program to create a word-search puzzle game. #include <iostream> #include <cstring> using namespace std; int main() { char input; cout << "Choose.

What is program technology?

Any technology (including, without limitation, any new and practical process, method of manufacture, or composition of matter) or proprietary material developed or first put into use (actively or constructively) by either Party in the course of the Research Program is referred to as "Program Technology."

A 33 board with 8 tiles (each tile has a number from 1 to 8) and a single empty space is provided. The goal is to use the vacant space to arrange the numbers on the tiles so that they match the final arrangement. Four neighboring (left, right, above, and below) tiles can be slid into the available area.

Therefore, C++ programs create a word-search puzzle game. #include <iostream> #include <cstring>

Learn more about the program here:

https://brainly.com/question/11023419

#SPJ1

You are building a predictive solution based on web server log data. The data is collected in a comma-separated values (CSV) format that always includes the following fields: date: string time: string client_ip: string server_ip: string url_stem: string url_query: string client_bytes: integer server_bytes: integer You want to load the data into a DataFrame for analysis. You must load the data in the correct format while minimizing the processing overhead on the Spark cluster. What should you do? Load the data as lines of text into an RDD, then split the text based on a comma-delimiter and load the RDD into a DataFrame. Define a schema for the data, then read the data from the CSV file into a DataFrame using the schema. Read the data from the CSV file into a DataFrame, infering the schema. Convert the data to tab-delimited format, then read the data from the text file into a DataFrame, infering the schema.

Answers

Answer:

see explaination

Explanation:

The data is collected in a comma-separated values (CSV) format that always includes the following fields:

? date: string

? time: string

? client_ip: string

? server_ip: string

? url_stem: string

? url_query: string

? client_bytes: integer

? server_bytes: integer

What should you do?

a. Load the data as lines of text into an RDD, then split the text based on a comma-delimiter and load the RDD into DataFrame.

# import the module csv

import csv

import pandas as pd

# open the csv file

with open(r"C:\Users\uname\Downloads\abc.csv") as csv_file:

# read the csv file

csv_reader = csv.reader(csv_file, delimiter=',')

# now we can use this csv files into the pandas

df = pd.DataFrame([csv_reader], index=None)

df.head()

b. Define a schema for the data, then read the data from the CSV file into a DataFrame using the schema.

from pyspark.sql.types import *

from pyspark.sql import SparkSession

newschema = StructType([

StructField("date", DateType(),true),

StructField("time", DateType(),true),

StructField("client_ip", StringType(),true),

StructField("server_ip", StringType(),true),

StructField("url_stem", StringType(),true),

StructField("url_query", StringType(),true),

StructField("client_bytes", IntegerType(),true),

StructField("server_bytes", IntegerType(),true])

c. Read the data from the CSV file into a DataFrame, infering the schema.

abc_DF = spark.read.load('C:\Users\uname\Downloads\new_abc.csv', format="csv", header="true", sep=' ', schema=newSchema)

d. Convert the data to tab-delimited format, then read the data from the text file into a DataFrame, infering the schema.

Import pandas as pd

Df2 = pd.read_csv(‘new_abc.csv’,delimiter="\t")

print('Contents of Dataframe : ')

print(Df2)

The assignment is to get an integer from input, and output that integer squared, ending with newline. (Note: This assignment is configured to have students programming directly in the zyBook. Instructors may instead require students to upload a file). Below is a program that's been nearly completed for you.

Click "Run program". The output is wrong. Sometimes a program lacking input will produce wrong output (as in this case), or no output. Remember to always pre-enter needed input.
Type 2 in the input box, then click "Run program", and note the output is 4.
Type 3 in the input box instead, run, and note the output is 6.
When students are done developing their program, they can submit the program for automated grading.

Click the "Submit mode" tab
Click "Submit for grading".
The first test case failed (as did all test cases, but focus on the first test case first). The highlighted arrow symbol means an ending newline was expected but is missing from your program's output.
Matching output exactly, even whitespace, is often required. Change the program to output an ending newline.

Click on "Develop mode", and change the output statement to output a newline: print(userNumSquared). Type 2 in the input box and run.
Click on "Submit mode", click "Submit for grading", and observe that now the first test case passes and 1 point was earned.
The last two test cases failed, due to a bug, yielding only 1 of 3 possible points. Fix that bug.

Click on "Develop mode", change the program to use * rather than +, and try running with input 2 (output is 4) and 3 (output is now 9, not 6 as before).
Click on "Submit mode" again, and click "Submit for grading". Observe that all test cases are passed, and you've earned 3 of 3 points.

The assignment is to get an integer from input, and output that integer squared, ending with newline.

Answers

The issue in the code is that you're adding instead of multiplying the number by itself.

You can fix it by changing the second line to one of the two:

userNumSquared = userNum * userNum

or

userNumSquared = userNum ** 2

China is selling school supplies in the United States for very low prices, even lower than the
preventing prices in China, and thus making it extremely difficult for American manufacturers to
compete. This is referred to as

Answers

Answer:

dumping.

Explanation:

dumping. China is selling school supplies in the United States for very low prices, even lower than the prevailing prices in China, and thus making it extremely difficult for American manufacturers to compete. This is referred to as DUMPING.

Imagine that you have an image that is too dark or too bright. Describe how you would alter the RGB settings to brighten or darken it. Give an example.

Answers

turn the brightness up

ANSWER ASAP! Which statements are true? Select 4 options.


A function can have many parameters.


A function can have a numeric parameter.


A function can have only one parameter.


A function can have a string parameter.


A function can have no parameters.


Please answer asap. Thank you.

Answers

Answer:

A,B,D and E are true

Explanation:

In many if not all programming languages, a function can have zero or more parameters of arbitrary type.

i have no idea how to get this answer, but here.

edge 2021

ANSWER ASAP! Which statements are true? Select 4 options.A function can have many parameters.A function

Was able to solve it by myself. Thank you very much

Answers

Answer:

i hope you have a good day :) hehe

Explanation:

Write a short story using a combination of if, if-else, and if-if/else-else statements to guide the reader through the story.


Project requirements:


1. You must ask the user at least 10 questions during the story. – 5 points

2. The story must use logic statements to change the story based on the user’s answer – 5 points

3. Three decision points must offer at least three options (if-if/else-else) – 5 points

4. Six of your decision points must have a minimum of two options (if-else) – 4 points

5. One decision points must use a simple if statement - 1 points

Answers

Here's an example implementation of the classes described:

How to implement the class

class Person:

   def __in it__(self, name, ssn, age, gender, address, telephone_number):

       self.name = name

       self.ssn = ssn

       self.age = age

       self.gender = gender

       self.address = address

       self.telephone_number = telephone_number

class Student(Person):

   def __in it__(self, name, ssn, age, gender, address, telephone_number, gpa, major, graduation_year):

       super().__in it__(name, ssn, age, gender, address, telephone_number)

       self.gpa = gpa

       self.major = major

       self.graduation_year = graduation_year

class Employee(Person):

    def __in it__(self, name, ssn, age, gender, address, telephone_number, department, job_title, hire_year):

super().__in it__(name, ssn, age, gender, address, telephone_number)      

   

class HourlyEmployee(Employee):

   def __in it__(self, name, ssn, age, gender, address, telephone_number, department, job_title, hire_year, hourly_rate, hours_worked, union_dues):

       super().__in it__(name, ssn, age, gender, address, telephone_number, department, job_title, hire_year)

       self.hourly_rate = hourly_rate

       self.hours_worked = hours_worked

       self.union_dues = union_dues

class SalariedEmployee(Employee):

   def __in it__(self, name, ssn, age, gender, address, telephone_number, department, job_title, hire_year, annual_salary):

       super().__in it__(name, ssn, age, gender, address, telephone_number, department, job_title, hire_year)

       self.annual_salary = annual_salary

Use the drop-down menus to choose the file format that best corresponds to the video described.

your favorite band’s new music video:
the download of season 1 from a TV series
a pop vocalist’s music video posted online for purchase:
online streaming from a radio station:

Answers

The download of season 1 from a TV series: MKV (Matroska Video) is the best corresponds to the video described.

MKV (Matroska Video) is a popular video container format that is commonly used for storing high-quality video and audio files. It is a versatile format that can support various types of video codecs, audio codecs, and subtitle tracks.

When it comes to downloading TV series, MKV files are often preferred because they offer several advantages. Here are a few reasons why MKV is considered a good choice for TV series downloads:

Quality: MKV files can store video and audio in high quality without significant loss of data. They support various video codecs such as H.264, HEVC (H.265), and VP9, which are known for their efficient compression and excellent visual quality.

Learn more about visual quality on:

https://brainly.com/question/3466491

#SPJ1

Define the 7 steps to web design.

Define the 7 steps to web design.

Answers

I think it’s what he said
Other Questions
the mayor of a town has proposed a plan for the construction of an adjoining bridge. a political study took a sample of 1100 voters in the town and found that 55% of the residents favored construction. using the data, a political strategist wants to test the claim that the percentage of residents who favor construction is more than 51% . determine the p-value of the test statistic. round your answer to four decimal places. Roberto wants to display his 18 sports cards in an album. Some pages hold 2 cards and others hold 3 cards. How many different ways can Robert display his figures? Compare the emergence of advanced civilizations in Meso and South America with the four early river valley civilizations.Which of the following did ancient river civilizations and ancient Native American civilizations have in common?A: a set of written laws B: An alphabetC: homes built from locally available materialsD: religious dancing ceremonies Nucleotides are referred to by_____they contain . Picture a desert habitat. It's hot, dry, and sandy. It's not a very colorful landscape, and it doesn't rain very often. Design your own "perfect organisms" - one plant and one animal Draw your organisms, label their adaptations, and write 2-3 sentences explaining why they're perfect for the desert environment. 2.4 Exercises for Chapter 4 of the Lecture Notes 1. If a person healthy healthy bevels of glucose (no pre-diabetes, no diabetes) his/her blood glucose is Normally distributed N(83,10). Certain person, (who has never been previously tested positive for high glucose levels) had blood test reading of 100 (which formally should be diagnosed as pre-diabetes). We know that the test result is not perfect and has Normal distribution with standard deviation equal to 15. (a) Find the posterior distribution: (b) Find the Bayesian estimate of the glucose level of this person A nurse is providing prenatal education to a group of pregnant teenagers. One of the group members asks how the baby develops soon after conception. Which is an accurate statement from the nurse about the embryonic stage?All basic organs are established here Topic 2: Performance Assessment Form A Copy 1 Due 12/02/20 7:30am The depth of the submarine is 50 ft below sea level when it starts to descend at a rate of 10.5 ft/s. It dives at that rate for 5 S. Part A You want to model this descent with a linear equation. Determine the slope and the y-intercept. 5 s The slope is the rate of descent 10.5 ft/s The y-intercept is the initial depth of the submarine 50 ft Part B Write the equation in slope-intercept form for the depth of the submarine y, in feet, below sea level over time x, in seconds. y = X + Review progress True or False: The cost per exposure of most online advertising channels is difficult to account for. TRUE OR FALSE? Mai's mother was an outcast in her old country. What does the word apparent mean in apparent visual magnitude How do desempua and emilia simultaneously comply and defy restrictions on their lives and behaviors How did JFKs presidency affect the relationship between the US and the Soviet Union during his presidency? Help me ASAP! ANSWER ALL Coal can contain up to about 2000 ppm (by mass) of natural uranium. What is the ratio of chemical energy content of 1kg coal (MJ/kg) with the available fission energy from the 235U content of the uranium (as used in a thermal reactor). Note that 1 MeV = 1.6x10^-19 MJ heri owns one of three shoe repair shops in his city. then he loses some of his customers when a luggage repair shop expands its services to include shoe repair as well as luggage repair. which of the five forces in the five force framework is heri facing when the luggage shop expands its services? threat of existing competitors bargaining power of buyers threat of entry threat of potential substitutes .What role do "happy" and ecologically functional oyster beds play in the balanceof the biosphere (whole world)? How could the atmosphere and the lithosphereaffect the functioning of oyster reefs in the hydrosphere? A music production company needs to save music at the highest quality possible. They would like to make use of compression if possible.(a) Explain how compression can help the music production company. What will be your solution if you have a minimal time to do your workout? You have $9 and earn $0.75 for each cup of orange juice you sell. Write an equation that represents the total amount $A (in dollars) you have after selling $j cups of orange juice. $A