when i use python idle to execute a command, i get this message in shell

RESTART: C:/something something

Answers

Answer 1

Answer:

yes it always come whenever u execute a command

It comes with everyone


Related Questions

How can you implement a framework?

Answers

Answer:

that's the answer

Explanation:

I hope it helps to you

he JavaScript ________ defines items on a web page such as graphics, tables, and headers as objects.

Answers

The JavaScript DOM defines items on a web page such as graphics, tables, and headers as objects.

The JavaScript DOM defines items on a web page such as graphics, tables, and headers as objects.

The JavaScript DOM

The JavaScript DOM Known as the Document Object Model (DOM) is a programming interface that allows one to manipulate the  web documents, such that one  can change the document's structure, style, and content using objects like :

graphicstablesheaders.

Therefore, to access items on a web page, The  JavaScript DOM is applied.

Learn more about the dom here:https://brainly.com/question/25772355

Game have been a part of human life only recently in human history—about 1100 AD.
True
False

Answers

Answer:

The answer is false it has not

Answer:

B: False

Explanation:

it's just false

Term software refers to

(a) Computer manuals only

(b) Computer programs only

(c) Machinery

(d) Computer manuals and programs

Answers

Answer:

(b) Computer programs only

Explanation:

[tex]{}[/tex]

Answer:

b

Explanation:

HOPE THAT THIS IS HELPFUL. HAVE A GREAT DAY.

Consider a system which has a memory access time of 300 nsec. An average page fault takes around 10 millisecond to get serviced. If the page fault occurs with a probability of 4% in the system, then find out the effective memory access time of that system. If somehow, you manage to reduce the probability of page fault to 2%, then by how much the system performance improves as compared to the previous case?

Answers

Answer 72 ncs is the answer im pretty sure

You can find the answer in the attached photo

Write a recursive boolean method named isMember. The method should accept two arguments: an int array and an int value. The method should return true if the value is found in the array, or false if the value is not found in the array.

Answers

Answer:

hi the answer is nothig

Explanation:

bacause i guessed

Many subject elements make for simple and streamlined looking images. true or false

Answers

Answer:

Explanation:

false. many elements means a complicated picture, not a simple one.

The statement "Many subject elements make for simple and streamlined-looking images" is absolutely false.

What do you mean by Subject element?

The Subject element may be defined as the elements or components of the subject that are significantly responsible for constructing simple or complicated representations in the form of images.

It is a term or phrase that deals with the representation of fundamental topics on which a particular image relies. It significantly defines all the taxonomic attributes of the streamlined-looking images.

According to the context of this question, many subject elements will definitely lead to complicated and more streamlined images rather than simple ones.

Therefore, the statement "Many subject elements make for simple and streamlined-looking images" is absolutely false.

To learn more about Images elements, refer to the link:

https://brainly.com/question/26307469

#SPJ2

The current annual interest rate is 5 percent, and you are taking out a 20-year loan with a monthly end-of-month payment. If you can afford monthly payments of $3000 per month, what is the most you can borrow?

Answers

Answer:

720k.

Explanation:

What free website can you record videos on, and edit them without money?

Answers

Answer:

You can edit videos on Capcut for free and I think you can also use Alightmoon

Answer:

You can edit videos using this application called Kinemaster.

Explanation:

After recording the video download Kinemaster available on Playstore and App store

explain the different types of programming languages​

Answers

Answer:

Language types. Machine and assembly languages. Algorithmic languages. FORTRAN. ALGOL. C. Business-oriented languages. COBOL. SQL. Education-oriented languages. BASIC. Pascal. Logo. Hypertalk. Object-oriented languages. C++ C# Ada. Java. Visual Basic. Python. ...

Elements of programming. Control structures. Data structures.

Explanation:

Pls Mark Brainliest

Why must the image be reduced when the field of view is widened to take in more of the scene?

Answers

