Which of the below implementation(s) would result in the output given the following main body program? Select all that apply. Main Body Program >>> s = myString ('dog') >>> t = myString('s') >>>r = s+t >>> print(r) 'dogg" >>> s-t >>> print(s.word) "do' Implementation One
Which of the below implementation(s) would result in the output given the following main body program? Select all that apply. Main Body Program >>> s = myString ('dog') >>> t = myString('s') >>>r = s+t >>> print(r) 'dogg" >>> s-t >>> print(s.word) "do' Implementation One
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
![Which of the below implementation(s) would result in the output given the following main body program?
Select all that apply.
Main Body Program
>>> s = myString ('dog')
>>>t = myString ('g')
>>>r = s+t
>>> print(r)
"dogg
>>> s-t
>>> print(s.word)
"do'
Implementation One
|class myString:
_init_(self, word):
self.word
def
word
def _add__(self, other):
return self.word + other.word
_sub__(self, other):
temp
temp.remove(other.word)
self.word = ".join(temp)
def
list(self.word)
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
return self.word + other. word
def _sub_(self, other):
temp = list(self.word)
temp.remove(other.word)
self.word ='.join(temp)
Implementation Two
class myString:
_init_(self, word):
self.word
def
word
def _add_(self, other):
self.word
self.word
other.word
def _sub_(self, other):
self.word
str(list(self.word).remove(other.word))
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
self.word = self.word + other.word
def _sub_(self, other):
self.word = str(list(self.word).remove(other.word))](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fd1b1d19c-9b4c-4b0e-810c-e1dc6b28e801%2F0b918de9-086e-4b97-b45f-7e0f7ce0d976%2Fej2rs3_processed.png&w=3840&q=75)
Transcribed Image Text:Which of the below implementation(s) would result in the output given the following main body program?
Select all that apply.
Main Body Program
>>> s = myString ('dog')
>>>t = myString ('g')
>>>r = s+t
>>> print(r)
"dogg
>>> s-t
>>> print(s.word)
"do'
Implementation One
|class myString:
_init_(self, word):
self.word
def
word
def _add__(self, other):
return self.word + other.word
_sub__(self, other):
temp
temp.remove(other.word)
self.word = ".join(temp)
def
list(self.word)
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
return self.word + other. word
def _sub_(self, other):
temp = list(self.word)
temp.remove(other.word)
self.word ='.join(temp)
Implementation Two
class myString:
_init_(self, word):
self.word
def
word
def _add_(self, other):
self.word
self.word
other.word
def _sub_(self, other):
self.word
str(list(self.word).remove(other.word))
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
self.word = self.word + other.word
def _sub_(self, other):
self.word = str(list(self.word).remove(other.word))
![Implementation Three
class myString:
def _init_(self, word):
self.word
word
def
_add__(self, other):
self.word = self.word
other
def _sub_(self, other):
self.word = self.word
other
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
self.word = self.word + other
def _sub_(self, other):
self.word self.word - other
Implementation Four
class myString:
def _init_(self, word):
self.word
word
def _add__(self, other):
return self.word + other
def _sub_(self, other):
return self.word - other
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
return self.word + other
def _sub_(self, other):
return self.word - other
Implementation Five
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
temp = self.word
return temp
other.word
def _sub_(self, other):
self.word
'.join([i for i in self.word if i not in other.word])
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
temp = self.word + other. word
return temp
def _sub_(self, other):
self.word = ''.join([i for i in self.word if i not in other.word])](/v2/_next/image?url=https%3A%2F%2Fcontent.bartleby.com%2Fqna-images%2Fquestion%2Fd1b1d19c-9b4c-4b0e-810c-e1dc6b28e801%2F0b918de9-086e-4b97-b45f-7e0f7ce0d976%2Ft0r46xm_processed.png&w=3840&q=75)
Transcribed Image Text:Implementation Three
class myString:
def _init_(self, word):
self.word
word
def
_add__(self, other):
self.word = self.word
other
def _sub_(self, other):
self.word = self.word
other
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
self.word = self.word + other
def _sub_(self, other):
self.word self.word - other
Implementation Four
class myString:
def _init_(self, word):
self.word
word
def _add__(self, other):
return self.word + other
def _sub_(self, other):
return self.word - other
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
return self.word + other
def _sub_(self, other):
return self.word - other
Implementation Five
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
temp = self.word
return temp
other.word
def _sub_(self, other):
self.word
'.join([i for i in self.word if i not in other.word])
Also provided in text for copiability:
class myString:
def _init_(self, word):
self.word = word
def _add_(self, other):
temp = self.word + other. word
return temp
def _sub_(self, other):
self.word = ''.join([i for i in self.word if i not in other.word])
Expert Solution
![](/static/compass_v2/shared-icons/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
Step by step
Solved in 2 steps
![Blurred answer](/static/compass_v2/solution-images/blurred-answer.jpg)
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
![Starting Out with Python (4th Edition)](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
![Digital Fundamentals (11th Edition)](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
![C How to Program (8th Edition)](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
![Database Systems: Design, Implementation, & Manag…](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
![Programmable Logic Controllers](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education