PLEASE ILL MARK BRAINLIEST
A ____ is a distinctive characteristic of a virus or virus family.
(this is computer stuff)

Answers

Answer 1

Answer:

it is a capsid


Related Questions

Q) write a code that reads a given array and calculates the SUM of its elements.

Answers

Answer:

See the explanation below.

Explanation:

If don't know which language you are using, but the basic pseudo code for this problem will be:

variable sum = 0;

for ( i = 0;  i < array.length;  i ++) {

    sum += array[i];

}

print(sum);

Best Regard!

How can we work together to fix problems with our websites

Answers

Add a Value Proposition. ...
Website Navigation. ...
Call to Action Text. ...
Call to Action Colors. ...
Try The 10-Foot Test. ...
Carousels. ...
Social Proof. ...
Testimonial Pages.

The question "How can we work together to fix problems with our websites" is not peculiar to programmers who are consulted to solve a website problem.

The best response to the question includes we will"

add a value propositioncreate a website navigationcall to action textcall to action colorstry the 10-foot testuse a social proofcreate a testimonial pages.

Read more about website problem

brainly.com/question/25537936

PLEASE HELPPPPP ASAP, 50 POINT'S + BRAINLIEST

1.) Online crimes causing loss of money: give 5 names and examples to each

2.) Online misconduct or crimes targeting medical offices and services: give 5 names and examples to each

3.) Online misconduct or crimes that you have experienced: give 5 names and examples to each

Answers

Answer:

1. Cybercrimes are online crimes that cause loss of money some examples are: Identity fraud, Cyber bribery, Debit/credit card fr/ud, and Email fr/ud.  

2. In medical offices devices linked to CT scans are able to be h/cked, there is r/nsomw/re that uses their devices. Since medic/l computers are always linked to the internet. it makes it easier for them to be h/cked. They make an employee click on an e-mail carrying m/lw/re, then the cybercrimin/ls encrypt p/tient data then dem/nd p/yment for its decryption.

3. This is a personal question but if you have ever been sc/mmed or witnessed someone being sc/mmed or almost got  sc/mmed it might apply to this question

Check ALL of the correct answers.
What would the following for loop print?
for i in range(2, 4):
print(i)
2
2
3
4.
1

Help now please

Answers

Answer:

2,3,4

Explanation:

Starts at two, goes to four. Thus it prints 2,3,4

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

What does this say in morse code?
-. . ...- . .-. / --. --- -. -. .- / --. .. ...- . / -.-- --- ..- / ..- .--.

Answers

Answer:

That it is time for lunch?

Explanation:

Answer:

Never gonna give you up

Explanation:

can't believe I fell for that

Valerie regularly generates sales reports from her organization's data warehouse. She uses these reports to create presentations. Some tables in
the data warehouse show changes in naming conventions. Which application of a data warehouse can Valerie refer to for finding these changes?
O A dashboard
OB. metadata
OC. reporting tool
middleware
OD
OE.
source data

Answers

Answer:

the answer is C

Explanation:

reporting tool because she has to report it before doing anything else.

Answer:

the answer will be reporting tool

Explanation:

how many arguments does the input function expect to receive?

Answers

The 'input()' function in Python expects one argument, which is a prompt string that is displayed to the user before taking the input.

The 'input()' function in Python is used to receive input from the user in the form of a string. When the input() function is called, it displays a prompt to the user (the argument you pass to the function), and waits for the user to enter some text and press the Enter key. The text entered by the user is then returned as a string by the 'input()' function.

Here's an example of how you can use the 'input()' function to receive input from the user:

name = input("Enter your name: ")

print("Hello, " + name + "!")

To know more about 'input()' function in Python, visit:https://brainly.com/question/28875510

#SPJ4

Which is the fastest CPU and why?

Which is the fastest CPU and why?

Answers

Answer:

the core i7 9700k because first it has a higher ghz count and its unlocked and has more cores

Explanation:

