9 What do you need to do in Windows 7 Wordpad before applying a format to a sentence?
O The document must be saved
O The left mouse button should be clicked over the sentence.
O The spelling of the sentence should be checked.
O The sentence must be selected.

Answers

Answer 1

Explanation:

the sentence must be selected

Answer 2

The thing that needs to do in Windows 7 Wordpad before applying a format to a sentence is D. The sentence must be selected.

It should be noted that before one applies a format to a particular sentence in Windows 7 Wordpad, one will have to drag and select the text first with the use of the mouse.

When this has been done, then the person can then choose the format and select the desired action such as font. One can also adjust the size or color.

It should be noted that the spelling of the sentence isn't necessary to be checked.

In conclusion, the correct option is D

Read related link on:

https://brainly.com/question/14697747


Related Questions

If you have an array of 100 sorted elements, and you search for a value that does not exist in the array using a binary search, approximately how many comparisons will have to be done?
a)7


b)100


c)50

Answers

Answer:

50

Explanation:

as binary search will search the array by dividing it into two halves till it find the value.

Twenty years ago, most games were sold in brick and mortar stores. How did independent game developers get their games into these stores?

Question 18 options:

by working with a crowdfunding specialist who would give developers funds to offer to retailers if they promised to sell the game


by working with a piracy specialist who would ensure the game was distributed to each and every retailer, regardless of licensing


by working with a retail specialist who distributed video games to consumers


by working with a publisher who would help the developer bring their games to stores and then market them and get as much exposure and traction as possible

Answers

Answer: by working with a publisher who would help the developer bring their games to stores and then market them and get as much exposure and traction as possible

Explanation:

Publishers were and are still important in the gaming world even if they have now increasingly moved online. Publishers have a reputation and with this reputation comes access to a wide array of services that enable them to sell games.

This was the same when most stores were brick and mortar. One would sign a deal with a publisher who through their expertise would help the game get to market and give it publicity so that it can be sold.

Question # 2 Multiple Choice The _____ method returns an integer between the two provided numbers. It can take the value of either of the provided numbers. seed randint random range

Answers

Answer:

randint

Explanation:

Answer:

randint

Explanation:

ed 2021

-(-13) P binary using signed. 2's complement representation
Perform the arithmetic operations (+42) + (-13) and (-42)
negative .
Consider the balloon​

Answers

Answer:

00011101

00011101

Explanation:

Given the following arithmetic operations

a)   (+42) + (-13)

b)   (-42) - (-13)

From (a):

We need to convert +42 into binary, so we get = 00101010

Now for +13, when it is converted into binary, we get = 00001101

But, here, the 13 is negative. So, here is what we will do, we will have to take the two compliment of the binary. After doing that, we get = 111110011

+ 42     →     00101010

- 13      →     1 1 1 10011

+29             000 11101  

Thus, the arithmetic operation after we use 2's complement is 00011101

b)

Here both 42 and 13 are negative. Using two complement representation

-42 is first converted to binary as 00101010, Then → 11010101 + 1 = 11010110

-13 is converted to binary as 00001101 → 11110010 = 11110011

In between, a negative sign exists, so we take another 2's complement.

i.e.

11110011 → 00001100 + 1 = 00001101

- 42 →     1 1 01 0110

+13  →     00001 101

-29         1 1 1 00011

since there is no carry, we take two's complements for the result as:

1 1 1 00011 →00011100 + 1 = 00011101

Write a program with total change amount as an integer input, and output the change using the fewest coins, one coin type per line. The coin types are Dollars, Quarters, Dimes, Nickels, and Pennies. Use singular and plural coin names as appropriate, like 1 Penny vs. 2 Pennies.
If input is 0 or less, output is 'No Change'
For Example: Input: 45
Output:
1 Quarter
2 Dimes
input_val = int(input())
if input_val <= 0:
print('No change')
else:
num_dollars == input_val // 100
input_val %= 100
num_quarters == input_val // 25
input_val %= 25
num_dimes == input_val // 10
input_val %= 10
num_nickels == input_val // 5
input_val %= 5
num_pennies == input_val
if num_dollars > 1:
print('%d dollars' % num_dollars)
elif num_dollars ==1:
print('%d dollar' % num_dollars)
if num_quarters > 1:
print('%d quarters' % num_quarters)
elif num_quarters ==1:
print('%d quarter' % num_quarters)
if num_dimes >1:
print('%d dimes' % num_dimes)
elif num_dimes ==1:
print('%d dime' % num_dimes)
if num_nickels >1:
print('%d nickels' % num_nickels)
elif num_nickels ==1:
print('%d nickel' % num_nickels)
if num_pennies >1:
print('%d pennies' % num_pennies)
elif num_pennies ==1:
print('%d penny' % num_pennies)

