How do i make a custom answers in Vbscript in notepad

Answers

Answer 1

Answer:

Open notepad.

Write any VB Script code. For example: ...

Save notepad as Test.vbs on desktop. Once you will save notepad with script with the file extension .vbs the notepad will look like this-

Now double click on the file.

Explanation:

Hope this helped, sorry if it didn't


Related Questions

A chatbot is a computer program designed to emulate human conversation. For this program, you will use if statements, user input, and random numbers to create a basic chatbot.

The Scenario
You have decided to start a website and are creating a chatbot prototype to show investors so you can raise money and launch your website.

Your chatbot should ask the user the following (minimum requirements for the grader) and then give answers depending on the answers the user inputs:

at least 5 questions
at least 2 if-elif-else statements
the use of the random module and randomly generated numbers
Based on these criteria, some responses will be based on what the user types and some will be based on random numbers.

For example, if the chatbot asks how the user is doing, your chatbot might respond I’m sorry to hear that. in response to a user input of sad, or That's great! in response to a user input of happy.

Additionally, you could also have a random number generated between, say, 1 and 3 and have a corresponding response depending on the number to randomly answer with That is great to hear. or So interesting., and so on.

Sample Run
Please note that due to the infinite possibility of questions that can be asked, your program will be different—this is only one example.

What is your first name?

Pascal

What is your last name?

Smith

Hi there, Pascal Smith, nice to meet you!


How old are you?

17

17 is a good age.

You are old enough to drive.


So, Pascal, how are you today?

Happy

You are happy.

That is good to hear.

Tell me more.


I am just happy.

That's good to hear.


Well, Pascal, it has been nice chatting with you.

Answers

In python:

import random

good_responses = (["That's cool!", "Wow!", "That's great to hear!", "Tell me more"])

bad_responses = (["I'm sorry", "That sucks!"])

first_name = input("What's your first name? ")

last_name = input("What's your last name? ")

print(f"Hello {first_name} {last_name}, nice to meet you!")

age = int(input(f"How old are you, {first_name}? "))

if age > 17:

   print("Wow, you're old enough to vote!")

else:

   print("Quite young, aren't you.")

color = input("What's your favorite color? ")

print(good_responses[random.randint(0,3)])

feeling = input("How are you feeling? (sad/happy) ")

if feeling == 'sad':

   print(bad_responses[random.randint(0,1)])

else:

   print(good_responses[random.randint(0,3)])

print(f"It's been nice chatting with you, {first_name}!")

I hope this helps!

In this exercise we have to use the knowledge of computational language in python to write the code.

This code can be found in the attached image.

To make it simpler the code is described as:

import random

good_responses = (["That's cool!", "Wow!", "That's great to hear!", "Tell me more"])

bad_responses = (["I'm sorry", "That sad"])

first_name = input("What's your first name? ")

last_name = input("What's your last name? ")

print("Hello {first_name} {last_name}, nice to meet you!")

age = int(input(f"How old are you, {first_name}? "))

if age > 17:

  print("Wow, you're old enough to vote!")

else:

  print("Quite young, aren't you.")

See more about python at brainly.com/question/22841107

