Select the correct answer.
Nancy wants to buy a cooking stove that’s electrically insulated and resistant to heat. What material should she choose for the cooktop?
A.
composite
B.
polymer
C.
metal
D.
ceramic
E.
semiconductor

Answers

Answer 1

Answer:

E I think is the best answer


Related Questions

What is the difference between an appointment and a meeting?
O An appointment does not require coworkers, but a meeting includes coworkers.
O An appointment is for personal obligations, but a meeting is work related.
O An appointment does not have a location, but a meeting has a specific site.
O An appointment is for tasks to accomplish, buta meeting is a time slot on the calendar.

Answers

Answer:

The correct option is;

An appointment does not require coworkers, but a meeting includes coworkers

Explanation:

The correct option is an appointment does not require coworkers, but a meeting includes coworkers

A meeting differs from an appointment mainly because an appointment is an schedule that has an effect only on a personal calendar while a meeting is a schedule that can involve the attendance of one or more other people who will be invited and indicate readiness to attend. Therefore, a meeting can affect the calendars of more than one person working on a task.

In an organization, an internal meeting will require coworkers, while an appointment does not require the attendance of coworkers

Answer:

the one above is right

Explanation:

or for ads A

Given the following class, public class Magazine { private static double SUBSCRIPTION_DISCOUNT = .60; private String title;
private String publisher;
private double newsstandPrice;
public Magazine(String theTitle, String thePublisher, double theNewsPrice) {
title = theTitle;
publisher = thePublisher;
newsstandPrice = theNewsPrice;
}
public String getTitle() {
return title;
}
public String getPublisher() {
return publisher;
}
public double getNewsstandPrice() {
return newsstandPrice;
}
public double getSubscriptionPrice() {
// implementation not shown
public void setNewsstandPrice(double newPrice) {
newsstandPrice = newPrice;
}
}
Which of the following methods is an accessor method?
I. getTitle
II. getPublisher
III. setNewsstandPrice

I only
I and II only
II only
I and III only
III only

Answers

Answer:

The answer is "III only"

Explanation:

An accessor method is also an instance function that receives or establishes the value of an object's properties. This method is called methods through obtaining information about an entity. This method reverses it to process, which has two accessory string techniques to reach source string data reference length Accessor method.

create a flowchart to print numbers from 1 to 100
( IF U ANSWER PROPERLY I WILL MARK U AS BRAINLIEST)

Answers

Answer:

brainliest plsss

Explanation:

I think so this is what you had asked!!!!!!

hope it helps

var words = ["apple", "bug","car", "dream", "ear", "food"]
var filteredWords = [];
for(var i = 0; i < words.length; i++){
var word = words[i];
if (word. Length < 4){
appendItem(filteredWords, word)
}
}
console.log(filteredWords);
If the program above is run, what will be displayed in the console?
O A. [apple, dream]
B. [bug, car, ear]
O C. [bug, car, ear, food]
O D. [apple, dream, food]

Answers

Answer:

B

Explanation:

I haven't taken cs principles, but i have taken cs a

is that python?

bug, car, ear are the only words less than 4 characters in legnth

If the program above is run, [bug, car, ear] will display in the console. The correct option is B.

What is a program?

A computer program is a set of instructions written in a programming language that a computer can execute. The software contains computer programs as well as documentation and other intangible components.

When you use a computer program, you are utilizing a program. When you program a computer, you are instructing it to perform a specific task.

To run a program, and to see if a program is running, you may open the Task Manager by pressing the Ctrl + Alt + Del keyboard shortcut keys, then selecting Task Manager. You may also pick Task Manager by right-clicking on the Windows Taskbar.

Therefore, the correct option is B. [bug, car, ear].

To learn more about the program, refer to the link:

https://brainly.com/question/3397678

#SPJ5

Which of the following views contains the Notes Pane?
O Normal View and Reading View
O Normal View and Notes Page View
O Reading View and Slide Sorter
0 Slide Sorter and Notes Pane View

Answers

Answer: Normal view and reading view

Explanation:

please help i will give brainliest if right

Which elements are part of the Outlook interface? Check all that apply.

Ribbon
Quick Access Toolbar
Comments Box
Reading Pane
Formula Bar
Command Groups

Answers

Answer:

Ribbon, Quick Access Toolbar, Reading Pane, Command Groups

Explanation:

I did it on edge 2021

The elements which are part of the Outlook interface include ribbon, quick access toolbar, reading pane, and command groups. Therefore, the correct options are A, B, D, and F.

What is Outlook interface?

Outlook Main Interface is the folder pane. Outlook interface usually displays on the left hand side of the screen, and it helps in the Outlook users to switch to different folders and different views in the operating system such as mails, calendar, people, task, notes and all folders.

Basic features of Outlook interface include email service, email search, flagging, and color coding, along with the preview pane options. The calendar function enables scheduling, viewing, and communicating about the different appointments and meetings.

The main elements of the Outlook window include the ribbon, Quick Access Toolbar, Reading Pane, Command Groups.

Therefore, the correct options are A, B, D, and F.

Learn more about Outlook interface here:

https://brainly.com/question/19018627

#SPJ2

whats ur favorite video game​

Answers

Answer:

Minecraft has always been my favorite

Answer:

Far Cry 5. It has a great story line and it's lots of fun

Explanation:

KAPWING Video Editing Software allows you to use existing You Tube Videos in your design.

Answers

Answer:

Yea it should, it depends are you using a phone or a PC? because most of the time internally built in editing software on computers is better.

What surprised you the most about computer science ?

Answers

Answer:

Computer science is the study of algorithmic processes

Explanation:

:) its interesting