This next problem is going to deal with checking if someone inputs a string with a few requirements. Imagine you are prompted to input a password, but the password needs to have include uppercase and a number. In order to do this, you must look at each char in the string and Booleans to indicate certain criteria are met. Since there are 3 criteria, you should have 3 Boolean variables. The rules for the password are: • Must contain at least 8 chars • Must contain 1 uppercase letter • Must contain 1 digit • There are no restrictions with lowercase letters or special chars When considering where to use Booleans, think of it as a "flag", for each criteria. If you meet the length requirement , then the flag would change from FALSE to TRUE. Once all the flags are true, you will have a valid password. Tip: The ASCII table can be used to determine the numeric value of a particular char. You may want to create ranges of these numerical values for each criteria. Sample output +1: Enter a password: passwordi Invalid password Program Ends Sample output +2: Enter a password: P4ssw3rd Valid password Program Ends Sample output 3: Enter a password: Pasl Invalid password

Answers

Here is the answer to the given question:

Algorithm to Check Password Requirements: Define three Boolean variables for each of the password requirements (e.g., has_uppercase, has_number, has_length). Set all Boolean variables to False at the beginning of the program. Ask the user to input a password. Check the length of the password. If the password is less than eight characters long, set the has_length variable to False. Otherwise, set it to True. Loop through each character in the password. If the character is an uppercase letter, set the has_uppercase variable to True. If the character is a digit, set the has_number variable to True.If all Boolean variables are True, the password is valid. Otherwise, it is invalid.The implementation of the above algorithm in Python is given below:## Initialize Boolean variables.has_length = Falsehas_uppercase = Falsehas_number = False## Ask user for a password.password = input("Enter a password: ")## Check length of password.if len(password) >= 8:    has_length = True## Loop through each character in password.for char in password:    if char.isupper():        has_uppercase = True    elif char.isdigit():        has_number = True## Check if password is valid.if has_length and has_uppercase and has_number:    print("Valid password")else:    print("Invalid password")

Know more about  Boolean variables here:

https://brainly.com/question/13527907

#SPJ11

the __________ topology, where nodes connect to a hub, is the most common type used today.

Answers

The star topology, where nodes connect to a hub, is the most common type used today. This makes it possible to identify the origin of an error quickly and effectively.

What is the star topology? The star topology is a network architecture in which all nodes connect to a central device, which acts as a hub. This hub can be a network switch, a server, or a router, for example. The central hub is in charge of controlling data flow between all of the nodes in the network, ensuring that information is delivered from one node to another without any issues.

This topology is well-liked by users since it has a lot of benefits, including ease of installation and maintenance, as well as ease of identifying faults and resolving issues. Each node is linked to a central hub, which is referred to as a network node, switch, or hub, through a dedicated point-to-point connection.The star topology has a number of disadvantages, including increased cabling, the need for more switches or hubs, and increased vulnerability.

To know more about topology visit:
brainly.com/question/31942538

#SPJ11

What type of animation is used to move objects off of a slide?
A Elaborate
B Emphasis
CEntrance
D Exit

Answers

Answer:

I do not know 100% but i think it is the Exit which is letter D

Explanation:

Other than compile-time error, what is another term used to describe an error detected by the compiler that is a violation of the programming language rules?

Answers

Another term used to describe an error detected by the compiler that violates the programming language rules is a "syntax error."

Syntax errors occur when the code structure or format does not adhere to the specific rules of the programming language.

They are often caused by misspelled keywords, missing or misplaced punctuation, or incorrect use of operators.

When a syntax error is encountered, the compiler identifies the issue and generates an error message indicating the line number and nature of the error.

To fix a syntax error, you need to carefully review your code, identify the mistake, and correct it according to the programming language's syntax rules.

To know more about programming language visit;

https://brainly.com/question/23959041

#SPJ11

Ana is a music lover. She loves to download songs and videos on her computer every time she hears a new song. One day, her computers started to malfunction, and all her files were no longer accessible. What do you think happened to Ana’s computer and what can you do to avoid the same problem​

answer pleasssseeee

Answers

Answer:

Storage outage

As many new songs are released to the Internet every day, Anna might have download thousands of them, which made her computer ran out of storage and RAM(random access memory )

Which actor roasted the cw network while appearing on the critics choice awards?

Answers

When Seth Rogen took the stage to present an award at the Critics Choice Awards, he made fun of The CW, the network that broadcasts the show.

What is Critics Choice Awards?

The Critics Choice Association (CCA) is a group of film and television critics, as well as broadcast, radio, and online critics and entertainment journalists, who review films and documentaries, as well as scripted and unscripted television.

The CCA, founded 28 years ago by Joey Berlin, Rod Lurie, and 42 founding members, is now the largest critics organisation in the United States and Canada, with over 580 members.

