Choose the correct line of code.

To overload exponentiation, use

•def_power__(self, b):
•def_power_(self, a, b):
•def_pow_(self, b):
•def_pow_(self, a, b);

Answers

Answer 1
Def_pow_(self,b): if not then I’m sorry
Answer 2

Answer: def_pow_(self,b)

Explanation: got it right on edgen


Related Questions

PLEASE HELP Type the correct answer in the box. Spell all words correctly. Ross wants to add a graph from a text file format into his database. Which feature will enable him to add the graph in his database? Ross can use the______data feature to add the graph in his database.

Answers

Answer:

the answer to your problem is (insert)

Explanation:

Click Chart under the Illustrations group on the Insert tab.The Insert Chart dialogue box's arrows can be used to cycle through the various chart kinds.Click OK after selecting the type of chart you like.

What insert data feature to add the graph?

Select Data by selecting with the right mouse button on the chart. The Select Data Source dialogue box appears on the worksheet where the chart's source data are placed.

Click in the worksheet, then click and drag to choose all the data you wish to use for the chart, including the new data series, while keeping the dialogue box open.

The Insert SQL command is used to add new records or data to tables. Because it is used to alter database data, it is seen as falling within the umbrella of statements known as Data Manipulation Language (DML).

Therefore, insert data feature to add the graph in his database.

Learn more about insert data here:

https://brainly.com/question/14331259

#SPJ2

a*=++a/6+b++ 3 if a=3,b=4​

Answers

Answer:

[tex]a=22.5[/tex]

Explanation:

Given

[tex]a*=++a/6+b++3[/tex]

Required

The result when [tex]a=3[/tex] and [tex]b=4[/tex]

Analyzing the given instruction

a*=(++a)/(6)+(b++3)

Single out and solve the expressions in bracket

(++a) = a -- When the ++ operator appears before an operand, it is called pre increment. meaning that the operation will be done before the operand will be incremented.

So: in this case: ++a = a

[tex]b++3 = b + 3[/tex]

The operator, as used in that statement is the same as: b + 3.

So:

[tex]a*=(++a)/(6)+(b++3)[/tex]

[tex]a*=(a)/(6)+(b+3)[/tex]

[tex]a*=(3)/(6)+(4+3)[/tex]

[tex]a*=0.5+7[/tex]

[tex]a*=7.5[/tex]

The above expression is calculated as:

[tex]a=a*7.5[/tex]

So:

[tex]a=3*7.5[/tex]

[tex]a=22.5[/tex]

Hello, I am smart without showing off and I will help you with your homework and tell you the correct answers (◠ᴥ◕ʋ).​

Answers

Answer:

HII CSN U ANSWER MY MATH QUESTION

Who else hates brainly cause they took over 400 points out of my other account and left me at -324 points so copy and paste this every where

Answers

SAME! Instead, it was 630!! It was so unfair tbh, and I did nothing wrong.

Answer:

That's terrible :(

Explanation:

Explain how malware can be used in cyber warfare or a cyber terrorism attack on a country?

Answers

Answer:

Malware can be utilized to damage infrastructure that utilizes computers. It can manipulate what a computer is doing. In this way, a piece of malware could be designed to target government operations, such as government office computers, and then steal and wipe data from a computer. In other ways, a piece of malware could target the water supply control computers, and removing safety features, or target the power grid. This is why infrastructure necessary for day to day life and survival should be separate from the Internet, which can remove a major vulnerability.

Theo would like to apply formatting to record data based on values in comparison with values in other fields. Which option should he use?

Conditional Formatting
Access Rules
Expression Builder
Field Validation Rules

Answers

Answer:

Conditional Formatting

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.

In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.

This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. These records are stored and communicated to other data when required or needed.

Conditional formatting is a feature found in a lot of spreadsheet software applications such as Microsoft Excel and it avails end users the ability to apply specific formatting options to cells based on certain defined criteria.

Basically, it is used for highlighting, emphasize, comparing or differentiating between data (information) stored in a spreadsheet document i.e data values that are lesser than or greater than a specificied value.

In this scenario, Theo would like to apply formatting to record data based on values in comparison with values in other fields. Thus, the option he should use is conditional formatting.

Answer:

A

Explanation:

