COMPUTER FUNDAMENTALS

COMPUTER APPLICATIONS

DATABASE MANAGEMENT SYSTEMS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
a = 5b = “hello"print (a, b)
A
5
B
Hello
C
5 Hello
D
Hello 5
E
5 5
Explanation: 

Detailed explanation-1: -How do you write hello world python? The easiest way to display anything on the output screen in the python programming screen is by using the print() function. To print hello world, we can design a python hello world program that will print “Hello world” to the output screen using the print() function.

Detailed explanation-2: -The expression a5 will match characters with the previous regular expression. Explanation: The character m is used to match exactly m characters to the previous regular expression. Hence the expression a5 will match exactly 5 characters and not less than that.

There is 1 question to complete.