The Broadcast Film Critics Association and its sister organisation, the Broadcast Television Journalists Association, merged to form the CCA in 2019.

To learn more about broadcast, visit: https://brainly.com/question/9238983

#SPJ4

Gemima wants to show the amount of vitamin C a fruit salad contains in the blue cell of the table below. To do this, she needs to open the Formula dialog box. A 2 column table with 4 rows. Column 1 is labeled Food with entries Orange, medium; Strawberries, fresh, sliced, half cup; Kiwi, medium; Total vitamin C content. Column 2 is labeled Milligrams per serving with entries 70, 49, 34, blank. Which tab should Gemima use to open the Formula dialog box? Which command group should she use? Which icon should she click?

Answers

Answer:

1. Layout

2. Data

3. Formula

Explanation:

took it on edge

Answer: Layout,Data,Formula

Explanation:

Gemima wants to show the amount of vitamin C a fruit salad contains in the blue cell of the table below.

which type of computer networks are bigger as well as smaller than a MAN?
the answer is LAN for the first blank and WAN for the second blank.
(hope that helped)

Answers

Answer:

which type of computer networks are bigger as well as smaller than a MAN?

the answer is LAN for the first blank and WAN for the second blank.

(hope that helped)

Explanation:

which type of computer networks are bigger as well as smaller than a MAN?

the answer is LAN for the first blank and WAN for the second blank.

(hope that helped)

Unit Test
Unit Test Active
11
12
TIME REN
16:
Which formatting elements can be included in a style Terry created?
font size, type and color
paragraph shading
line and paragraph spacing
All of the options listed above can be used to create a new style.

Answers

Answer:

d. all of the options listed above can be used to create a new style .

Explanation:

The formatting elements that can be included in a style Terry created is font size, type and color. The correct option is A.

What is formatting element?

The impression or presentation of the paper is renowned to as formatting. The layout is another word for formatting.

Most papers encompass at least four types of text: headings, regular paragraphs, quotation marks, as well as bibliographic references. Footnotes along with endnotes are also aggregable.

Document formatting is recognized to how a document is laid out on the page, how it looks, and the way it is visually organized.

It addresses issues such as font selection, font size as well as presentation like bold or italics, spacing, margins, alignment, columns, indentation, and lists.

Text formatting is a characteristic in word processors that allows people to change the appearance of a text, such as its size and color.

Most apps display these formatting options in the top toolbar and walk you through the same steps.

Thus, the correct option is A.

For more details regarding formatting element, visit:

https://brainly.com/question/8908228

#SPJ5

who has a max level blox fruit account they dont want anymore? just email it to me at christianlampkin665

Answers

The correct answer is  I cannot fulfill this request as it is against my programming to engage in any activity that promotes or encourages the sharing or trading of game accounts.

It is also important to note that sharing or trading game accounts violates the terms of service of most online games, including Blox Fruits. Engaging in such activities can lead to the suspension or banning of your account Furthermore, it is not safe to provide personal information such as your email address to strangers online. It is important to be cautious and protect your privacy at all times. Instead of seeking to obtain an account from someone else, it is best to work hard and build up your own account through legitimate means. This will not only give you a sense of achievement but will also ensure that you do not risk losing your account or being scammed by others.

To learn more about encourages  click on the link below:

brainly.com/question/24085761

#SPJ1

How large does a telsa coil need to be to transmit wireless electricity

Answers

The size of the largest operational Tesla Coil is measured to be 38ft or 12 meters. It transmits about 138kw of electricity.

What is a Tesla Coil?

Nikola Tesla invented the Tesla coil, an electrical resonant transformer circuit, in 1891. It is used to generate high-voltage, low-current, high-frequency alternating current.

During his efforts to construct a "wireless" lighting system with gas discharge light bulbs that would shine in an oscillating electric field generated by a high voltage, high-frequency power source, Tesla devised the Tesla coil.

Tesla coils provide various health risks owing to high voltage radio frequency emission, including skin burns and nervous system and heart damage.

Learn more about Tesla Coil:
https://brainly.com/question/7295601
#SPJ1

Which network protocol allows administrators to access a remote computer in a secure way?

Answers

SSH, also known as Secure Shell or Secure Socket Shell, is a network protocol that gives users, particularly system administrators, a secure way to access a computer over an unsecured network.

