Which online text source would include a review of a new TV show?
an academic journal
a blog
an e-book
an encyclopedia

Answers

Answer 1

Answer:

Blog

Explanation:

Answer 2

Online text sources include blogs, e-books, encyclopaedias, and e-zines. As a result, options A, B, C, and D are correct.

What is a text source?

A source is a book or other material that contains the data that has been used, whereas a citation is the actual statement of the starting point. They were researchers who also worked as professors, writers, and other professionals, and they published books and articles.

Online text sources are those that can be accessed from anywhere and are available on the internet. The online text shows that anyone can see or exceed including blogs, e-books, encyclopaedias, and e-zines.

These are available for further studies and research. Also to give information this can be a source. Therefore,  options A, B, C, and E is the correct option.

Learn more about text sources, here:

brainly.com/question/19131568

#SPJ6


Related Questions

Write a Python function that will accept as input three string values from a user. The method will return to the user a concatenation of the string values in reverse order. The function is to be called from the main method.

Answers

Answer:

Following are the program in python language

def cat_rev(x,y,z): # function definition  

   x=x[::-1]# reverse the first string  

   y=y[::-1]# reverse the second string  

   z=z[::-1]# reverse the third string  

   z=x+y+z;  #concat the string

   return(z)#return the string

   #main method

s=input("Enter the first string:") #read the first string

r=input("Enter the second string:")#Read the second string  

t=input("Enter the third string:")#Read the third string by user

rev1= cat_rev(s,r ,t ) #function calling

print(rev1)# display reverse string

Output:

Enter the first string:san

Enter the second string:ran

Enter the third string:tan

nasnarnat

Explanation:

Following are the description of program

In the main function we read the three value by the user in the "s", "r" and "t" variable respectively.After that call the function cat_rev() by pass the variable s,r and t variable in that function .Control moves to the function definition of the cat_rev() function .In this function we reverse the string one by one and concat the string by using + operator .Finally in the main function we print the reverse of the concat string   .

what is an operating system​

Answers

An operating system (OS) is a system software program that operates, manages, and controls the computer's hardware and software resources. The OS establishes a connection between the computer hardware, application programs, and the user.

Its primary function is to provide a user interface and an environment in which users can interact with their machines. The OS also manages the storage, memory, and processing power of the computer, and provides services like security and network connectivity.

Examples of popular operating systems are Windows, macOS, Linux, iOS, and Android. These OSs have different user interfaces and feature sets, but they all perform the same essential functions. The OS is a fundamental component of a computer system and is responsible for ensuring the computer hardware operates efficiently and correctly.

The OS performs several key tasks, including:

1. Memory management: Allocating memory to applications as they run, and releasing it when the application closes.
2. Processor management: Allocating processor time to different applications and processes.
3. Device management: Controlling input/output devices such as printers, scanners, and other peripherals.
4. Security: Protecting the computer from malware, viruses, and other threats.
5. User interface: Providing a graphical user interface that enables users to interact with their machine.

For more such questions on operating system, click on:

https://brainly.com/question/22811693

#SPJ8

What is this screen called? (I attached a picture)
A. Graph Screen
B. Y Editor Screen
C. Table Screen
D. Window Screen

What is this screen called? (I attached a picture)A. Graph ScreenB. Y Editor ScreenC. Table ScreenD.

Answers

Answer:

i believe it's a y editor screen