Hello, Anyone bored and want to finish my edu typing for online school? my teacher says it's
a grade to TYPE on a keyboard?! I just don't have the energy to do that. The website is called edu typing. Let me know if you want to help with my homework, I'll give you my account password and information (it's a school account, not important) Please do it correctly don't get me in trouble xD. you have to finish "Alphabetic keys and symbols" and "Number & Symbols" you'll see them at the bottom left of the screen. I LOVE YOU IF YOU DO THIS FOR ME no cap​

Answers

Answer:

ok

Explanation:

How can you drop two eggs the fewest amount of times, without them breaking?

Answers

Answer:Both eggs are identical. The aim is to find out the highest floor from which an egg will not break when dropped out of a window from that floor. If an egg is dropped and does not break, it is undamaged and can be dropped again. However, once an egg is broken, that's it for that egg.

Explanation:

Answer:

the first person is right

Explanation:

it is a logical answer

Who is the entity responsible for keeping a record of employee injuries and illnesses?
a. The federal government
b. The employer
c. The employee
d. The state government

Answers

Answer:

B. the employer

Explanation:

Hope this helped. Hav an amazing day/night!!

Answer:

B.The employer

Explanation:

I got it right on edgen

WILL MARK BRAINLIEST PLZ ANSWER WITH EXPLANATION.

Answers

The best possible search option will be integrated development environment.

In the software world, we shorten integrated development environment with the acronym, IDE. We use IDE's to develop software.

Click cell C6 in the Data worksheet and insert a column. Type Series Name in cell C6. Click cell C7 in the Data worksheet and insert a lookup function that identifies the series code, compares it to the series legend, and then returns the name of the series. Copy the function you entered from cell C7 to the range C8:C22. Change the width of column C to 18.

Answers

Answer:

I was able to obtain an image of the "Data Worksheet" referenced (attached).

First we click on the C6 cell, and click the "Insert column" toolbar button.

Then on the same cell we type the column name "Series Name"

On the cell below (C7) we'll type the VLOOKUP function as follows:

=VLOOKUP(B7;$A$2:$C$4;2)

FIrst argument (B7) is the term to search

Second argument ($A$2:$C$4) is the table containing the terms to search and the results to return.

Notice the use of $ to avoid errors while copying the formula.

The third argument (2) means the function will return the 2nd column from the "Series Legend" cells.

Finally we'll copy the formula in C7 and paste it to the cells below C8 to C22.

To resize the column just drag the right side on top of the column, mouse icon will change to a double-pointed arrow.  

What are some real-world situations that involve infinite loops, for loops, and while loops?

Answers

Answer:

We work hard to get paid at the end of each month. Another could be the water cycle.

Explanation:

There aren't many things that can never end. The sun will eventually get chilly and all life on earth will cease to exist since the earth is not limitless.

There is nothing that can measure an infinite thing that extends for countless light years; space and time are the only truly limitless things. Nobody actually knows how long the planet has existed for; time never ends. Long before the alleged huge boom, the cosmos could have been created. God is the limitless thing that existed long before the universes were created. He created the universe and everything inside your head. You would not have ever been born without him.

Time and space are examples of an infinite loop, but I would also include human life. Why? You will be revived and reincarnated once you die, and you will then live forever.

The water cycle is an example of a while loop since it will continue as long as the earth and water do. But the planet Earth probably won't last forever.

For loop: As the previous commenter noted, someone who works hard every month would be regarded as a for loop.

To learn more about infinite loop ,for loops, while loops refer to:

https://brainly.com/question/13148070

#SPJ2

Which application software would a teacher use to compute a student's course percentage?

a. presentation software

b. word processors

c. spreadsheets

d. database

Answers

Answer:

spreedsheet

Explanation:

This would help them easily average grades

What is an object?

a. An element on a Web page that contains data and procedures for how that item

will react when activated

b. An element on a Web page that expedites the downloading of Web pages

c. An element on a Web page that condenses the amount of space the page uses in

a computer's cache

d. An element on a Web page that interacts with all programming languages and

enables them to function universally with all browsers

Answers

Answer: I believe the answer is A.

In computer programming, what is a conditional?

Answers

Answer:

In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false. Apart from the case of branch predication, this is always achieved by selectively altering the control flow based on some condition.

Explanation:

Conditional (computer programming) In computer science, conditional statements, conditional expressions and conditional constructs are features of a programming language, which perform different computations or actions depending on whether a programmer-specified boolean condition evaluates to true or false.

Conditionals essentially test for true and false.

For instance, in python:

if 1 > 0:

   the code does something.

Since 1 is greater than 0 the conditional is true, but if the if statement is false, for instance:

if 1 < 0:

   the code does something

else:

   the code does something else

The if statement is skipped because 1 is not less than 0 and the else statement runs.

Binary number 10101001

Answers

The number would be 169!

Add my ps4 account FG_Colut_ ωωω

Answers

free points ?
jfkdhsjfka

Answer:

i will

Explanation: for points on here bro

Use the file format if you need to create macros in an Excel file.

Answers

Answer:

Use the xlsm file format if you need to create macros in an Excel file.

Explanation:

Answer:

E

Explanation:

xlsm file

The first Tacoma Narrows Bridge in Washington crossed over a strait in Puget Sound. At the time the suspension bridge was built, construction workers noticed that it moved up and down in the wind. Measures to stop the bridge's movement were ineffective, but the bridge was opened to the public on July 1, 1940. The bridge collapsed on November 7, 1940. Luckily, no people were seriously injured. Determine which technological design criteria the Tacoma Narrows Bridge did and did not meet. Explain your answer.

Answers

Answer:

They failed to create, test, and retest a model.

Explanation:

Technological design refers to the series of steps involved in developing a technology for use. Steps involved in the technological design include; identifying the problem, making research on it, proffering certain solutions, and choosing the best, developing a model, testing and refining the model, and then presenting the final solution.

The construction workers opened up the bridge even when they knew that the measures were ineffective. They did not create a model and test it thoroughly to confirm that it would work and was effective before launching the final solution. This oversight led to the collapse of the bridge.

Answer: explained

Explanation:

Technological design refers to the series of steps involved in developing a technology for use. Steps involved in the technological design include; identifying the problem, making research on it, proffering certain solutions, and choosing the best, developing a model, testing and refining the model, and then presenting the final solution.

The construction workers opened up the bridge even when they knew that the measures were ineffective. They did not create a model and test it thoroughly to confirm that it would work and was effective before launching the final solution. This oversight led to the collapse of the bridge.

Which are effective thesis statements? Check all that apply.
In this paper, I will talk about healthy foods.
Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life.
Video games can teach important values such as teamwork, perseverance, and dedication.
This paper will show the many ways technology can help people lead healthier lives.
Electives classes are very popular in high schools.
O Sugary drinks, snacks, and desserts should be avoided.

Answers

Question:

Which are effective thesis statements? Check all that apply.

Options:

In this paper, I will talk about healthy foods. Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life. Video games can teach important values such as teamwork, perseverance, and dedication. This paper will show the many ways technology can help people lead healthier lives. Electives classes are very popular in high schools. Sugary drinks, snacks, and desserts should be avoided.

Answer:

B.) Adopting a positive attitude can reduce stress, prevent anxiety, and help you lead a better life.