What is Secure Shell ?

The Secure Shell Protocol (SSH) is a cryptographic network protocol that allows network services to be operated securely over an unsecured network. Remote login and command-line execution are two of its most notable applications. SSH applications use a client-server architecture to connect an SSH client to an SSH server.

SSH is a layered protocol suite that consists of three major hierarchical components: the transport layer provides server authentication, confidentiality, and integrity; the user authentication protocol validates the user to the server; and the connection protocol multiplexes the encrypted tunnel into multiple logical communication channels.

SSH was created on Unix-like operating systems to replace Telnet and unsecured remote Unix shell protocols like the Berkeley Remote Shell and the related rlogin and rexec protocols, which all use insecure, plaintext authentication token transmission.

To learn more about Secure Shell refer :

https://brainly.com/question/17465910

#SPJ1

The economist George gilder argued that

Answers

Answer: Lower taxes would result in greater economic growth.

Explanation: My teacher just gave me the answer on Apex

Answer: Lower taxes would result in greater economic growth

Explanation:

You have two Windows Server 2016 computers with the Hyper-V role installed. Both computers have two hard drives, one for the system volume and the other for data. One server, HyperVTest, is going to be used mainly for testing and what-if scenarios, and its data drive is 250 GB. You estimate that you might have 8 or 10 VMs configured on HyperVTest with two or three running at the same time. Each test VM has disk requirements ranging from about 30 GB to 50 GB. The other server, HyperVApp, runs in the data center with production VMs installed. Its data drive is 500 GB. You expect two VMs to run on HyperVApp, each needing about 150 GB to 200 GB of disk space. Both are expected to run fairly disk-intensive applications. Given this environment, describe how you would configure the virtual disks for the VMs on both servers.

Answers

The virtual disk configuration for the VMs on both servers in this environment is shown below.

In the Hyper V Test,

Since there will be two or three virtual machines running at once, each of which needs between 30 and 50 GB of the total 250 GB of disk space available,

What is virtual disks?

Setting up 5 virtual disks, each 50 GB in size.

2 VMs each have a 50 GB virtual drive assigned to them.

The above setup was chosen because running three VMs with various virtual disks assigned to them will not pose an issue when two or three VMs are running concurrently and sharing the same virtual disk. This is because the applications are disk-intensive.

To learn more about virtual disks refer to:

https://brainly.com/question/28851994

#SPJ1

Given this environment, the virtual disk configuration for the VMs on both servers is shown below. Because two or three VMs will be running at the same time, and each VM has disk requirements ranging from 30 to 50 GB of total disk space of 250 GB.

What is Hyper V Test?While there are several methods for testing new virtual machine updates, Hyper-V allows desktop administrators to add multiple virtual machines to a single desktop and run tests. The Hyper-V virtualization technology is included in many versions of Windows 10. Hyper-V allows virtualized computer systems to run on top of a physical host. These virtualized systems can be used and managed in the same way that physical computer systems can, despite the fact that they exist in a virtualized and isolated environment. To monitor the utilization of a processor, memory, interface, physical disk, and other hardware, use Performance Monitor (perfmon) on a Hyper-V host and the appropriate counters. On Windows systems, the perfmon utility is widely used for performance troubleshooting.

Therefore,

Configuration:

Creating 5 Virtual disks of 50 GB each.

1 virtual disk of 50 GB is assigned to 2 VM.

The above configuration is because since two or three VM will be running at the same time and using the same virtual disk will cause a problem since the applications are disk intensive, running three VMs with different virtual disks assigned to them, will not cause a problem.

For Hyper V App,

Two VM will run at the same time, and the disk requirement is 150 - 200 GB of 500 GB total disk space.

Configuration:

Creating 2 virtual disks of 200 GB each with dynamic Extension and assigning each one to a single VM will do the trick.

Since only two VMs are run here, the disk space can be separated.

To learn more about Hyper V Test, refer to:

https://brainly.com/question/14005847

#SPJ1

A Card class has been defined with the following data fields. Notice that the rank of a Card only includes the values from Ace - 10 (face cards have been removed):

class Card {

private int rank; // values Ace (1) to 10
private int suit; // club - 0, diamond - 1, heart - 2, spade - 3

public Card(int rank, int suit) {
this.rank = rank;
this.suit = suit;
}
}

