Will give Brainliest 100 points answer only if you know
What are the four main components of programming languages, and why is each one needed?

Answers

Answer 1

Answer:

The four main components of programming languages are variables, control structures, data structures, and syntax.

Explanation:

The four main components of programming languages are variables, control structures, data structures, and syntax. The variables are used to store information that can be stored and manipulated in a computer program. They provide a way of labeling data with a descriptive name, so our programs can be understood more clearly. Control structures are the building blocks of computers programs. They are commands that enable a program to “take decisions.” Data structures is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values. Syntax of a computer language is the set of rules that defines the combinations of symbols that are considered to be correctly structured statements or expressions in that language. Syntax therefore refers to the form of the code.

Hope this helped :)

Please like this and rate it 4 or 5 stars.


Related Questions

true or false a weighted inventory system is often tied into player advancement

Answers

Answer:tayfana

Explanation:true

This is using python.
Assuming all the variables are non-zero.

Which lines of code will assign the discriminant the value b2−4ac? Select 2 options.


discriminant = bb - 4ac

discriminant = b * b - 4 * a * c

discriminant = b ^ 2 - 4ac

discriminant = b ** 2 - 4 * a * c

discriminant = b ^ 2 - 4 * a * c

Answers

Answer:

discriminant = b * b - 4 * a * c

discriminant = b ** 2 - 4 * a * c

Explanation:

The operands are correct and in the right order (for python).

** is the operand for squaring something.

* is the operand for multiplying something.

- is the operand for subtracting something.

Let's take a look at these examples individually.

discriminant = bb - 4ac. You have to use the * sign so the computer understands that you're trying to multiply two objects together.

discriminant = b * b - 4 * a * c. This example works because it's using the * where it's appropriate.

discriminant = b ^ 2 - 4ac. In python we don't use the ^ sign. To use exponents, we use **. Also, there is no * sign in between 4, a, and c.

discriminant =  b ** 2 - 4 * a * c. This example works because it uses the ** and * sign where appropriate.

discriminant = b ^ 2 - 4 * a * c. This example uses the ^ sign and python does not support it.

Plz I’ll mark Brainliest
When programming, why should you frequently save your work?
O
to check for errors

O so your work won't get lost if you have a computer problem

O to distinguish your
project from other projects

O to keep your categories separated logically

I’m leaning toward B.

Answers

Answer:

It's B cuz if somehow the power went off your work won't be saved. So it's best to save your work frequently.

Which of the following lines correctly defines a String variable

A. String s = aplus;
B. s = "aplus";
C. String s = "aplus";
D. String = "aplus";
E. String;

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is C i.e. String s = "apluse";

The rule or syntax of declaring string in any programming language is given below:

String variable-name = "yourString";

For declaring string variable, first, you write "String" that is a keyword of a programming languages for declaring string variables, such as int before the variable name for declaring integer variable. Then, you need to write a meaningful name of the string as a variable. After string variable name, you need to put the equal operator and then write the string in double quotation("") marks and after that put the instruction terminator that is ";".

So, according to this syntax, option C is correct.

While other options are not correct because:

In option a, string is not encapsulated in double quotation. Option B does not have varaible type such as String and Option E does not have variable name and its value also. So, only option C is correct and all other except C are incorrect.

Justify the first two paragraphs and the tips list.

I literally don't know what they want me to do so please help very much appreciated

Answers

Answer:

dont mind me just hwere is your question i literaly can see it anywhere

Explanation:

Who got social media that is smart in English subject a lot pass it here your social media pls?

Answers

Answer:

I'll help with work for a low price HMU

_kay.sanchez_ Instagram

NEED HELP FAST timed

Answers

ton

Answer:

piston - engine book

values- crackshaft rod

head- camshaft

Which data type is 1.2e3?

string

single

int

float

Just basic Python coding BTW :L

Answers

Answer:

Float, Floating point numbers go up to 3.402823466 E + 38

Explanation:

What is a feature of Print Preview?

Fit to Document
Fit to Margin
Fit to Page
Fit to Size

Answers

Answer: I think it would be fit to size

Explanation:

when I had a test with this question I guested fit to page and got it wrong so my next guess would be fit to size.

_____________ are things people want in order to be happy and feel good.
A.
Features
B.
Desires
C.
Images
D.
Needs

Answers

I think it would be B! Desires!
                     Hey Emma Here!

Answer:

B!

Explanation:

Desires are things people want things that would make them jump for joy!

Bye Have A Nice Day!

b.) A programmer can precede an expression with
to temporarily
convert an expression's value to the indicated data type, such as changing an int to a double.

Answers