You've just received an e-mail message that indicates a new serious malicious code threat is ravaging across the Internet. The message contains detailed information about the threat, its source code, and the damage it can inflict. The message states that you can easily detect whether or not you have already been a victim of this threat by the presence of the three files in \Windows\System32 folder. As a countermeasure, the message suggests that you delete these three files from your system to prevent further spread of the threat. What should your first action based on this message be?a. Perform a complete system backup.b. Verify the information on well-known malicious code threat management web sitesc. Distribute the message to everyone in your address book.d. Reboot the system.e. Delete the indicated files if present

Answers

Answer:

B.) Verify the information on well-known malicious code threat management web sites

Explanation:

Of course, you should verify the message with reliable sources before taking any actions that could impact your computer. Even if the message seemed legit, it telling you to fiddle with the Windows system folder is a red flag.

Verify the information on well-known malicious code threat management web sites. The correct option is b.

What is malicious code threat?

The threat posed by malicious code to application security cannot be effectively addressed by traditional antivirus software on its own.

Attack scripts, viruses, worms, Trojan horses, backdoors, and malicious active content are all examples of the broad category of system security words known as harmful code.

Malware attacks are frequent cyberattacks in which the victim's system is compromised by malware, which is typically malicious software.

Ransomware, malware, command and control, and other specialised sorts of attacks are all included in malicious software, sometimes known as viruses.

The notification advises you to remove these three files from your system as a countermeasure to stop the threat from spreading further, but you should first double-check the information on reputable harmful code threat management websites.

Thus, the correct option is b.

For more details regarding malicious attacks, visit:

https://brainly.com/question/13137381

#SPJ5

Which of the following is referred to as "keeping up with the Joneses"?

Answers

Answer:

This phrase basically means keeping up with the trend. You can get an Android for cheaper but you get the high quality iPhone because it appears rich and overall, better. But it's used a lot to say, "you're wasting money"

Write a program in Python which prints your name, surname and class.

Answers

Answer:

print(name + "\n" + surname + "\n" + class)

Explanation:

not enough information is given but this will print those three variables with a newline between each.

Choose the correct term to complete the sentence.

______ uses objects that represent classes to manage, manipulate, and store data.

•Object-defined programming

•Object-oriented programming

•Oriented programming

Answers

Answer:

Object-oriented programming

Explanation:

When used in object-oriented programming , a class is a factory for creating object. An object is a collection of data and behavaiors that represent some entity(real or abstract).

Answer: Object-oriented programming

Explanation: got it right on edgen

What are inserted to show the total number of pages in Word?

Answers

Answer:

Include total number of pages in the page number

Go to Insert > Page Number.

Do one of the following: Select Current Position if you have a header or footer. Select a location if you have no header or footer yet.

Scroll until you see Page X of Y and select a format.

Select Close Header and Footer, or double-click anywhere outside the header or footer area.

why is page formatting important??​

Answers

Answer:

Perhaps one of the most important things you can learn in Microsoft Word is how to format your page with elements such as margins and page breaks. Formatting your pages makes them look more attractive and makes them easier to read.

Answer:

Formatting is important for two reasons: It makes your essay look like an essay (rather than a letter or a note to a friend). It helps to make your essay more readable.

Explanation:

Anyone who know how to use canva .com please make a logo of the name : Deadly Sins

Answers

Answer:

Yes ma'am as in the anime?

Explanation:

Cuz there's a anime show called 7 deadly sins or just deadly sins?

Answer:

hello give the person above brainlist

Explanation:

Which of the following is a true statement about parameters in data management? Check all that apply.

Answers

Answer:

Parameters are used to limit or refine results.

A multiply parameter contains more than one condition to locate, sort, or filter data.

Searching for the number 12 in your spreadsheet is an example of a simple parameter.

Explanation:

Answer:

1,3,4

Explanation

the taskbar contains what

Answers

Answer:The taskbar is anchored to the bottom of the screen by default, but can be moved to any screen side, and contains the Start button, buttons for pinned and running applications, and a system tray area that contains notification icons and a clock.

Explanation:

What the price of XRP right now??????

Answers

Answer:

$0.579

Explanation:

I'm pretty sure that's the answer.

Question
You want to draw a rectangle over the moon you added to your slide and then move it behind the moon. You want it to look like a frame. What ribbon tab would you click to find the tool to add the rectangle?

Animations
Insert
Design
Home