Answers

Answer:

b ,/knlk

Explanation:

In this exercise, you will get some practice with the __add__ method by implementing it for a class called ContactBook. This class represents a collection of names and phone numbers. ContactBook stores its information as a dictionary, where the key is a name and the value is a phone number or group of phone numbers. The keys and values in this dictionary are stored as strings. When printed, a ContactBook might look like this:

Answers

Answer:

class ContactBook():

   def __init__(self):

       self.contacts ={}

   def __repr__(self):

       return str(self.contacts)

   def add_contact(self,name,number):

       self.contacts[name] = number

   def __add__(self, other):

       new_contact = ContactBook()

       other_contact = other.contacts.keys()

       for name,num in self.contacts.items():

           if name in other_contact:

               new_contact.add_contact(name,num or other_contact[name])

           else:

               new_contact.add_contact(name,num)

       for name,num in other.contacts.items():

           if name not in self.contacts:

               new_contact.add_contact(name, num)

       return new_contact-

cb1 = ContactBook()

cb2 = ContactBook()

cb1.add_contact('Jonathan','444-555-6666')

cb1.add_contact('Puneet','333-555-7777')

cb2.add_contact('Jonathan','222-555-8888')

cb2.add_contact('Lisa','111-555-9999')

print(cb1)

print(cb2)

cb3 = cb1+cb2

print(cb3)

Explanation:

The ContactBook class holds the contact details of an instance of the class. The class has three magic methods the '__repr__', '__init__', and the '__add__' which is the focus of the code. The add magic method in the class adds the contact book (dictionary) of two added object instance and returns a new class with the contact details of both operand instances which is denoted as self and other.

Other Questions
wasdwasdwaqsdwasdsdwasdwasdwasdwwa During the month of July, we only had 0.1573 inches of rain. What is this, rounded to the nearest thousandth? O 0.2 O 0.158 0.157 inches 0.16 A class of 102 students went on a field trip to the zoo. They took 6 vehicles which included cars and buses. Find the number of cars and buses they took if each car holds 4 students and each bus holds 30 students. Why was Homer Plessy selected to be the "test case" for this legal challenge? Select the best answer for the question.16. How long is a 12 meter bolt?A. 22.8 inchesB. 20.7 inchesC. 18.1 inchesO D. 19.7 inchesMark for review (Will be highlighted on the review page) Solve math please.??? help plz urgent ! which ratio completes the probability distribution table 1/483/4828/4816/48 Please give me the correct answer The United States generally opposes tariffs and participates in organizationslike the World Trade Organization as part of a strategy to:O A. promote free trade.O B. provide foreign aid.O c. protect human rights.O D. combat terrorism.SUBMIT Observing parents and children will help you gain which skills? 1. Friendship2. Marriage3. ReligiousOr 4- parenting . I give brainliest! :) help me in this ?? and tysm !! 3 1/3 +(-2 1/4) + 1 5/6 =??? one of the strongest human drives seems to be desire for power. write an essay in which you discuss how a character in a novel or drama struggles to free himself or herself from the power of others or seeks to gain power over others If you have a gas sample with a pressure of 2 atm, a volume of 40 L and a temperature of 300 K, what will be the number of moles of gas in that sample? 17.Oxygen gas can be prepared by heating potassium chlorate according to the following equation:2KClO3(s)2KCl(s) + 3O2(g)The product gas, O2, is collected over water at a temperature of 25 C and a pressure of 755 mm Hg. If the wet O2 gas formed occupies a volume of 6.22 L, the number of grams of O2 formed is ________ g. The vapor pressure of water is 23.8 mm Hg at 25 C. what are 3 most common Operating systems Analyze the map below and answer the question that follows. Please only reference the letter identified within the question. / Image courtesy of NASA Which body of water is located at Letter C on the map above? A. The Black Sea B. The Mediterranean Sea C. The Atlantic Ocean D. The Aegean Sea I need help with this, please and thank you to anyone who can do this. Ron asked 18 classmates whether they prefer granola bars over muffins.He used a calculator to compare the number of classmates who said yes to the total number he surveyed.The calculator showed the result below. SOMEONE PLEASE HELP ME ON #8 PLS PLS IF YOU DO I WILL GIVE BRAINLIST RIGHT AWAY AND POINTS PLS