Answer:
CPU is known as processing devices..!
relevez le rôle principal de la peau dans l,organime humain. je suis bloquée aidez moi metci
Answer:
language?
Explanation:
What does // this mean in your code?
Floor division
For example:-
11//5=2Some more :-[tex]\boxed{\begin{array}{c|c}\sf * &\sf Multiplication \\ \sf ** &\sf Exponention \\ \sf \% &\sf Remainder \\ \end{array}}[/tex]
3- It is an Information page that is displayed through one of the Internet browsers, it can be saved along htm, html page.
a. Dynamic website
f. Static website
b. Ecommerce site
c. Social media sites
Answer:
f. Static website
Explanation:
HTML stands for hypertext markup language. It is the standard markup language for web pages that define the structure of the content. These elements are the building blocks of any website.
HTML (Hypertext Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables.
Static web pages are often HTML documents stored as files in the file system and made available by the web server over HTTP (nevertheless URLs ending with ". ... Static web pages are suitable for content that never or rarely needs to be updated, though modern web template systems are changing this.
Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.
Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.
How should Jacob format the Notes Master so it will be most helpful to his audience?
Do not include a slide image, leaving the maximum room to take notes.
Do not include a notes pane because graphics do not need to be annotated.
*Make the slide image large so the charts can be seen clearly.
Make the text pane large so the audience can draw their own charts.
Answer:
C. Make the slide image large so the charts can be seen clearly.
Explanation: Edg
what is the full form of Blog
A professional is someone who uses education and acquired skills to earn money in a career.
Question 10 options:
True
False
What's the technique of drawing a 3D object with one vanishing point?
2. Input a decimal number and test if it is not equal to 16.5.
3. If a number x, input from the keyboard is greater than 57, add 4 to x and print the
answer.
4. Input two numbers and find the average only if they are both less than 100.
Answer:
2:
decNum = float(input("Decimal number: "))
if decNum != 16.5:
print("Does not equal")
elif decNum == 16.5:
print("Equal")
else:
pass
3:
if x > 57:
x += 4
print(x)
4:
numOne = int(input("Enter number: "))
numTwo = int(input("Enter number: "))
if numOne < 100 and numTwo < 100:
yes = numOne + numTwo
print(yes // 2)
else:
pass
Explanation:
Please give me brainliest.
Write a program to print sum on first 10 natural numbers.
#include
int main()
{
int i, sum;
for(i=1;i<=10;++i);
{
sum =sum + i;
}
printf("The sum is = %d",sum);
}
A program that prints the sum on the first 10 natural numbers is:
int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //What is a program?A computer program in a programming language is a set of instructions and commands written in a language that a computer can execute or understand.
Using the For Loop program, the variables of the first 10 natural numbers can be written as:
int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //Learn more about writing a program here:
https://brainly.com/question/23275071
Why are graphs and charts important to analyze data?
Answer:
Graphs and chart provide the GUI representation they provide the analysis in form of summary that is easy to understand and they provide good comparision.
Explanation:
Summary
Comparision
Quick to understand
This program is an example of:
def factorial(x):
if x == 1:
return x
else:
return x * factorial(x-1)
Group of answer choices
a do while loop.
recursion.
a for loop.
a while loop.
The program is an example of recursion
In computer programming, recursion is a process in which a function calls itself.
In a recursive program, there is a
base case and a recursive case.When the condition of recursion is met, the base case is returned, else, the recursive case is continued.
In the function given above,
the base case is 'return x' under the condition 'if x == 1'. The recursive case is 'return x * factorial(x - 1)'.So, the function runs until the base case it met and then it stops.
So, the program is an example of recursion.
Learn more about recursion here:
https://brainly.com/question/25797503
What is this on G00gel Documents , how do I fix it?
Answer:
Sorry but it donest show the picture
Explanation:
why is color important for all objects drawn ?
What is an example of an outcome for a game?
A. trying to save the world from an evil wizard
B. rescuing Princess Peach from Bowser
C. playing an ocarina to teleport across the land
D. pressing Up, Up, Down, Down, Left, Right, Left, Right, Start on a controller as a “cheat code” to gain extra lives
Answer:
B
Explanation: I play alot of ####### NIntendo games!!!!!!
Answer:
b
Explanation:
what are quantum computers and it uses
Answer: Quantum computers are machines that use the properties of quantum physics to store data and perform computations
PLZ HELP! 50 POINTS!!!! Which device is used to change a signal into a code?
Group of answer choices
an encoder
an antenna
a wave
Answer:
It should be an encoder.
Explanation:
hope this helps and sorry if its wrong
16. If a user can make modifications to database objects, what permission has that
user been assigned?
A. Update
B. Alter
C. Create
D. Select
B
Explanation:
The Alter command is used when we want to modify a database or object contain in database.
What is the maximum possible value of num after the code has been run?
Answer:
the maximum value from the first line is 20 - 0 = 20
and from the second 20-5 and 20+5 so the maximum is 25
In 1981, Ian Murphy broke into the AT&T online computer system and changed their clocks, allowing people to make calls during the day at a discounted rate. Based on the list of defining factors for computer crimes, what best describes Murphy's crime?
A.
intentionally disrupting, degrading, or destroying information or services on a computer
B.
disclosing any data or information obtained through illegal online activity
C.
knowingly receiving or holding onto any data or information obtained through illegal online activity
D.
intentionally or recklessly tampering with, taking, transferring, concealing, altering, or damaging physical computer equipment
To remove a specified number of characters from anywhere within a string, you should use the ____ method.
Answer:
remove
Explanation:
[tex]{\huge{\underline{\bf{\pink{Question}}}}}[/tex]
: Given a matrix, we need to count all paths from top left to bottom right of MxN matrix. You can either move down or right.
Answer:
[1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.Based on the information given, the correct option will be [1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.
A matrix simply means a set of numbers that are laid out on rows and columns. The numbers in matrix can represent either data or mathematical equationsIt should also be noted that matrix can be used as way of providing quick approximation of calculations.In conclusion, the correct option is [1,2 ] is the matrix to count all paths from top left to bottom right of M×N matrix.
Learn more about matrix on:
https://brainly.com/question/1821869
write 10 place where computer use and it uses
Answer:
dynamite ohohoh
Explanation:
nânnananananananann eh
In the program to evaluate passwords, you gradually built a message to display to the user. What did you add to the end of each message string to start each message on a new line?
message = message + "Your password needs an uppercase letter. _____ "
\endline
\e
\n
\newline
The option that one need to add to the end of each message string to start each message on a new line is \n.
What is a message string?This is known to be a kind of running aspect of text messages that relates to one topic or any question.
Based on the program written above, the option that one need to add to the end of each message string to start each message on a new line is \n as it is the one that will give the best result.
Learn more about program from
https://brainly.com/question/1538272
#SPJ2
what is internet? short ans
Answer:
The Internet is a big network that connects computers all over the world.
john wants to draw a letter L. The turtle is pointing towards the top of the screen. Which series of commands will draw the shape? *
BACK 100 LEFT 90 FORWARD 50
BACK 100 RIGHT 90 FORWARD 50
BACK 200 RIGHT 90 BACKWARD 50
RIGHT 180 FORWARD 100 RIGHT 90 FORWARD 50
Explanation:
BACK 100 RIGHT 90 FORWARD 50
A computer has __ IP address(es).
A. Many
B. One
Answer:
A computer has one IP address(es).
One
Explanation:
Have a great day!
Match each type of Save option on the left with a function on the right.
Answer:
the above is correct
Explanation:
If a flowchart has a diamond with the words “yes” and “no” to the sides of it, then it is representing a program that is a sequence.
Group of answer choices
True
False
Answer:
true
Explanation:
hope it help
Please help please help
Answer:
Explanation:
je pense que la reponse est la suivante a et b puis c
what is meant by formatting the presentation?
It's deciding how things look. If you are on powerpoint you would choose the text style and colors and organize your information how you would like. If you were giving a speech you would decide what order your information is in.