The answer is graph screen (:

Declare an array to store objects of the class defined by the UML. Use a method from the JOptionPane class to request the length of the array from the user.

Declare an array to store objects of the class defined by the UML. Use a method from the JOptionPane

Answers

Answer:

it's a test ?                                                  

The showInputDialog method is a part of the JOptionPane class in Java Swing, which provides a set of pre-built dialog boxes for displaying messages and obtaining user input.

Here's an example of how you can declare an array to store objects of a class, and use a method from the JOptionPane class to request the length of the array from the user:

import javax.swing.JOptionPane;

public class MyClass {

   // Define your class according to the UML

   public static void main(String[] args) {

       // Request the length of the array from the user using JOptionPane

       String lengthInput = JOptionPane.showInputDialog("Enter the length of the array:");

       // Parse the user input to an integer

       int arrayLength = Integer.parseInt(lengthInput);

       // Declare the array to store objects of the class

       MyClass[] myArray = new MyClass[arrayLength];

       // Now you have an array of the desired length to store objects of your class

       // You can proceed to instantiate objects and store them in the array

   }

}

In this example, we use the showInputDialog method from the JOptionPane class to display an input dialog box and prompt the user to enter the desired length of the array. The user's input is then parsed into an integer using Integer.parseInt() and stored in the arrayLength variable.

Therefore, an array myArray of type MyClass is declared with the specified length, ready to store objects of the MyClass class.

For more details regarding the showInputDialog method, visit:

https://brainly.com/question/32146568

#SPJ2

you work as a network administrator in a domain environment. you have a new firewall and need to configure it. you are asked to create web filtering and firewall rules based on domain groups. which of the following protocol will you use to integrate your firewall directly with active directory?

Answers

The Lightweight Directory Access Protocol can be used to directly link a firewall with Active Directory for domain group-based web filtering and firewall rules (LDAP).

Which of the following protocols will you implement in order to integrate your firewall with Active Directory quizlet directly?

A lightweight directory access protocol called LDAP is used to authenticate and grant access to users. This protocol is used to link Active Directory with the firewall. Open LDAP is not a protocol, but rather LDAP-using software.

Which of these protocols doesn't have an integrity check field of some kind in its header?

IPv6 does not have a checksum field of its own. as opposed to this, IPv6 mandates that the transport layer header

To know more about Protocol visit:-

https://brainly.com/question/27581708

#SPJ1

XYZ is a well-renowned company that pays its salespeople on a commission basis. The salespeople each receive 700 PKR per week plus 9% of their gross sales for that week. For example, a salesperson who sells 4000 PKR worth of chemicals in a week receives 700 plus 9% of 5000 PKR or a total of 1060 PKR. Develop a C++ program that uses a Repetitive Structure (while, for, do-while) to manipulate each salesperson’s gross sales for the week and calculate and displays that salesperson’s earnings.

Answers

Answer:

#include<iostream>

#include<conio.h>

using namespace std;

float calculateGross(float sale)

{

return (sale/100*9) + 700;

}

main()

{

float sale[3] = { 5000,7000,9000}, Totalsale =0;

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

{

cout<<"Sales Person "<<i+1<<" Gross Earnings: "<<calculateGross(sale[i])<<" PKR\n";

Totalsale += calculateGross(sale[i]);

}

cout<<"Total Gross Sales Earnings for week: "<<Totalsale<<" PKR\n";

return 0;

}

Jim is creating a form with validation. What are the two validation modes available to him?

_____ only checks if a user has entered data in a mandatory field, whereas ______ checks if the data the user entered is correct or valid.

Basic Validation
Data Validation

Answers

Basic validation
Data validation

Answer: 1st blank: Basic Validation. 2nd blank: Data Validation

Explanation:

Got it right on Plato.

Your game design company has recently asked all employees to use a specific personal information management application (PIM) to increase workplace efficiency. The PIM is collaborative, so contacts, calendar entries, and notes are shared across the team. Several team members are resistant to the idea, saying it interrupts their workflow, and they prefer their own way of handing contacts, notes, etc. Others don’t want their own notes to be seen by their coworkers.

Answers

Answer:For example, an office worker might manage physical documents in a filing cabinet by placing them in folders organized alphabetically by project name, or might manage digital documents in folders in a hierarchical file system.

Explanation:

Question 1
What are the four layers of the computer architecture?

Answers

Explanation:

The layers of computer architecture are the hardware, operating system, software, and user layers.

Answer:

The four layers are hardware, operating system, software, and user layers.

Explanation:

Because of inability to manage those risk. How does this explain the team vulnerability with 5 points and each references ​

Answers

The team is vulnerable due to a lack of risk assessment. Without risk understanding, they could be caught off guard by events. (PMI, 2020) Ineffective risk strategies leave teams vulnerable to potential impacts.

What is the inability?

Inadequate contingency planning can hinder response and recovery from materialized risks. Vulnerability due to lack of contingency planning.

Poor Communication and Collaboration: Ineffective communication and collaboration within the team can make it difficult to address risks collectively.

Learn more about inability  from

https://brainly.com/question/30845825

#SPJ1

________ is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data.

Answers

Common Gateway Interface is a standard method or protocol for web pages to request special processing on the web server, such as database queries, sending e-mails, or handling form data. The correct option is B.

What is Common Gateway Interface?

Common Gateway Interface (CGI) is a computing interface specification that allows web servers to execute an external program, typically to process user requests.

Such programs are typically written in a scripting language and are known as CGI scripts, but they may also include compiled programs.

The Common Gateway Interface (CGI) is a standard method or protocol for web pages to request special processing on the web server, such as database queries, e-mail transmission, or form data handling.

Thus, the correct option is B.

For more details regarding Common Gateway Interface, visit:

https://brainly.com/question/13147329

#SPJ1

Your question seems incomplete, the missing options are:

Fieldset

Common Gateway Interface

JavaScript

none of these

How APIs can be useful for data collection ?​

Answers

Answer:

These softwares are a program that is a connection between computer networks, which can be useful for storing data.

XYZ Medicomplex hospital have recently installed a large computer system having a high performance processor and about 25 PCs attached with the processor through a Local Area Network (LAN). You have been selected as Information System Auditor and are asked to perform an audit ffor the hospital. What are the important steps you have to go through for this audit? Write your answer in maximum 200 words.

Answers

An IT audit is required to guarantee that your system is secure and not exposed to assaults. An IT audit's major goal is to assess the availability of computer systems, the security, and confidentiality of information within the system, and if the system is accurate, reliable, and timely.

What should an IT Audit Include?

Depending on the size of your firm, you may do a single comprehensive IT audit or examine particular sections of your infrastructure. The aim is to identify the risks associated with your IT systems and discover strategies to minimize those risks, whether by resolving current issues, improving staff behavior, or deploying new technologies.

An IT audit must involve the following steps:

Determine the goal of the IT audit.Create an audit plan to meet those goals.Collect and analyze all relevant IT controls' data and information.Execute tests like data extraction or a thorough software analysis.Any discoveries should be reported.Follow-Up

Learn more about IT Audit:
https://brainly.com/question/14277768
#SPJ1

The term digital divide refers to "the gap between people with effective access to digital and information technology and those with very limited or no access at all." Could you imagine a life without computers and readily-available internet access? The influence of the Internet can be seen as many of our churches now spread the word using high-tech media productions and sophisticated video presentations. Discuss some of factors that influence unequal Internet access for some members of society.

Answers

Answer:

Factors Influencing Unequal Internet Access:

1. Age: Children under 10 and adults over 60 do not enjoy the same level of access to the internet.  For children 10, their parents restrict their use of the internet.  Most adults over 60 lack the interest and competence to utilize access to the internet.

2. Sex: Men usually enjoy better access to the internet than women.  While men explore many sources of internet information, women usually restrict themselves to social media, which is usually their favorites, giving the high-level chatting that is involved in social media.

3. Nationality:  Access to the internet is not available equally in all the nations of the world.  In communist China, there are government-mandated restrictions placed on citizens.  In some sub-Saharan African countries, access to the internet is a luxury that many cannot afford and it is not easily available due to lack of basic internet infrastructure.

4. Education is another factor that influences access to the internet.  The level of education dictates whether somebody has access or not.  Many illiterate men and women who do not value the internet.  What you do not value, you do not use.  What you do not use is not accessible to you.

5. Income:  This is another important factor that influences access to the internet.  In some countries, the availability of high-speed network remains unaffordable to the majority of the population.  They only have telephone networks to use their internet access, due to the high cost of high-speed digital satellite-based networks.  Many people can only access the internet on public WiFis.

Explanation:

According to wikipedia.com, "Internet access is the ability of individuals and organizations to connect to the Internet using computer terminals, computers, and other devices; and to access services such as email and the World Wide Web."

Prepare a document to list down at least 10 features/operations (on process and thread) you can do using Process Explorer.

Answers

Answer:

The operations that can be carried out using process explorer include but are not limited to:

Explanation:

Killing a Process TreeEnding or terminating a processSuspending a processExamining which process has locked a fileManually detecting a virusUnhiding a process. This can help to callup the window for a process that is not visible under normal explorer activitiesMonitor CPU usage setting the priority of a processchanging a service process's access securityMonitoring Graphics Processing Unit

Cheers

5) When asked for an insurance quotation, an auto insurance compaty looks up the base rate of insuring a specific make, model and year of car. It then mutiplies the base rate by percentages according to the business rules below to calculate the quote for a customer:
• Drivers over 55 year of age with good driving records pay the 90% of the base rate
• Drivers who are male and under 25 years of age pay 150% of the base rate
• Anyone whoe uses the car for business pay a premium of 120% of what they would pay for personal use only
Example: the base rate for a 2005 Honda Civic might be $500.000. A retired senior with a good driving record would pay $450.000 for coverage to for insurance to drive 2005 Honda Civic. However, if that senior has a business as a messenger for which he uess the car, his rate becomess $540.000
a. Draw a decision table to calculate the quotation for a client
b. Use the decision table above to help design test cases for the test objective: Every driver who requests a quotation is tild the correct rate.
Notes: “Criteria for success” refers to deciding whether application passes the test, not whether the driver gets insurance.