C.) Video games can teach important values such as teamwork, perseverance, and dedication.

D.) This paper will show the many ways technology can help people lead healthier lives.

Explanation:

I just did the assignment on edge 202 and got it right!

The effective thesis statements are :

The adopting of the positive attitude can reduce the stress, Video games can teach us important values such as teamwork,technology can help people lead healthier lives. What is a thesis?

A thesis or a dissertation is research that is done by the candidate for taking an academic degree.

The research is usually done to find a solution to the problem or the hypothesis. The thesis is thus a work of art that explains the details of reaserach.

The above statement tells us that a positive attitude can reduce stress. Video games teach us teamwork and technology is making lives healthier.

Find out more information about the thesis.

brainly.com/question/17915079

Note: For Python 2
The problem says, “Monthly Minimum Payment Calculator that calculates a month’s minimum credit card payment based on the following two parameters; Minimum required percentage and Credit card balance.” (This is what we need to code in Python 2)
Then, there is a resource that can be used to help with the problem, “Credit cards also use fairly simple math, but it may take some legwork to find out which numbers to use. Lenders typically use a formula to calculate your minimum monthly payment. For example, your card issuer might require that you pay at least 2% of your outstanding balance each month. 1 They might also have a dollar minimum of $25 (so you pay whichever is greater). It’s usually wise to pay more than the minimum (ideally, you pay off the entire balance every month), but the minimum is the amount you must pay to avoid late charges and other penalties.”
Then it gives us an example: “Example: Assume you owe $7,000 on your credit card. Your minimum payment is calculated as 3% of your balance:
Payment=MinRequired x Balance
Payment=0.03 x $7,000
Payment=$210

Answers

In python 2:

def monthlypayment(min_required, balance, dollar_minimum):

   if dollar_minimum > min_required * balance:

       return "Your minimum payment is $" + str(dollar_minimum)

   else:

       return "Your minimum payment is $" + str((min_required * balance))

Spend some time exploring the components inside of a computer by performing online research into the topic. You can begin with this link, What does the inside of a computer look like?, and then continue to explore other websites of your own finding to answer the questions below, if needed.
How do you think the computer components would change if you were looking at a tablet computer or a smartphone?
What is one major component that would not be found in a tablet or phone, and how has modern computing made that component less important?
What component is in a tablet or phone that wouldn’t have been in a desktop (remember, you can search online for ideas)?

Answers

Answer:

1.         Chassis (case)

Data cable: (IDE, SATA)

Disc drive: CD-ROM, CD-RW, DVD-ROM, or Blu-ray.

Expansion card (ISA, PCI, AGP, and PCI Express).

Fan (Heat sink)

Floppy drive

Hard drive: HDD, SSD

Memory (RAM)

Motherboard

Power cable (Molex)

Power supply (PSU)

Processor (CPU)

The expansion cards are often devices such as your video card, sound card, network card, etc.

It is common for a computer today to have these components built into the motherboard, also referred to as integrated components.

Network card

Sound card

Video card

What parts are needed for a computer to work?

CPU (processor)

Memory (RAM)

Motherboard

Storage device (e.g., hard drive)