Answer:

don't know

I am not sure what you mean

Explanation:

Skyler is ready to transfer his Webpage files from his computer to a Web server. Which of the
following is a set of rules that enables his large Webpage files to be exchanged between his
computer and the Web server?
O FTP
O SSH
O HTTP
O SSL

Answers

Answer:

FTP

Explanation:

FTP (File Transfer Protocol) is a protocol that allows the transfer of files across different machines.

. Which of the following are container elements?

a. bold b. underline c. italics d. all of these

Answers

It’s c cba to explain

Answer:

I think letter b. underline, but not sure

which guidelines should be used to make formatting tasks more efficient

Answers

“Use pasted text only; this does not keep the original formatting”
which guidelines should be used to make formatting tasks more efficient

7.2.7: Part 1, Replace a Letter

"Write a function named replace_at_index that takes a string and an integer. The function should return a new string that is the same as the old string, EXCEPT with a dash in place of whatever character was at the index indicated by the integer.

Call your function on the word eggplant and the index 3, like this:

s = replace_at_index("eggplant", 3)
You should then print the value of s, which should display:

egg-lant"

Answers

Answer:

def replace_at_index(string, index):

   return string[0:index]+"-"+string[index+1:]

   

replaced_word = replace_at_index("house", 0)

print(replaced_word)

Explanation:

simpler version

The Function that is used to name replace_at_index that takes a string and an integer is as follows:

def replace_at_index(string, index):

            return string[0:index]+"-"+string[index+1:]

       replaced_word = replace_at_index("house", 0)

           print(replaced_word).

What is the significance of the programming function?

The significance of the programming function is determined by the fact that it sanctions programmers in order to breach or disintegrate a problem into smaller chunks. Each of these smaller chunks usually performs a particular task.

Functions are specifically utilized by the user in order to execute certain actions, and they are important for reusing code. They usually define the code once and use it multiple times with the same efficacy and accuracy.  These collections of codes develop a function.

Therefore, the function that is used to name replace_at_index that takes a string and an integer is well described above.

To learn more about Computer's functions, refer to the link:

https://brainly.com/question/179886

#SPJ3

What would the coordinates be of a 1x1x1 cube in a 3D space if the front lower-left corner is placed at (0,0,0) and the back top-right corner is placed at (1,1,1)?

Answers

Answer:

See picture.

Explanation:

The picture shows all the 8 coordinates.

anybody remember that football game that everyone used to play during school

Answers

Answer:

Like an actual video game or the one where you would play during recess then get in trouble when someone got hurt

Explanation:

The computer code behind password input can be modified to force people to change their password for security reasons. This is known as “password expiration,” and some websites and companies use it regularly. However, people tend to choose new passwords that are too similar to their old ones, so this practice has not proven to be very effective (Chiasson & van Oorschot, 2015). Your friends have a hard time remembering passwords. What method can you devise for them so that they can remember their new passwords AND make them very different from the old ones?

Answers

Answer:

to remember the passwords you could either make a little rhyme to "help" remember it or you could be like everyone else and write it down on a piece of paper. you could also write the password over and over again to make it stick. a way to make a password different from an old one is to use completely different wording and completely different numbers.

Explanation:

What is problem scoping brief explanation in Artificial intelligence

Answers

Answer:

prime minister of england