Answers

The decision table is given in the image attached.

What is the insurance  about?

b) Test Cases:

Valid driver, under 25 years old, personal use only.

Valid driver, under 25 years old, business use.

Valid driver, over 55 years old, personal use only.

Valid driver, over 55 years old, business use.

Valid driver, 25 years or older, male, personal use only.

Valid driver, 25 years or older, male, business use.

Valid driver, 25 years or older, female, personal use only.

Valid driver, 25 years or older, female, business use.

Invalid driver (e.g. suspended license).

Invalid car make/model/year.

Therefore,  In the context of the auto insurance example given, the decision table would outline the base rate for a specific make, model and year of car, along with the percentage increase or decrease depending on the driver's age, gender, and whether the car is used for business purposes.

Read more about insurance here:

https://brainly.com/question/25855858

#SPJ1

5) When asked for an insurance quotation, an auto insurance compaty looks up the base rate of insuring

Describe the website you are investigating and explain its two important values.

Answers

The kind of the website that i am investigating  is Ecommerce websites.

The important values of Ecommerce websites?It is very Easy to operate and use.It is known to often uses Personalization in service delivery.

What is e-commerce website?

E-business websites is known to be a kind of an online storefronts or what is known to be a form of an online marketplaces.

Note that this kind of an online marketplace is one that often make it to be very much easier to buy or sell goods and services between merchants and customers online. Examples of e-business websites are Etsy, Fiverr, and others.