Answers

Answer: Insert  :-) !

Explanation:

3
Type the correct answer in the box. Spell all words correctly.
Which program can damage your computer?
can cause damage to my computer.
Reset
Net

Answers

Answer: Look in /Library/LaunchDaemons for a plist file that is out of place. It may actually have ActivityInputd in the name.

If there is, move it to the Trash.

Open Network System Preferences, select the service you use to connect to the Internet, and click the Advanced button.

Click on the Proxies tab and uncheck any of the proxies listed in the “proxies to configure” list.

Restart.

Explanation:

Which of the following is NOT present on the Title Bar?​

Answers

Answer:whats the question

Explanation:(pls dont report me as soon as u tell me the question i will edit my answer and answer correctly)

"love takes off masks we fear we cannot live without and cannot live within" what is the meaning to this quote?​

Answers

Answer: It's similiar to the quote "You bring out the best of me" When you're in love, you feel the need to be yourself and that you don't have to hide it.   Love brings out the real you.

Hope this helps.

Explanation:

how old is the letter 3 on its 23rd birthday when your car turns 53 and your dog needs gas and your feet need lave then when is your birthday when your mom turns 1 and your younger brother is older then you

Answers

Answer:

ummm...idr.k..u got me....wat is it

Explanation:

2 When you add text with the Text Tool, __________. the text is added to the current layer a new floating selection layer is created the text is added to every layer a new layer is created

Answers

Answer:

A new floating selection layer is created

Explanation:

In a graphic design software for example like CorelDraw, if  a text tool is used to add text, a new floating selection layer is created in which, the text is inserted.

You can set up an AutoFilter to find specific formatting.
True or False
(Microsoft Excel)

Answers

Answer:

I think you can, so id say its true.

Explanation:

Task 1
Take a look at the pictures below.
Picture B
Picture A
1. Describe the two images.
2. Does the image show observance of occupational health and safety
procedures while doing the computer-aided drawing?
6​

Answers

Answer: yes they do

Explanation: they both show the same references.

Which of the following is not a key component of a structure?
A. Name
B. Properties
C. Functions
D. Enumerations

Answers

Answer:

D i think

Explanation:

What are your thoughts on the last nintendo direct

Answers

Answer:

I don't know? How do you feel about them?

Explanation:

Answer:

Wait, what's that-

Explanation:

Before using an advanced filter, you must first set up a(n) ________.
(Microsoft Excel)

A. Structured Range
B. AutoFilter
C. Slicer
D. Criteria Range

Answers

the answer is b autofilter

What is the difference between Input, Output, and Storage Devices?

Answers

Answer:

Explanation:

There are three different types of peripherals: Input, used to interact with, or send data to the computer (mouse, keyboards, etc.) Output, which provides output to the user from the computer (monitors, printers, etc.) Storage, which stores data processed by the computer (hard drives, flash drives, etc.)

There are three different types of peripherals: Input, used to interact with, or send data to the computer (mouse, keyboards, etc.) Output, which provides output to the user from the computer (monitors, printers, etc.) Storage, which stores data processed by the computer (hard drives, flash drives, etc.)

why is it necessary to have usernames and passwords if one is working on a network?​

Answers

Answer:

So nobody finds and uses your personal information

Use the drop-down menus to complete statements about back-up data files.

The default storage location for back-up data files is in the local
folder.

PST files are not
in the Outlook client, and users must
the files

to make them usable.

Answers

Answer:

the third one trust me

Explanation:

Answer:

Documents

accessible

import or export

Explanation:

Edge, just did it