A deck of cards has been defined with the following array:

Card[] cards = new Card[40];

Which of the following for loops will populate cards so there is a Card object of each suit and rank (e.g: an ace of clubs, and ace of diamonds, an ace of hearts, an ace of spades, a 1 of clubs, etc)?

Note: This question is best answered after completion of the programming practice activity for this section.

a
int index = 0;
for (int suit = 1; suit < = 10; suit++) {
for (int rank = 0; rank < = 3; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

b
int index = 0;
for (int suit = 0; suit < = 4; suit++) {
for (int rank = 0; rank < = 10; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

c
int index = 0;
for (int rank = 1; rank <= 10; rank++) {
for (int suit = 0; suit <= 3; suit++) {
cards[index] = new Card (rank, suit);
index++;
}

d
int index = 0;
for (int suit = 0; suit < = 3; suit++) {
for (int rank = 1; rank < 10; rank++) {
cards[index] = new Card (rank, suit);
index++;
}
}

Answers

Answer: b

Explanation: i did this one!!!!!!!!!!

Which of the following are acceptable to share? Check all of the boxes that apply.
any file you own
files that you have permission to share
works that have a copyright
works that a Creative Commons license says you can use
O

Answers

Answer:

B. files that you have permission to share  

D. works that a Creative Commons license says you can use

Answer: B and D

Explanation: got it right on gunity

Who invented the ENIAC? More than one answer may apply.
John Mauchly
Steve Jobs
Ada Lovelace
O Presper Eckert
O Bill Gates

Answers

Answer:John Mauchly and Presper Eckert

Explanation:

The ENIAC was invented by John Mauchly and Presper Eckert option (A) John Mauchly and (D) Presper Eckert are correct.

What is ENIAC?

Completed in 1945, ENIAC was the first programmable, electronic, general-purpose digital computer.

These features were available on other computers, but the ENIAC offered everything all in a convenient package.

It could solve "a vast class of computer mathematical problems" by retraining and was Turing-complete.

ENIAC was invented by John Mauchly and Presper Eckert.

The first programmable general-purpose electronic digital computer was created during World War II by the United States and is known as ENIAC, or Electronic Numerical Integrator and Computer.

Thus, the ENIAC was invented by John Mauchly and Presper Eckert option (A) John Mauchly and (D) Presper Eckert are correct.

Learn more about the ENIAC here:

https://brainly.com/question/13385199

#SPJ2

How can you troubleshoot Internet access problems?

Answers

Answer:

Check the network icon (or wireless connection settings) to see if you have Internet access. ...

Check for changes to proxy settings.

Check the network cables if your computer is wired to the router.

Reset your router.

Check your firewall or security software.

Hopefully this helps.

Answer:

Delete items from the cache, check your Internet connection, and try using a different browser.

Explanation:

Edge lesson

What aspects of your personal style would you like to share with the world?

Answers

Answer:

Your personal style reflects who you are as an individual. It represents aspects of your personality – what you like and dislike, how you see yourself. The clothes you wear are more than just pieces of fabric stitched together, they show who you are.

In the current situation, how do you access information as a student? How will you integrate the use of ICT in your daily life and your chosen track?

Answers

Answer:

Explanation:

As a computer science student information is accessed in every possible way. This can be through a local school lan network, mobile devices, e-mail, etc. All of these help information flow to and from various people and makes obtaining this information incredibly simple as a student. Especially in the field of computer science, I need to integrate as many ICT devices with me in my everyday life, to send emails, check calendar updates, research information on the web, check school reports, and even speak with clients.

calculate the information gain when splitting on a and b. which attribute would the decision tree induction algorithm choose?calculate the gain in the gini index when splitting on a and b. which attribute would the decision tree induction algorithm choose?entropy and the gini index are both monotonously increasing on the range [0, 0.5] and they are both monotonously decreasing on the range [0.5, 1]. is it

Answers

By deducting the gain ratio of the splitting from the index of both the parent node, it is possible to determine the increase in the gain coefficient when dividing on a and b.

What is algorithm?

An algorithm is a set of instructions or steps that are designed to solve a problem or accomplish a task. It is an effective way of performing a task that can be repeated, with the same results each time. Algorithms are commonly used in computer programming and can range from simple to complex. They can be used to solve simple tasks such as sorting a list, to complex tasks such as playing a game of chess. Algorithms are also used in everyday life, such as when a person follows a recipe or drives to a destination. Algorithms help to make tasks easier and more efficient by breaking them down into smaller, manageable steps.
The information gain when splitting on a and b can be calculated by subtracting the entropy or gini index of the split from the entropy or gini index of the parent node. The attribute with the highest information gain would be chosen by the decision tree induction algorithm. The gain in the gini index when splitting on a and b can be calculated by subtracting the gini index of the split from the gini index of the parent node. The attribute with the highest gain in the gini index would be chosen by the decision tree induction algorithm. Yes, entropy and the gini index are both monotonously increasing on the range [0, 0.5] and monotonously decreasing on the range [0.5, 1].

To learn more about algorithm.
https://brainly.com/question/24953880
#SPJ4

Other Questions
one light may appear reddish and another greenish if they differ in Did I get this right? Please help me garson, inc. produces three products. data concerning the selling prices and unit costs of the three products appear below: product f g h selling price $ 65 $ 45 $ 75 variable costs $ 35 $ 25 $ 40 fixed costs $ 25 $ 10 $ 22 milling machine time (minutes) 20 10 5 fixed costs are applied to the products on the basis of direct labor hours. demand for the three products exceeds the company's productive capacity. the milling machine is the constraint, with only 2,800 minutes of milling machine time available this week. required: a. given the milling machine constraint, what should the company focus on to make the production decision? b. based on your answer to part (a), calculate that amount for each product. in an experiment designed to measure the distance a golf ball is hit by clubs made of different material, the independent variable would be: Gerunds And Infinitiveb) They enjoyc) David quit.want.3. Infini-Adjetivaa) I hope (90) to England next year.(WORK) together.(Smoke) a year ago.(study) with me tonight?-(take) the exam.youe) We were AnxiousF)5) He always take a nap after (eat) a big meal4) I have no experience inh) We're looking Forward.i) Carla doesn't feel likeJ)-Sue was relievedK) We can't afford(work) with children.(meet) you!(legen) that she didn't have cancer.(cook) tonight, so we are going to a restaurant.(90) on holiday An authors purpose or goal their reasoning for writing a work What is another name for the galvanic cell?O A. The voltaic cellO B. The salt bridgeO C. The potential cellO D. The redox cell You receive an email asking you to forward it to four other people to ensure prosperity. Assuming the chain isn't broken , how many emails will have been received and sent after 8 email generations including yours?A.5,460 emails B.21,844 emails C.65,537 emails D. 5,461 emails 3. How do energy transformations, energy transfers, and conservation of energy allows you to track how energy moves through in a system? researchers hoped to determine whether time spent watching television is associated with cardiovascular fitness. subjects were asked how many hours per day they watch television and were classified as physically fit if they scored in the excellent or very good category on a step test. the data obtained is as follows: suppose you are the head of the central bank with a mandate to maintain the price level at its current value (this is called price-level targeting). explain what you would do to the money supply in response to each of the following events. a. real gdp increases by 4% due to an expansion during the year. b. real gdp falls by 1% due to a recession during the year. c. real gdp grows by 3% a year, every year. d. the velocity of money increases by 2% during the year. e. the velocity of money falls by 1% during the year. What is the answer to this question 5/b = 45/36 Solve for B please :))Need answer asap, tyyy lem is looking at new cars. each one he sees has a certain trim detail across the hood which he somewhat likes at the start of the day. at the end of the the day, he starts to really like the detail. his opinion is influenced by the . Add 2 scores to the data set below so that the median does not change. List the two scores you used, and explain what must be true about the numbers that you would need to use 84, 73, 91, 61, 98, 88, 77 Help would be really appreciated! (c) A metal sphere is which is a part of high voltage system and is immersed in insulating transformer oil. The breakdown electric field for this oil is 150 kV/cm. The sphere is charged to 30 kV. Calculate the minimum radius of the sphere which will provide an electric field that does not exceed the breakdown field of the oil. How does marketing differ in small businesses versus large businesses? What are some examples of possible marketing strategies that each of these types of businesses may utilize? Explain why the examples that you provide would be used by each type of business, respectively list terms of Nepal garwal treatyCan any one help me 3 electron layers in the electron shell and 1 electron in the last electron layer