Answer:
0b11110000000 is binary
0o3600 is in octal
0x780 in hexa dec.
Explanation:its a bit complitcated to explain sorry bro!
Answer:
"Assembly language" is the correct answer for the above question.
Explanation:
Missing information :
- The word after the and is missing which is "efficiently".
Detailed Explanation :
- The assembly language is a low-level language that is used to operate the system or any controller or any system programming. The c language is also used for the purpose which is done by the assembly language but it comes in the categories of a high-level language.
- But some times the assembly language is used but this comes in the categories of a low-level language. So it is the correct answer for the above question because the question asked about the low-level language which is assembly only.
Answer:
The program to calculate factor can be given as:
Program:
#include <stdio.h> //include header file
int main() //defining main function
{
int a,i; //defining integer variable
printf("Enter any number: "); //print message
scanf("%d",&a); //input value from user end
for(i=1;i<=a;i++) //loop for calculate factor values
{
if(a%i==0) //define condition for factor
{
printf("%d\n",i); //print values
}
}
return 0;
}
Output:
Enter any number: 15
1
3
5
15
Explanation:
In the above C language program the header file is include that provide the use of basic function, in the next line the main method is defined, inside this method two integer variable "a and i" is defined in which variable a is used to take value from user end and variable i is used in loop and conditional statement.
- In the next step, for loop is declare, that start from 1 and end with value of variable a, inside a loop, if block is used that checks (a%i==0), in this if variable i value modeler value equal to 0.
- The loop will use the print function that prints variable "i" element in a new line, which is the factor the values.
Where is the attached file?
Answer:
the answer is A my mom is a accountant and she pretty much told me everything she knows... lol
Explanation:
plz give brainliest and rating hope this helps^_^