Hence, The kind of the website that i am investigating  is Ecommerce websites.

Learn more about Ecommerce websites from

https://brainly.com/question/24597838

#SPJ1

which describes a platform

Answers

Answer:

Explanation: In IT, a platform is any hardware or software used to host an application or service. An application platform, for example, consists of hardware, an operating system and coordinating programs that use the instruction set for a particular processor or microprocessor.

hope it is helpful

This assignment is designed to expand your understanding of sequencing diagnoses codes and how the Official Coding Guidelines and the Chapter-Specific Coding Guidelines direct code application and sequence. Review the following resources to expand your knowledge regarding the understanding of the selection of First-Listed or Principal Diagnosis as they pertain to outpatient or inpatient settings:
Sequence ICD-10-CM Codes for Proper Payment (Links to an external site.)
Diagnosis Codes and Sequencing (Links to an external site.)
When You Can and Cannot Code a Diagnosis (Links to an external site.)
Principal Diagnosis - ICD-10-CM Guidelines for Inpatient Coding (Links to an external site.)
Only one group member should upload the discussion submission. Once the discussion is graded, all participating group members will receive a grade in Canvas. Once all discussions have been graded, you will be able to review all group submissions.

Answers

This assignment is about learning the rules and guidelines for selecting and sequencing ICD-10-CM codes, which are codes used to describe medical diagnoses in medical billing. The goal is to understand the concepts of First-Listed or Principal Diagnosis and how they are used in different settings such as outpatient or inpatient. The resources provided will help to expand knowledge and understanding of the proper coding and sequencing of diagnoses codes for proper payment. Only one group member should submit the discussion, but all group members will receive a grade once it has been graded.

ICD-10-CM stands for International Classification of Diseases, 10th Revision, Clinical Modification. It is a standardized system used for coding and categorizing diseases, health conditions, and symptoms in medical record keeping and reporting. The ICD-10-CM is maintained by the World Health Organization (WHO) and is used by healthcare providers and insurance companies in the United States for classifying diagnoses for insurance reimbursement purposes.

Learn more about ICD-10-CM: https://brainly.com/question/27932590

#SPJ4

What tips would you give on how to create a well-formatted table?

Answers

Answer:

a wire

Explanation:

a wire

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

does anybody have any questions.

Answers

Answer:

do you know any editing apps for photography class?

Explanation:

^

Which of these is not a way of avoiding email fraud and scam?

Which of these is not a way of avoiding email fraud and scam?

Answers

Answer:

The third one definitely (If you aren't sure where it goes click it) Ur in college right

Explanation:

Please don't answer if you don't know Type the correct answer in the box
. Spell all words correctly. How does SQA differ from SQC? SQA involves activities to evaluate software processes, and SQC involves activities that ensure quality software.

Answers

Software Quality Assurance (SQA) and Software Quality Control (SQC) are two distinct aspects of quality management in software development, each with its own focus and activities.

How different are they?

SQA encompasses efforts directed toward assessing and enhancing the procedures of software development at every stage. The main emphasis is on guaranteeing that appropriate techniques, norms, and protocols are adhered to in order to create software of superior quality. SQA encompasses various tasks, including scrutinizing requirements, conducting process audits, and administering quality control procedures.

Conversely, SQC pertains to actions that prioritize assuring the quality of the actual software product. This involves employing methods such as testing, inspections, and reviews in order to detect flaws and guarantee that the software satisfies the stated demands and standards. The goal of SQC is to identify and rectify any shortcomings or irregularities within the software product.

To put it succinctly, SQA focuses on assessing and enhancing the manner in which software is developed, while SQC is primarily focused on verifying the excellence of the resulting software product. SQC and SQA both play a vital role in attaining an optimum level of software quality.

Read more about software here:

https://brainly.com/question/28224061

#SPJ1

C++ program

Sort only the even elements of an array of integers in ascending order.

Answers

Answer: Here is one way you could write a C++ program to sort only the even elements of an array of integers in ascending order:

Explanation: Copy this Code

#include <iostream>

#include <algorithm>

using namespace std;

// Function to sort only the even elements of an array in ascending order

void sortEvenElements(int arr[], int n)

{

   // create an auxiliary array to store only the even elements

   int aux[n];

   int j = 0;

   // copy only the even elements from the original array to the auxiliary array

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

       if (arr[i] % 2 == 0)

           aux[j++] = arr[i];

   // sort the auxiliary array using the STL sort function

   sort(aux, aux + j);

   // copy the sorted even elements back to the original array

   j = 0;

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

       if (arr[i] % 2 == 0)

           arr[i] = aux[j++];

}

int main()

{

   // test the sortEvenElements function

   int arr[] = {5, 3, 2, 8, 1, 4};

   int n = sizeof(arr) / sizeof(arr[0]);

   sortEvenElements(arr, n);

   // print the sorted array

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

       cout << arr[i] << " ";

   return 0;

}

How would you spend your days if you had unlimited resources?

Answers

The ways that I spend my days if you had unlimited resources by helping the needy around me and living my life in a Godly way.

Are all human resources unlimited?

Human wants are said to be consistently changing and infinite, but the resources are said to be always there to satisfy them as they are finite.

Note that The resources cannot be more than the amount of human and natural resources that is available and thus The ways that I spend my days if you had unlimited resources by helping the needy around me and living my life in a Godly way.

Learn more about unlimited resources from

https://brainly.com/question/22964679

#SPJ1  

digital learning can help students who enjoy

structure and face to face interaction
flexibility and independence
homework and test
classrooms and support

Answers

Answer:

B

Explanation:

Hope this helps! :)

The digital learning can help students who enjoy classrooms and support. The correct option is 4.

What is digital learning?

Digital learning can be defined as a type of education in which the internet, a computer, or a network of computers, and softwares are used to connect students and teachers in order to provide educational services.

Digital learning brings together facilities such as classrooms and support in an effort to help and provide the necessary assistance to students who have chosen the digital medium but still enjoy the comfort of structure and face-to-face interaction.

Regardless of their learning style or preference, digital learning can benefit a variety of students.

It offers a variety of tools and resources to improve the learning experience while also accommodating various schedules and needs.

Thus, the correct option is 4.

For more details regarding digital learning, visit:

https://brainly.com/question/20008030

#SPJ7

Write VHDL code for the circuit corresponding to an 8-bit Carry Lookahead Adder (CLA) using structural VHDL (port maps). (To be completed before your lab session.)

Answers

Answer:

perdo si la pusiera es español te ayudo pero no esta en español

Set the width attribute of the tag to 175.

What am I doing wrong?

Set the width attribute of the tag to 175.What am I doing wrong?

Answers

You can use this code in order to set the width attribute of the tag to 175.<img src="image . jpg" alt="My Image" width="175">

What does this code snippet do?

