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
icon
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))
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])
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
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Function Arguments
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.
Similar questions
Recommended textbooks for you
Database System Concepts
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)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education