Who is the father of C language?
Anonymous Quiz
7%
Steve Jobs
15%
James Gosling
69%
Dennis Ritchie
7%
Rasmus Lerdorf
2%
Don't Know 🙋🏻
Which of the following is a correct identifier in C++?
Anonymous Quiz
57%
VAR_1234
18%
$var_name
8%
7VARNAME
7%
7var_name
11%
Don't Know 🙋🏻
Which of the following is not a characteristic of a computer?
Anonymous Quiz
16%
Versatility
9%
Accuracy
18%
Diligence
49%
I.Q.
7%
Don't Know 🙋🏻
Which of the following sorting algorithms is the fastest?
Anonymous Quiz
23%
Merge sort
57%
Quick sort
13%
Insertion sort
6%
Shell sort
Which is valid C expression?
Anonymous Quiz
11%
int my_num = 100,000;
58%
int my_num = 100000;
18%
int my num = 1000;
7%
int $my_num = 10000;
7%
Don't Know 🙋🏻
How to Check if a String Contains Special Characters ✅
Read (Code) 👉 https://www.knowprogram.com/python/check-special-character-python/
Read (Code) 👉 https://www.knowprogram.com/python/check-special-character-python/
What is the maximum length of a Python identifier?
Anonymous Quiz
24%
32
9%
16
26%
128
34%
No fixed length is specified
6%
Don't Know 🙋🏻
MS-Word is an example of _____.
Anonymous Quiz
19%
An operating system
4%
A processing device
69%
Application software
6%
An input device
2%
Don't Know 🙋🏻
Which environment variable is used to set the java path?
Anonymous Quiz
10%
MAVEN_Path
43%
JavaPATH
21%
JAVA
19%
JAVA_HOME
6%
Don't Know 🙋🏻
Content Writing Internship 👨💻🖥️
Apply Now:-
https://internshala.com/internship/detail/content-writing-work-from-home-job-internship-at-know-program1647929089
Apply Now:-
https://internshala.com/internship/detail/content-writing-work-from-home-job-internship-at-know-program1647929089
What will be the datatype of the var in the below code snippet?
var = 10 print(type(var)) var = "Hello" print(type(var)
var = 10 print(type(var)) var = "Hello" print(type(var)
Anonymous Quiz
26%
str and int
15%
int and int
13%
str and str
41%
int and str
5%
Don't know
What are the types of lists available in HTML?
Anonymous Quiz
72%
Ordered, Unordered Lists
10%
Bulleted, Numbered Lists
8%
Named, Unnamed Lists
5%
None of the above
4%
Don't know the Answer
Which of the following keywords is used to define a variable in Javascript?
Anonymous Quiz
45%
var
9%
let
38%
Both A and B
4%
None of the above
3%
Don't know 🙋🏻
Which of the following is a correct identifier in C++?
Anonymous Quiz
51%
VAR_1234
20%
$var_name
9%
7VARNAME
8%
7var_name
13%
Don't know
Indian Flag Souce Code:-
import turtle
from turtle import*
# screen for output
screen = turtle.Screen()
# Defining a turtle Instance
t = turtle.Turtle()
speed(0)
# initially penup()
t.penup()
t.goto(-400, 250)
t.pendown()
# Orange Rectangle
# white rectangle
t.color("orange")
t.begin_fill()
t.forward(800)
t.right(90)
t.forward(167)
t.right(90)
t.forward(800)
t.end_fill()
t.left(90)
t.forward(167)
# Green Rectangle
t.color("green")
t.begin_fill()
t.forward(167)
t.left(90)
t.forward(800)
t.left(90)
t.forward(167)
t.end_fill()
# Big Blue Circle
t.penup()
t.goto(70, 0)
t.pendown()
t.color("navy")
t.begin_fill()
t.circle(70)
t.end_fill()
# Big White Circle
t.penup()
t.goto(60, 0)
t.pendown()
t.color("white")
t.begin_fill()
t.circle(60)
t.end_fill()
# Mini Blue Circles
t.penup()
t.goto(-57, -8)
t.pendown()
t.color("navy")
for i in range(24):
t.begin_fill()
t.circle(3)
t.end_fill()
t.penup()
t.forward(15)
t.right(15)
t.pendown()
# Small Blue Circle
t.penup()
t.goto(20, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# Spokes
t.penup()
t.goto(0, 0)
t.pendown()
t.pensize(2)
for i in range(24):
t.forward(60)
t.backward(60)
t.left(15)
#to hold the
#output window
turtle.done()
import turtle
from turtle import*
# screen for output
screen = turtle.Screen()
# Defining a turtle Instance
t = turtle.Turtle()
speed(0)
# initially penup()
t.penup()
t.goto(-400, 250)
t.pendown()
# Orange Rectangle
# white rectangle
t.color("orange")
t.begin_fill()
t.forward(800)
t.right(90)
t.forward(167)
t.right(90)
t.forward(800)
t.end_fill()
t.left(90)
t.forward(167)
# Green Rectangle
t.color("green")
t.begin_fill()
t.forward(167)
t.left(90)
t.forward(800)
t.left(90)
t.forward(167)
t.end_fill()
# Big Blue Circle
t.penup()
t.goto(70, 0)
t.pendown()
t.color("navy")
t.begin_fill()
t.circle(70)
t.end_fill()
# Big White Circle
t.penup()
t.goto(60, 0)
t.pendown()
t.color("white")
t.begin_fill()
t.circle(60)
t.end_fill()
# Mini Blue Circles
t.penup()
t.goto(-57, -8)
t.pendown()
t.color("navy")
for i in range(24):
t.begin_fill()
t.circle(3)
t.end_fill()
t.penup()
t.forward(15)
t.right(15)
t.pendown()
# Small Blue Circle
t.penup()
t.goto(20, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
# Spokes
t.penup()
t.goto(0, 0)
t.pendown()
t.pensize(2)
for i in range(24):
t.forward(60)
t.backward(60)
t.left(15)
#to hold the
#output window
turtle.done()
Happy Independence Day 🇮🇳💗💗