2.         Smartphones and tablets have less storage capacity than a computer, and their components cannot be modified like a desktop computer's can. Desktop and laptop computers can run more powerful software than a smartphone or tablet due to their size, components, and less restrictive power requirements.

3. A hard drive

Since tablets and phones are compact, they are better off not having a big, giant, bulky storage device like hard drives. Modern computing made hard drives less important by developing Solid-State Drives (SSDs) and extremely dense (512 bit) storage that can provide the same if not more storage than a traditional hard drive at the fraction of the size.

4.  Since tablets and phones are mobile devices, they would be outfitted with a GPS (Global Positioning System) so that location services would work with them. Desktops do not usually have GPS components.

Explanation:                            / \

I already explained up above. |

The parts that are needed for a computer to work are:

CPU (processor)Memory (RAM)MotherboardStorage device (e.g., hard drive)

What is a computer?

A computer is an electronic device for storing and processing data according to instructions given to it in a variable program.

It is common for a computer today to have these components built into the motherboard, also referred to as integrated components.

Desktop and laptops can run more powerful software than a smartphone due to their size, components, and less restrictive power requirements.

Learn more about computer on:

https://brainly.com/question/24540334

#SPJ2

Leila was writing an article in which she used stock market data extracted from Yahoo Finance. She was about to complete it. She has mentioned in the article that she extracted data from Yahoo finance. If she sends it to some journal for publication, then will it be necessary to get permission letter from Yahoo? Is it against the copyright rules? Explain your answer​

Answers

Reusing Yahoo's data is not a violation of copyright, especially when applied under a "fair use" case like Leila's paper (because it is merely citing a previous work and creating an original response to it). However, even if her paper did not fall under fair use guidelines, data is not copyrightable because it does not meet the US copyright threshold of "creativity and originality." In fact, even if she used bar charts or other data visualizations from Yahoo Finance, these are not original enough to give Yahoo any sufficient claim of copyright ownership, so Leila need not ask for permission.

Please mark as Brainliest.

answer is A and D if not try something else

Answers

did you mean to answer someone's question

Do you think more devices connect to the internet wirelessly or wired? Why?

Answers

Answer:

yes morr devices connect to the internet wirelessly b cos no wire in BTW dat can cos destruction like if d wire has been peeled

Explanation:

plz give me brainiest

Pleaseee Help!!!!

What industry holds a significant place in the commercial phere of economies all over the world due to factors such as the growing variety of game hardware and peripheral devices, emerging markets, and increasingly diversified demographics?

A)The Medical software industry

B)The video game industry

C)The graphic artistry industry

D)The international travel industry

Answers

Answer: B
Hope this helps!!
And do you want an explanation?

I WILL MARK BRAINLIEST PLZ ANSWER

Answers

A string is used to hold words and phrases, therefore, Maria should use a string variable.

what human-readable data

Answers

Explanation:

what?? there is no question

Answer: A human-readable medium or human-readable format is any encoding of data or information that can be naturally read by humans.

In a computer instant messaging​ survey, respondents were asked to choose the most fun way to​ flirt, and it found that ​P(D)equals0.660​, where D is directly in person. If someone is randomly​ selected, what does Upper P (Upper D overbar )​represent, and what is its​ value?

Answers

Answer: 0.340

Explanation:

If someone is randomly​ selected, what does Upper P (Upper D overbar )​represent an individual who doesn't flirt directly in person.

Since P(D) = 0.660

Upper P (Upper D overbar )​ will be:

= 1 - 0.660

= 0.340

Which of the following would be studied using an Earth-observing satellite?
tracking changes in land used for corn production
tracking heat and energy being released by the earth
O tracking atmospheric changes resulting from volcanic eruptions
tracking cloud cover and its relationship to global warming
Help plz will give BRAINLYIST

Answers

Answer:

climate is what you expect and weather is what you get. More formally, climate is the long-term average of temperature, precipitation, and other weather variables at a given location

Explanation:

Answer:

Geography

Explanation:

What the function of a css page

Answers

Answer:

Css is used to define styles for your Web pages including the design layout and variations in display for different devices in screen sizes