To achieve a width of 175 for a tag, you must indicate the tag name and incorporate its assigned attribute alongside its appropriate value.

As an example, if you're aiming to implement particular dimensions on an image tag, you would use this code:

<img src="image . jpg" alt="My Image" width="175">

In this instance, the specified width is equal to 175 pixels which is what sets the design apart from other options.

You can ultimately customize the amount of the width attribute as per your necessity making sure to include both the corresponding tag label and the associated attribute designation in your code.

Read more about HTML here:

https://brainly.com/question/4056554

#SPJ1

A motor takes a current of 27.5 amperes per leaf on a 440-volt, three-phase circuit. The power factor is 0.80. What is the load in watts? Round the answer to the nearer whole watt.

Answers

The load in watts for the motor is 16766 watts

To calculate the load in watts for the given motor, you can use the following formula:

Load (W) = Voltage (V) × Current (I) × Power Factor (PF) × √3

In this case:
Voltage (V) = 440 volts
Current (I) = 27.5 amperes per phase
Power Factor (PF) = 0.80
√3 represents the square root of 3, which is approximately 1.732

Now, plug in the values:

Load (W) = Voltage (V) × Current (I) × Power Factor (PF) × √3

Load (W) = 440 × 27.5 × 0.80 × 1.732

Load (W) = 16765.7 watts

Rounded to the nearest whole watt, the load is approximately 16766 watts.

Know more about the motor here :

https://brainly.com/question/29713010

#SPJ11

Other Questions
which agency has a comprehensive website dedicated to improving the quality, safety, efficiency, and effectiveness of health care for all americans? pre-hire questions pertaining to religion, sex, national origin, or age are allowed if: Which of the following is a property of bases? (1 point)A sour taste B feels SlipperyC pH less than 7D releases hydrogen ions in waterPLEASE HELP I DONT UNDERSTAND 12 points for whoever copy the pt4 worksheet to a new worksheet named pt5. delete the text in cell a1. remove the date and department fields from the pivottable. add a slicer for the department field and a timeline for the date field. use the slicer and the timeline to filter the pivottable to show the total sales amount for each manager for the kitchen and bath and plumbing departments for april 2015 through october 2015. What is x and the unknown angle? May I also get a brief explanation of how to do it? please help thanks and no LINKS!!!! List 4 activities that require safety equipment and explain why its important to wear safety gear for these activities. the nurse is reviewing the electronic health record of a client admitted with syndrome of inappropriate antidiuretic hormone (siadh). which medication order would the nurse question? sam has a fear of snakes. this fear prevents him from joining any groups that socialize outdoors because he is afraid of encountering a snake in such situations. his disorder is an example of a/an . What is the earliest known human-like creature who displayed human-like intelligence called?Neolithic PeopleEarly Stone PeopleMesolithic PeopleNeanderthal People Mr. Jones's prescription calls for 1.04 tablets per day. Based on this information, how many tablets should Mr. Jones take per day? a) 1.25 O b) 1.5 c) 1 O d) 2 Which statement best describes a dynamic character? A circular kiddie pool has an area of about 28 square feet. An inflatable full-size circular pool has an area of about 113 square feet. How much greater A survey finds that miners in west virginia are less healthy than miners in any other state. passing federal laws regulating mining conditions would be an example of which broad economic goal? a. equity b. freedom c. growth d. security A painting is 15 in tall and 20 in wide. If it is reducted to a width of 4 in, then how tall will it be? a survey reports that 67% of college students prefer to drink more coffee during the exams week. if we randomly select 80 college students and ask each whether they drink more coffee during exams week. what is the probability that at most 60 say that they drink coffee during exam week? Which statement best describes the relationship between observations and conclusions? A. Observations are based on Conclusions B. Conclusions aare based on observations c. Obserations and conclusions both depend on research D. Neither conclsions nor observations depend on research Which statement describeWhich statement describes the dependent variable? It is the causal variable. It is the controlled variable. It is the stimulus variable. It is the affected variable.s the dependent variable? comparative study of combination therapy with non-steroidal anti inflammatory drugs and different doses of low level laser therapy in acute low back pain. recently, gartner research and 1to1 media recognized microsoft dynamics customer relationship management (crm) and its xrm framework for delivering increased productivity and cost savings for customers worldwide. microsoft experts work individually with customers to flesh out what issues they have and adapt their enterprise software to meet the unique needs of that customer. the microsoft expert is most likely engaged in