Answer:
Option D is correct.
Explanation:
A Loop statment is a control flow statement that repeatedly executes a statement or a series of statements while the value of a specific condition is truthy or until the value of a specific condition becomes truthy.
Answer: the answer is 1
Explanation:
edge 2021
screen
power supply
RAM
second part
hard disk
keyboard
touchpad
Answer:
Power supply and Hard disk
Explanation:
Answer:
Normal Margin is fit on the page. The default margins for Microsoft Word is normal margin.
Explanation:
The paper visual effect give the document’s theme and quality. Margins send visual effects. Making a document right helps you to send the right message to readers. Use a small paper and adding a border.
You can change the page layout that people notice first with size, orientation, and margins.
Page margins make your document readable. Margins make the document more readable, make text look inviting, and given reviewers.
With narrower margins, you can reduce more words on-page.
To many words in a line make it difficult to read the document.
Margins are of many types
Normal gives an equal inch to all sides of the page.
Narrow margins give little room to each column.
Average margins squeeze words from left and right.
Wide gives space when proofing the manuscript.
Answer:
A.) narrow margins
Explanation:
e2020
Answer:
C.system prototyping
Explanation:
Prototyping produces a quickly constructed working version of the proposed information system.
Planning
↓
Analysis
↓
Design
↓
System prototyping
↓
Implementation
Answer:
c. system prototyping
Explanation:
system prototyping produces a full-featured, working model of the information system.
b) Within that file only
c) global
Answer:
The correct answer for the given question is option(a) i.e Local - within that function.
Explanation:
The variable which is declared inside any function are called as local variable The scope and lifetime of local variable is inside that block or function only.
They cannot access outside the function.
Following are the example of local variable
#include <stdio.h> // header file
void fun(); // function prototype
int main()// main function
{
fun(); //calling function
print("%d",t); // it gives error because t is local variable cannot access in main function
return 0;
}
void fun()
{
int t=9;// local variable
printf("t is local variable which value is:");
printf("%d",t);
}
As we seen that t cannot access outside the function .So correct answer is option(a)
The scope of a variable declared inside of a function is local - within that function. This prevents naming conflicts and ensures control over where a variable can be changed.
The scope of a variable declared inside of a function is typically local to that function. This means that it can only be accessed and manipulated within the function it is declared. It is not visible or accessible from outside of the function or elsewhere in the program file, hence options b) and c) are incorrect. This principle is fundamental in programming languages such as JavaScript, C++, Python, etc., and it is designed this way to prevent naming conflicts and provide control over where a variable can be changed.
#SPJ6