MCQs > IT & Programming > Symbian Platform Python > What function is performed by the following PyS60 code? import inbox, appuifw box = inbox.Inbox() query = appuifw.query(u'guess', 'text').lower() hits = [] ids = [] for sms_id in box.sms_messages(): msg = box.content(sms_id).lower() if msg.find(query) != -1: hits.append(msg[:25]) ids.append(sms_id) index = appuifw.selection_list(hits, 1) if index >= 0: appuifw.note(box.content(ids[index]))

Symbian Platform Python MCQs

What function is performed by the following PyS60 code?
import inbox, appuifw
box = inbox.Inbox()
query = appuifw.query(u"guess", "text").lower()
hits = []
ids = []
for sms_id in box.sms_messages():
      msg = box.content(sms_id).lower()
      if msg.find(query) != -1:
          hits.append(msg[:25])
          ids.append(sms_id)
index = appuifw.selection_list(hits, 1)
if index >= 0:
        appuifw.note(box.content(ids[index]))

Answer

Correct Answer:

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Symbian Platform Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

Symbian Platform Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it