yall how do you tell someone you like them
(I'm in high school so like)

Answers

Answer:

Write it down on paper and tell them or just hang out with them and flirt and maybe hint at them that you like them. That maybe will help if not tell me.

Explanation:

describe how technological development has been evolutionary. cite examples of how products have evolved

Answers

Answer:

Technology spawns new generations of products by using existing components, a phenomenon he calls combinatorial evolution. The change in 'species' can thus be quite radical in a short period of time. The rules of Technological evolution thus make a strong argument for accelerating evolution.

Some are The Internet,  Genetic engineering, Digital media, Personal computers, Space flight, Mobile phones, Nuclear power, and Electronic funds transfer.

Explanation:

Evolutionary trend describes the changes undergone by a particular component or phenomenon over a certain period of time.

The concept of evolutionary change can be attributed to the technological changes or development whigh has been witnessed over time as preexisting concept are modified and revamped to increase capability and productivity.

Communication as gone from postal services to fax ; mail and even instant messaging

Transportation as eclipsed from the use of animals to cars ; ships, airplane and now hyperloops on the horizon

Therefore, modification to already existing technological footprints marks evolution.

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

How t f did i get this wrong

Answers

Answer: #3 is 3/4, just subtraction I believe, and for #4, triangles aren't my strong pint, but I think 2.625. Again, you may need to double check

The system tray contains

the operating system

the computer's hard drive

the battery life

Quick Launch


Please answer quickly, will give brainliest when I can.

Answers

Answer:

Quick Launch

Explanation:

The system tray contains Quick

Launch

I hope you will give brainliest

Answer:

Quick Launch

Explanation:

Other Questions
1.5 code practice: question 4 edhesive Question # 5Multiple ChoiceHow would you relate the passage below to what happened with engineering during the Industrial Revolution?Leonardo da Vinci was not only a painter, but also the designer and inventor of practical items, such as a spring-driven clock, weaponsof war, such as a catapult and a giant crossbow, and some things that never went beyond the conceptual stage, such as his ideas forvarious types of flying machines. Although da Vinci only designed some things such as war machinesfor clients who demandedthem, other things, such as his conceptual design for an early sort of helicopter, were a product of his restless curiosity and desire tocreateAfter the Industrial Revolution, engineers primarily worked as inventors, creating items either for paying clients or their own amusement.OUnlike da Vinci's informal approach to engineering, engineers during the Industrial Revolution began to be formally trained asprofessionals taking a systematic and often specialized approach to their work.During the Industrial Revolution, engineers came to be instructed in how to foster the creative energy that da Vinci displayed in hisendeavorsThe engineering profession became less rigidly formalized during the Industrial Revolution, so much so that afterward, engineers lookedto da Vinci as the model and inspiration for their efforts. Which is a graph of a proportional relationship? What are the advantages and disadvantages of using a relational database than a flat-file database. HELLLLLLLLLLLLLLpFind all the values of k so that the quadratic expression factors into two binomials. Explain the process used to find the values. nHow did printing affect early Chinese society?It enabled merchants to charge higher prices for texts.It allowed information to be spread more widely.It decreased the availability of texts.It limited access to education. The results after simplifying a linear equation are shown.Which result shows exactly one solution?A: x=xB: x=2C: 1=1D: 0=1 Need help on this question, giving 10 points. PLEASE HELP WITH GIVE BRAINIEST!!!!QUESTION: Answer the following questions in the negative, using pronouns in your answers.1. Est-ce que tu es franais (franaise)?2. Est ce que ton copain est canadien?3. Est-ce que ta copine est anglaise?Est-ce que tue au cinema how does Horatio interpret theappearance of the Ghost? A scam drawing of a rectangle park is 5 inches wide and 7 inches 2. Which of these statements is true?O a) For every point on the number line there is only one number that corresponds to that point,Ob) Every point on the number line, though it represents a single unique number, can be expressed in anumber of equivalent forms.Oc) There is no number on the number line whose absolute value is the same as Itself.d) Both (a) and (b)WILL GIVE BRAINLIEST! Why can Asoka history be described as written in stone The United States allows Free Market Practices within its economy, however, the government regulates food and medicine quality. This meansthe U.S. has aeconomy Ken, a meteorologist, is predicting next year's temperatures in New York City. He predicts that, in August, the average low temperature will be 20C, and that the temperature will drop by 4C in September. Ken's predicted temperature for September is how many C Write a description suggested by this picture: 6-137 Consider a Carnot heat-engine cycle executed in a steady-flow system using steam as the working fluid. The cycle has a thermal efficiency of 30%, and steam changes from saturated liquid to saturated vapor at 275oC during the heat addition process. If the mass flow rate of the steam is 3 kg/s, determine the net power output of this engine, in kW. Which words in this sentence are not correctly capitalized?Mother and father were married by a judge in 1979.judgefatherneither of theseboth of these John has a total of 14 coins in his pocket consist of quarters, dimes, nickels, and pennies. He has a total of $1. 67. How much of each coin does John has? Help APSPPP!!!!!!!!!!!!