COMPUTER FUNDAMENTALS

COMPUTER APPLICATIONS

DATABASE MANAGEMENT SYSTEMS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
A series of characters in the Python language which can be letters, digits, or symbols, whose writing begins and ends with quotation marks is called
A
Statement
B
Syntax
C
String
D
Program
E
Scratch
Explanation: 

Detailed explanation-1: -Quotation symbols are used to create string object in Python. Python recognizes single, double and triple quoted strings. String literals are written by enclosing a sequence of characters in single quotes (’hello’), double quotes ("hello") or triple quotes (”’hello”’ or “""hello""").

Detailed explanation-2: -String literals in python are surrounded by either single quotation marks, or double quotation marks. ‘hello’ is the same as “hello".

There is 1 question to complete.