Other Questions
PLEASE HELP ill give BRAINLIST Are electrons always shared equally in a covalent bond? Give two examples. Explain why the properties of metals, ceramics, semiconductors, polymers, and composites need to be considered before decisions are made about which types of materials are used in a product. Enter your answer in the space provided. Thomas lives more than 0.55 km and less than 0.75 km from his school.Thomas lives from his school?A. 0.06 kmB 0.50 kmc. 0.60 kmD. 1.30 km This activity is important because marketing students should be aware of career opportunities in sales, how sales people create value for customers, and how the sales function contributes to the overall success of the organization.Mark will be a junior in college this fall, but is undecided about his major. Over the summer, he visited with an old family friend, Brad Donavan, who has had a lengthy and successful career selling business software and services. He suggests that sales might be a great match for Marks personality, interests, and lifestyle. Mark is encouraged and begins looking at job listings and responsibilities associated with various types of sales positions advertised in his area.The goal of this exercise is to assist Mark by categorizing each of the eight (8) listed job descriptions into one of five sales job category types: (1) new business salesperson, (2) order-taker, (3) missionary salespeople, (4) sales management and support, and (5) other.Select the appropriate sales job category for each example.2. The goal of the Channel Sales Manager (CSM) position is to create and manage successful revenue-generating relationships with reseller partners who affect the movement of our products to end user customers.(Click to select) New Business Salespeople Order-Takers Missionary Salespeople Sales Management and Support Other4. A primary responsibility of the Route Sales Representative will be to drive a company vehicle to deliver coffee, tea, and other products to customers in assigned territory.(Click to select) New Business Salespeople Order-Takers Missionary Salespeople Sales Management and Support Other8. The Key Account Manager is responsible for nurturing key customer relationships and the development of account-specific promotional activities.(Click to select) New Business Salespeople Order-Takers Missionary Salespeople Sales Management and Support Other How did oregon trail help the country grow Why do you look so cute today? ;) Haley and her family went on a vacation. To get to the beach, they drove for 3 hours and 25 minutes. When they headed back home, it took them 230 minutes to get home. Did it take longer to get to the beach or to get home from the beach? If y=2x and 3x 3y = 2, then x When the body senses warmer temperatures, what happens to the blood vessels? I WILL GIVE BRAINLIES, FIVE STARS AND MY THANFUL THANKS!!!~Using complete sentences post a detailed response to the following.Lionel works for an energy company interested in drilling for oil off the coast of a small island. The representative for the local fishing industry, Rochelle, says that locals are vigorously opposed to Lionels idea. A town meeting is held. Lionel explains how his company is dedicated to practicing the safest drilling techniques. He explains that oil piped from the oceans floor is purer and that it can be harvested in a more efficient way than an oil rig on land. Lionel also emphasizes how much the trucks carrying fish to the markets all over the country would save if local oil was able to be used. Rochelle fires back that in the past, serious accidents with offshore oil drilling have been reported. She points out that if there were a spill, the resulting death of fish would cost the local fisherman their livelihood. Local opinion on the issue is split. Before the town agrees to side with Lionels energy company or Rochelles local fish industry, officials order a report from a biotechnologist. Everyone agrees to go with what the biotechnologist recommends. Which side do you think the biotechnologist will agree with? Why? HELP ASAP GIVING 5 PTS AND BRAINLIEST Which of the following is an example of a constructive force that helps to shape Earth's land? A. When two plates in the Earth's lithosphere collide and cause the land to rise up into a mountain B. When glaciers break pieces of a mountain away as they slide downward C. When erosion, due to rain, wind, snow, and ice, wears away a mountain top !Help help help! lols Ray had 5 yards of ribbon. He used 2/3 of it. How many yards of ribbondid he use? Whats g(x)=^2 end behavior PLSSS HELP ONLY EVENS ALL 100 points + brainlist NEED HELP ASAP Match each expression in column A with an equivalent expression from column B.Column A12r + t 4r + 6t(12r + 2t) (4r + 10t)12(r + t) 6(r + t) + 4(r + t) 2(r + t)Column B8(r t)8(r + t)8r + 7t12r + t 4r + 6t People should be more concerned about the global water budget than the local water budget.True Nelter Corporation, which has only one product, has provided the following data concerning its most recent month of operations:Selling price $ 122Units in beginning inventory 290Units produced 6,600Units sold 6,590Units in ending inventory 300Variable costs per unit:Direct materials $ 42Direct labor $ 26Variable manufacturing overhead $ 2Variable selling and administrative expense $ 21Fixed costs:Fixed manufacturing overhead $ 151,800Fixed selling and administrative expense $ 46,130The company produces the same number of units every month, although the sales in units vary from month to month. The company's variable costs per unit and total fixed costs have been constant from month to month.Required:a. Prepare a contribution format income statement for the month using variable costing.b. Prepare an income statement for the month using absorption costing. Test if a number grade is an A (greater than or equal to 90). If so, print "Great!". Hint: Grades may be decimals. Sample Run Enter a Number: 98.5 Sample Output Great!