Type the correct answer in the box. Spell all words correctly.

Isabella plans to work as a freelance DTP publisher. Her DTP setup is a non-Apple Macintosh platform. She has several options for printers. Which type of printer would you recommend to her?

__(blank)__ printers are ideal for DTP projects that work on a non-Apple Macintosh platform.

Answers

Answer:

hp deskjet 2543

Explanation:

Which of the following is an example of a logic error in programming?

A: Not using quotation marks and parentheses to print a string literal

B: Printing an inaccurate statement, like print("Dogs have wings.")

C: Trying to perform an impossible task, like 5 / 0

D:Using camelcase when a variable name contains two or more words

Answers

Answer:

It's C

Explanation:

a file that serves as a starting point for a new document

Answers

Answer:

The appropriate response is "Template".

Explanation:

A template would be a document that might open new opportunities for such a new folder. Because once you launch a framework, that's already pre-formatted sometimes in a manner. This same template will indeed presumably have such identification and phone number environment throughout the upper left, a person receiving identify location somewhat below something on the opposite side, a response body location further below, as well as a signature, identify at either the lower part.

The first cell phones in widespread use were . Smartphone technological advancements added services. Answer the following questions by choosing the best answer from the drop-down menus. Why did cell phones gain in popularity? Which device stemmed from the original cell phone and allowed for synchronized contact information? Which device followed the PDA?

Answers

Answer:

Why did cell phones gain in popularity?

✔ smaller and lighter components

Which device stemmed from the original cell phone and allowed for synchronized contact information?

✔ PDA

Which device followed the PDA?

✔ smartphone

Explanation:

The device stemmed from the original cell phone and allowed for synchronized contact information is PDA.The device followed the PDA is smartphone.

What is PDA?

PDA refers to Personal Data Assistants.

In earlier years phones were separated from (PDA)

Until Recent times when smartphones were introduced.

Smartphones can now save media and document files, remind you of activities to do during the day, using the To Do List feature and much more features.

It used to be that a phone was for only calls and messages and perhaps for keeping time.

The cell phones gain in popularity Because it is smaller and lighter components.

The device stemmed from the original cell phone and allowed for synchronized contact information is PDA.

The device followed the PDA is smartphone.

Learn more about smart phone here;

https://brainly.com/question/13445879

#SPJ2

If you could represent yourself with one object from your home what would it be ?

Answers

Answer:

cross

bc im religous and stuff (0_0)

Answer:

def would be food

Explanation:

i would represent myself with a macaron

how many string object are in 128,55 in python

Answers

Answer:

Explanation:

In the following examples, input and output are distinguished by the presence or absence of prompts (>>> and …): to repeat the example, you must type everything after the prompt, when the prompt appears; lines that do not begin with a prompt are output from the interpreter. Note that a secondary prompt on a line by itself in an example means you must type a blank line; this is used to end a multi-line command.

Many of the examples in this manual, even those entered at the interactive prompt, include comments. Comments in Python start with the hash character, #, and extend to the end of the physical line. A comment may appear at the start of a line or following whitespace or code, but not within a string literal. A hash character within a string literal is just a hash character. Since comments are to clarify code and are not interpreted by Python, they may be omitted when typing in examples.

There are 4 strings within the best_list. Strings can be easily identified becuase they're surrounded with quotes. For example, "hello" is a string because it has the quotes around it.

1. While cell phones provide Freedom and mobility,they can also become a leash, compelling user's to answer them anywhere and anytime​

Answers

Cellular phones have had a major impact on our lives and the way that we perform every day tasks. Many of these changes are apparent, while others we may not even be aware of.

Cell phones have brought a whole new meaning to the term multitasking. Twenty years ago, it was not possible to talk to the office while you were at the grocery store picking up some necessary items. You could never have had a three-way business conference while you were fixing dinner or been able to deal with a business client from home while caring for a sick child.

Describe what is involved in the first 4 stages of a research project.

Answers

Well,

1 pick your topic of research
2, research the topic.
3, look at the data surrounding the topic.
4, record the data.

Imagine a machine that produces an output force that is five times larger
than an input force. What is the mechanical advantage of the machine?

Answers

Answer:

[tex]M.A = \frac{output}{input} \\ let \: input \: force \: be \: x \\ hence \: output \: force \: = 5x \\ M.A = \frac{5x}{x} \\ = 5[/tex]

I need an open response pleaseeeeeee