Answer:

a type cast

Explanation:

A type cast converts a value to another type.

When moving pictures and graphics around on the slide you can use these to help you line things up on your slide.

Question 3 options:

Smart Guides


Guide Lines


Line Help Tools


Slide Lines

Answers

Answer:

Smart Guides

Explanation:

When moving pictures and graphics around on the slide you can use SMART GUIDES to help you line things up on your slide.

To access Smar Guides, clicking and dragging the object will automatically bring Smart Guides, then a user can align and space the object accordingly.

Other options for aligning and spacing in Microsoft PowerPoint are:

1. Align Object: this can be assessed through the Format tab

2. Gridlines: this can be assessed through View Tab

3. Guides: this can be assessed from View Tab

4. Using keys Arrows to move the object around

i dont know how to say hello in french

Answers

Answer:

Bonjour

Explanation:

Answer:

hello in french is Bonjour

please help in this question​

Answers

Answer:

B. 1980's

Explanation:

Python, the programming language, was found in 1980's.

What is an example of an attribute for a screen object

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

First, we need to know what are the attributes of an object in object-oriented programming. In the object-oriented program, an entity that you are going to program considered an object. for example, students, class, course, teacher, and exam are objects in the learning management system. The attributes are the feature of an object whereas methods are the behaviors of an object

In this question, it is asked about to list or give an example of an attribute for a screen object. Screen object can be anything that shows display, for example, your laptop, mobile, tablet, billboard, etc.

The attribute of the screen object are listed below:

screen size,screen manufacturerscreen type (whether it is a laptop, monitor, digital watch screen, etc)screen widthscreen lengthscreen colorscreen pixelIs it a touch screen

The above are some examples of an attribute for a screen object.

Mathematics and computer science share the concept of recursion.
You wrote a program to find the factorial of a number using recursion.
5! =

Answers

5! is equal to 120.

5 * 4 * 3 * 2 * 1 = 120

Answer: 5

Explanation: got it right on edgen

Help, please! I will mark as brainliest

Answers

Answer:

Change line 7 to:

for( int i=0; i < names.length; i++)

Last element in the array is one less than the length, ie:

stArr1.length - 1

To print every other value, you replace index++ with index += 2

Explanation:

Not only should you change the <= into <, but also i should start at 0, not 1. The first element of an array has index 0.

Can someone find out what this binary number thing is. Just find out the message, I'm having a difficult time

Answers

Answer:

Press alt and F4 to see answer

Explanation:

please someone help in this question​

Answers

Answer:

i'm pretty sure its a.

Explanation:

good luck :)

What is the output of this program?

numA = 2
numB = 3
if numA == 2 or numB == 2:
print("yes")
elif numA == 2 and numB == 3:
print("no")
Output:

Answers

The output of this program would be letter b (numB=3) because square 2 equals 82 squares and then you get three

Answer:

out is no

Explanation:

just took the quiz

numA = 2 while numA < 30: numA = numA * 5 print(numA)

Answers

Answer:

Your print will be

10

50

Explanation:

Answer:

50

Explanation:

who is the impostor​

Answers

Red is sus. I saw him vent!!!!!!!!!
The imposter is Yellow he is always sus

Information posted online can be deleted in some cases, but why would it be difficult to know if it is really gone?
It can always come back on to your account because of common computer errors.
It is impossible to know if it has been copied or contained in a screenshot by others.
For many social media services deleting does not remove it, just makes it invisible.
It is illegal in most countries to delete certain personal information online.

Answers

Answer:

b

I need I Brainliest

Which method is used to edit a function that has been created and inserted into a cell?
O Double-click the cell containing the function, and make amendments to the function within the cell.
O Click the cell containing the function, and click in the Formula Bar to make amendments to the function.
O Click the cell containing the function, and click on the fx symbol to the left of the Formula Bar to launch the
Function Arguments dialog box where amendments can be made.
O All of the above methods can be used to edit a function that has already been inserted into a cell.

Answers

Answer:

ITS D

Explanation:

I got on excel and tested all of them.

(they all work)

The methods used to edit a function is that all of the above listed methods can be used to edit a function that has already been inserted into a cell.

What is computer function?

The functions of a computer is known to be any kind of  task that a system does. It can be taking data or processing, etc.

Conclusively, Note that all of the above listed options can be used as a method in the editing of a function that has already been inserted into a cell as they are all correct.

Learn more about function from

https://brainly.com/question/179886

What is the best yellow thing you can think of? (I need this for a presentation to turn it black and white.) Please no lemons.

Answers

Answer:

Pineapple some types of apples, yellow roses

Explanation:

Kelly arrives for work at a restaurant at 5:00 p.m. Once there, she washes and chops vegetables, then sets aside ingredients and organizes them for the cook. Kelly is most likely a . Mark's work hours change every week, depending on when he is needed. He wears a suit and tie to work at an elegant restaurant. He greets guests and seats them in a waiting area. He then guides them to their tables. Mark is most likely a

Answers

Answer:

ExplanKelly arrives for work at a restaurant at 5:00 p.m. Once there, she washes and chops vegetables, then sets aside ingredients and organizes them for the cook. Kelly is most likely a  

✔ Food Preparation Worker

.

Mark's work hours change every week, depending on when he is needed. He wears a suit and tie to work at an elegant restaurant. He greets guests and seats them in a waiting area. He then guides them to their tables. Mark is most likely a  

✔ Host

Answer:here's the answer for this question

Explanation:edge2023

High-performance video graphics cards often use ________ memory.
GDDR6

GDDR5

GDDR4

GDDR3

Answers

Answer:

GDDR5

Explanation:

Your manager has requested you keep a timesheet showing how many hours you work each day and what projects you work on during that time. Using spreadsheet software, how can you total your hours at the end of each week to provide a quick and accurate amount? Use the MIN and MAX functions. Use the AVERAGE function. Use the SUM function.

A: Use the MIN and MAX functions.
B: Use the AVERAGE function.
C: Use the SUM function.

Answers

Answer:

I had to use Microsoft Excel for a while when I was working as a dispatcher, inputting pricing and hours and such. C Would be the correct answer.

Explanation:

Average function would just average out the entire week. Though, if the entire week was 8 hours a day, the average would indeed be 8 hours. But it is not the correct answer if one assumes it's not steady like that. Min and Max, depending how it is setup will find the minimum number, and or the maximum number. Making that incorrect as well.

var1 = 1
var2 = 2
var3 = "3"
print(var1 + var2 + var3)

Answers

Explanation:

omg it's Python, I don't like it

I would say the answer is 33 or 6

Answer the crosswords for brainliest and 30

I really need help here get 30 points and brainliest

Answers

Answer:

6:width

Explanation:

what kind of crossword computer srry i did not mean take ur points I don't use them

Other Questions
Josh rents a kayak at a nearby state park. He pays a flat rate of $12.99 plus $3.75 foreach hour that he spends in the water. How much did Josh spend if he was on the riverfor 4 hours? Iran has a president, however, government decisions are made by a group of religious leaders and are based on Islamic law. What type of government is in place in Iran? 1. Identify two reasons why some supporters of the decision consider it a victory for free speech. (2 points) List three things someone can do to improve their social health. Can you solve this?: 5+2x=12+x Describe the roles of skilled human resource for the development of a nation. Which of the following best describes Kwon's childhood?AHe admired the Asian Americans on television.BHe had low self-esteem and was teased often.He was popular and even bullied other kids.He was teased by kids in schools in South Korea, Work out the area of Triangle ABC Just to confirm, these are the numbers, Bottom right: 2cm Bottom Left: 32cm Middle right: 25cm which of the following is NOT a substance?A. sodiumB. waterC. alcoholD. airE. table saltcan select more than one if needed answer plzzzzzzzzzzzzzzzz write the polynomial in standard form 3-3m+4m^{2} -1/2m^{6} plss show the dumb work30x+45+18=250 Which is the most important relationship in Confucianism?a. between brothersb. between ruler and subjectc. between husband and wifed. between parent and child Consider quadrilateral EFGH.The slope of EF is .Which statements are true? Check all that apply.EH is parallel to FG.EF is perpendicular to EH.HG is neither parallel nor perpendicular to FG.Quadrilateral EFGH is a rectangle because it is a parallelogram with four right angles.Quadrilateral EFGH is a trapezoid because it has exactly one pair of parallel opposite sides. Need help, due soon and dont have time PLEASE HELP!Your family purchased new living room furniture on credit at the store, which is a simple interest loan. If your family paid $300.00 in interest on the principal of $1,000.00over 5 years, what was the rate of the loan?1.) 6%2.) 8%3.) 4%4.) 2% Which question is MOST important to consider when choosing a contraceptivemethod?A. How effective is it?B. Will my partner approve of it?C. Have any of my friends tried it?D. Has my partner tried it?I NEED A ANSWER ASAP A scale reads 184 N when a piece of copper is hanging from it. What does it read (in N) when it is lowered so that the copper is submerged in water? define pressure. write it's Si unit. What isotope does the model show? ASAP1. lithium-62. lithium-73. beryllium-74. beryllium-4