The lighting in the shot
As the size of the hole is increased, a larger cluster of light rays gets through to the film or sensor and makes a wider, even blurrier circle. These circles overlap, so the wider each circle becomes, the less clear the picture will be.

What sound customization option would you use in Scratch to simulate a sound happening in a large, empty room (like a theater)?
louder
reverse
echo
slower

Answers

C. Echo ( I May Be Wrong )

Answer:

Louder

Explanation:

Explain in detail what it means to synchronize computers and mobile devices and include at least two strategies for keeping your files in sync in your answers

Answers

Answer:

Explanation:

To synchronize computers and mobile devices means to use a cloud service that constantly checks to see if local files are up-to-date with the files in the cloud. These services update the cloud files with the local files if they are overwritten for maximum convenience.

Two strategies for keeping files in sync are using Dropbox. Another way is using iCloud if one has Mac/iOS devices.

A data analyst is working with a data frame named retail. It has separate columns for dollars (price_dollars) and cents (price_cents). The analyst wants to combine the two columns into a single column named price, with the dollars and cents separated by a decimal point. For example, if the value in the price_dollars column is 10, and the value in the price_cents column is 50, the value in the price column will be 10.50. What code chunk lets the analyst create the price column

Answers

The code chunk that lets the analyst create the price column is;

unite(retail, “price”, price_dollars, price_cents, sep=”.”)

The code chunk unite(retail, “price”, price_dollars, price_cents, sep=”.”) is the one that will allow the analyst to create the price column.

The reason for that answer is that;

The unite() function would allow the analyst  to make the dollars and cents data to be combined into a single column.Meanwhile, in the parentheses of the given function, the analyst will write the name of the data frame.Next step for the analyst is to write the name of the new column in quotation marks.Next step is the names of the two columns they want to combine.Lastly, the argument sep=”.” will now place a decimal point between the dollars and cents data given in the price column.

Read more about programming at; https://brainly.com/question/15683939

reflection image and design

Answers

Explanation:

It is the image and design

Explain the difference between the = symbol in Java and in mathematics.

Answers

Answer:

In maths the '=' sign tells us that the two integers or variables on either side are the same, wheras in Java the '=' sign means that you are assigning the variable on the left hand side it's value which will be on the right

Write a class definition line and a one line docstring for the class Dog. Write an __init__ method for the class Dog that gives each dog its own name and breed. Test this on a successful creation of a Dog object. >>> import dog >>> sugar

Answers

Python Code:

class Dog:
""" Dog class definition """

# data attribute species as part of the class Dog
species = "Canis familiaris"

def __init__(self, _name, _breed):
""" Constructor """
# Assigning values
self.name = _name
self.breed = _breed
self.tricks = []

def teach(self, trick):
""" add a passed string parameter to tricks """
# Adding to list
self.tricks.append(trick)
# Printing message
print(self.name + " knows " + trick)


def knows(self, chkStr):
""" check whether a passed string parameter is in the dog’s list of tricks """
# Checking in tricks list
if chkStr in self.tricks:
# Printing message
print("Yes, " + self.name + " knows " + chkStr)
else:
# Printing message
print("No, " + self.name + " doesn't know " + chkStr)

The operation of an enable input on a multiplexer chip is.

Answers

Answer:

is used to activate the chip.

Explanation:

when enable is high the chip works (ACTIVE), when enable is low the chip does not work (MEMORY).

Which type of game requires you to read people’s expressions to anticipate their moves?
chess-type games
dice games
board games
Poker-type games

Answers

Answer:

Chess-type games

Explanation:

Answer:

Explanation:

chess-type games

Computer viruses and coding books

Answers

Is there a picture to go along with this? I don’t see one and an willing to help!

Make a Flow Chart From this C Programming Language Code

Answers

Answer:

1) Print message "Hello Everybody"

If you wish to print a simple message "Hello everybody" in a flowchart in c language, here is the example:

flowchart in c

2) Input 2 numbers from the user and print their sum

Imagine that you are a user who wishes to put in two numbers and want their sum to be printed. Here is a flowchart for structure in c which is required:

flowchart in c language

3) Input numbers from the user and check whether it is even or odd

If you wish to put in numbers and then check whether it is an even number or an odd one, the following flowchart of c language can significantly help.

flowchart for structure in c

4) Flowchart to find the sum of the first 50 natural numbers

Let’s first see how that will look in a flow chart, and then we see the same thing mapped to a C program. This shows you why it’s important to map out your algorithm to a flow chart before you start coding it.

flow charts in c,

The loop easily translates to a simple C for loop. In this program, we initialize the variable sum =0 and n=0. In the next step, we increment n by 1 and assign sum=sum+n. We check if n=50 and if not, increment n by 1. Else we just print the sum.  

5) C Program to find the Factorial Value of a Number

Now let’s look at a bit more complex example. First, we’ll draw out the flow chart for the factorial n.

flowchart of if statement in c,

6) Control Algorithm for cooking toast in the toaster

Using a flowchart describe the control algorithm that a toaster might use to cook toast. There will be a start button the user pushes to activate the machine. There is another input that measures toast temperature. The desired temperature is preprogrammed into the machine. The output is a heater, which can be on or off. The toast is automatically lowered into the oven when the heat is applied and is ejected when the heat is turned off.

flowchart in c

7) Calculation of the average of two numbers

If we have to calculate the average of any two given numbers, the following flowchart for structure in c will be made.

flowchart in c language

Explanation:

mark me brainlist pls

One of the main operations associated with the dictionary ADT is:
(a) given a key and value, remove the entry with given key and value from the dictionary
(b) given a value, remove the entry that contains the value
(c) remove the last item in the dictionary
(d) given a key, return the value of the dictionary entry with the given key

Answers

ITS B my friends and teacher helped

How often do domain controllers download Group Policy settings?

Answers

Answer:

Domain controllers download Group Policy settings -every five minutes-

Explanation:

hope I helped

How many types of windows does Python use?



a.
four


b.
five


c.
one


d.
two

Answers

Answer:

Four types

Explanation:

The python windows starts form windows 7.

All types of python windows are

Windows 7Windows 8Windows 10Windows 11

Write a python program to calculate and print the electric bill for Ethiopian Electricity Corporation. (consumer name meter number(mno),last month reading(Imr)and current month reading(cmr) of 50 customers and calculate the net bill amounts as follows: Number of unit(Nou)=cmr-lmr If Nou200 then bill =Nou*2 tax=bill*0.15 netbill=bill+tax Print all the details in the bill for all customers​

Answers

The electric bill program illustrates the use of loops (i.e. iteration)

Loops are used to execute repetitive operations

The electric bill program in Python where comments are used to explain each line is as follows:

#This iteration shows that the process is repeated for 50 consumers

for i in range(50):

   #This gets input for the consumer name meter number

   mno = input("Consumer name meter number: ")

   #This gets input for last month reading

   lmr = int(input("Last month reading: "))

   #This gets input for current month reading

   cmr = int(input("Current month reading: "))

   #This calculates the number of units

   Nou = cmr - lmr

   #This calculates the bills

   bill = Nou*2

   #This calculates the tax

   tax = bill*0.15

   #This calculates the netbills

   netbill = bill+tax

   #This next four lines print the electric bills

   print("Number of units:",Nou)

   print("Bills:",bill)

   print("Tax:",tax)

   print("Netbill:",netbill)

Read more about loops at:

https://brainly.com/question/19344465

I need help with This excel chart. I don't know how to divide all the rows and columns.

In column F, enter formulas that use a function to calculate % Caught with Table (fish caught with Table hook divided by the total number of fish caught).
Format the % Caught with Table values as a percent with one decimal place.

Answers

Answer:

sorry I don't know how to do this.Very very sorry.

(Find the number of uppercase letters in a string) Write a recursive function to return the number of uppercase letters in a string using the following function headers: def countUppercase(s): def countUppercaseHelper(s, high): Write a test program that prompts the user to enter a string and displays the number of uppercase letters in the string.

Answers

def countUppercase(s):
count=0
for i in s:
if i.isupper():
count+=1
s=s.replace(i, "")
else:
s=s.replace(i, "")
countUppercase(s)
return count

element=input("Enter the string: ")
string=countUppercase(element)
print("\nNumber of upper letter in the string: ",string)

Simple question: what is bandwidth?

Answers

The maximum amount of data transmitted over an internet connection in a given amount of time

Answer:

It is the amount of data that can be transmitted in a set period of time, that is the rate of data supported by the network connection.

In simple definition, it can be said to be the data transfer capacity of a computer network in bits per second (bps).

Explanation:

Where did the first human cities show up?
South Africa
Mesopotamia
Peru
Denmark

Answers

The first human cities in the history of the world showed up at; B: Mesopotamia

Throughout the history of the world, cities have always been attractive to more and more people because they useful as centers of learning including culture, and great economic opportunities.

However, this explosion of migration to the cities has lead to some very large cities that are home to as much as 15 million or more which could lead to overpopulation and potentially health hazards.

Now, the first cities in the world from history are said to have appeared thousands of years around 7500 BC ago in Mesopotamia which had very fertile lands. The cities formed here include those in euphrates and even along the Nile River in Egypt.

Read more about Mesopotamia at; https://brainly.com/question/22701821

Declare and define a function called displayConcat that displays the concatenation of the first parameter with the second. Ex: displayConcat("After", "noon") displays "Afternoon".

Answers

function displayConcat(first, second) {
// using console.log print concatenation of first and second strings
console.log(first + second);
}

displayConcat('After', 'noon');
Other Questions
find the value of 7u+7 given that -3u-5=4 A historian argues that the presence of slavery in the South caused the Civil War. He argues that the slave states did not trust the federal government to protect their property and this situation led them inevitably toward secession. Which of the following factors would best serve as evidence to critique the historian's conclusion? Question 5 options: South Carolina's declaration of secession specifically criticized federal efforts to end slavery. Nearly all the major crises leading up to the Civil War were directly or indirectly related to slavery. President Lincoln successfully convinced several slave states to remain part of the Union.Efforts to admit Kansas and Nebraska into the Union created violent conflicts over their slave status. George is 14 years old. His age is 2 years more than twice his brother, Jhon's age. How old is John? [ANSWER INCLUDING] The pedigree on the right shows the inheritance pattern for an X-linked recessive disorder.The mother of the individuals circled in pink is not shown on the pedigree. Based on the phenotypes of these individuals and their father, what are the possible genotypes of their mother? Check all of the boxes that apply.- XAXA- XaXa- XAXa Write in expanded form 1) 531.029 Ramon surveyed his friends about their favorite snacks. He found that 1/6 of his friends prefer trail mix. What is the equivalent decimal for the fraction of friends that prefer trail mix? Drag and drop the correct number to the box. 1/6 0.16 or 6 What is mounted debt? in your own opinion I will give brainiest to who can answer my questionno research! in 1985, robert ballard discovered the wreckage of what sunken ship? What do the colors red, green, and blue have to do with light? What is the measure of ZB? Please help guys this is just domain and range Help me pls right now I give brainliest Plz Help Right Now Please Answer All Questions! for which value of x does each expression make sense:(square root) -2x^2(square root) (-2x)^3 Plz solve the problem. For the high school basketball game, it costs $8 for every 2 tickets.Complete the table below showing the cost and the number of tickets. Alex drives at an average speed that is 1 6 of the average speed that Roy's train travels. Alex takes 20 minutes to travel 12 km in her car. Roy travels for 2 hours and 20 minutes on his train. How far does Roy travel to 2 dp? help me with this please part b whitch detail from the text a best supports the answer to part a The graph shows a proportional relationship between the number of books sold at a yard sale and the amount of money collected from book sales. Book Sales RevenueWhat is the constant of proportionality?0.6711.52