The format is "Describe‌ ‌the‌ ‌smart‌ ‌home‌ ‌devices‌ ‌impact‌ ‌of‌ ‌technology‌ ‌on education"

Answers

Answer:

Explanation:

Smart Home devices have had a large impact on education. It has allowed students of all ages to better understand the concept of interconnected devices and artificial intelligence. This alone has also opened up a new door of information by allowing for instant answers to question through such smart home devices as Alexa or Home. Which are artificial intelligence virtual assistants.

Choose the correct option to fill in each blank.
In ___ parallelism, the computer divides a task into
___, which it then allocates to different processors for execution.

Blank 1:
Data-level parallelism
Instruction-level parallelism
Task-Level parallelism

Blank 2:
Subprograms
Subtasks
Submodules

Answers

Answer:

Blank 1:  Task level parrallelism

Blank 2:  Sub Tasks

Explanation:

Task Parallelism means concurrent execution of the different task on multiple computing cores.

Consider again our example above, an example of task parallelism might involve two threads, each performing a unique statistical operation on the array of elements. Again The threads are operating in parallel on separate computing cores, but each is performing a unique operation.

Answer:

In task-level parallelism parallelism, the computer divides a task into subtasks , which it then allocates to different processors for execution.

help plz
What is Process?

A person who designs any of a variety of things.
A person who designs any of a variety of things.

A person who is trained in and uses technological and scientific knowledge to solve practical problems.
A person who is trained in and uses technological and scientific knowledge to solve practical problems.

Human activities used to create, invent, design, transform, produce, control, maintain, and use products or systems; a sequence of actions that combines resources to produce an output.
Human activities used to create, invent, design, transform, produce, control, maintain, and use products or systems; a sequence of actions that combines resources to produce an output.

A systematic problem-solving strategy, with criteria and constraints, used to develop many possible solutions to a problem or to satisfy human needs and wants and winnow (narrow) down the possible solutions to one final choice.
A systematic problem-solving strategy, with criteria and constraints, used to develop many possible solutions to a problem or to satisfy human needs and wants and winnow (narrow) down the possible solutions to one final choice.

An iterative decision-making process that produces plans by which resources are converted into products or systems that meet human needs and wants or solve problems.
An iterative decision-making process that produces plans by which resources are converted into products or systems that meet human needs and wants or solve problems.

A person or household that purchases goods or services.

Answers

Answer:

Yes

Explanation:

6.3 Code Practice

You should see the following code in your programming environment:

import simplegui

def draw_handler(canvas):
# your code goes here

frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("Black")
frame.set_draw_handler(draw_handler)
frame.start()


Use the code above to write a program that, when run, draws 1000 points at random locations on a frame as it runs. For an added challenge, have the 1000 points be in different, random colors.

Answers

Answer:

Use the canvas code to draw 1000 points but then for the location import the random module and use random.randrange() for it

Explanation:

The drawing object will be used for drawing

The random class is used for the random numbers

I hope it helps

Other Questions
Codons is a set of three nucleotides that can code for multiple different proteins.TrueFalse distinguish between individual Centred career and Organisation Centred career bad things that Marie Antoinette did Find the perimeter and area What is the difference between a isoline map and dot map? Write down the trends which contributed significantly to the political fragmentation of Eruope in the tenth? who is the home minister of India hey u plz help me me need help Please help!! ( Complete a search about Shakespeare's acting company The Lord Chamberlain's Men and the Globe Theatre. Ensure you use valid and reliable sources. )When and why did the Lord Chamberlain's Men become the King's Men.Who was the King at that time?What happened to the Globe Theatre? what is the formula for finding missing angles of a triangle which city had the fourth largest black population in 1910? give two examples of asexual Productions Estimate a 10% tip on a restaurant bill of $75.28. What is the key activating signal in the TNF receptor signaling pathway that occurs downstream of TNF-alpha binding to the extracellular domain Identify the systolic and diastolic ranges for stage 1 hypertension. What are the correct forms of the verbs? Can someone help me? And explain it to me pls Points and Klie on the same line, as shown on the coordinate plane below. Answer ALL 3 questions. You can type your answers in the box or upload pictures of our work A) What is the slope of the line passing through points J and K! Show or explain all your work , Find the x-intercepts of the parabola y = x^2 - 5x + 3. HELPPPPpPpPPP BRAINLIESTTTTTTChoose the inequality that matches the verbal description. The number of girls in Mrs. Baugh's homeroom is greater than 8. A) x 8 B) x 8 C) x > 8 D) x < 8Group of answer choicesABCD