The strengths and limitations of modern computer programming languages.
- It make use of a translation free.
- It has has High speed.
- It is Machine dependent.
- It is Hard to learn, etc.
<h3>What are the limitations of programming languages?</h3>
A C programming language is one which cannot be able to detect errors for all the line of coding.
Note that it tends to check the bugs after the total coding is done. It is one that do not need to show the namespace property. C programming is one that is said to possess an insufficient level that can be used for data abstraction.
Hence, The strengths and limitations of modern computer programming languages.
- It make use of a translation free.
- It has has High speed.
- It is Machine dependent.
- It is Hard to learn, etc.
Learn more about computer programming from
brainly.com/question/797477
#SPJ1
Answer:
Systems modeling or system modeling is the interdisciplinary study of the use of models to conceptualize and construct systems in business and IT development. A common type of systems modeling is function modeling, with specific techniques such as the Functional Flow Block Diagram and IDEF0.
Explanation:
have a great day
It depends on personal tastes and what it's applied on.
For example: I like Blue. I think Blue is cool! But, I also think red is cool, on a sports car. I think it would have to be Red, but thats what I think. The same with orange. Green for a T-Shirt is cool as well!
Remember that if you want to find out what color someone likes, just ask them. Generally though, Red is considered to be cool for most things.
Answer:
#import turtle
import turtle
# set screen
Screen = turtle.Turtle()
# decide colors
cir= ['red','green','blue','yellow','purple']
# decide pensize
turtle.pensize(4)
# Draw star pattern
turtle.penup()
turtle.setpos(-90,30)
turtle.pendown()
for i in range(5):
turtle.pencolor(cir[i])
turtle.forward(200)
turtle.right(144)
turtle.penup()
turtle.setpos(80,-140)
turtle.pendown()
# choose pen color
turtle.pencolor("Black")
# importing turtle module
import turtle
# number of sides
n = 10
# creating instance of turtle
pen = turtle.Turtle()
# loop to draw a side
for i in range(n):
# drawing side of
# length i*10
pen.forward(i * 10)
# changing direction of pen
# by 144 degree in clockwise
pen.right(144)
# closing the instance
turtle.done()
turtle.done()
Explanation: