There are different aspect of cars that cannot be recyclable. In petrol cars, The aspect that cannot be recycled is used gear oil, windshield wiper solution, brake fluid, power steering fluid, etc.
This is because they are very toxic substances, as they have lead and poisonous ethylene glycol in them.
Learn more about recyclable from
Answer:
Search Object
Explanation:
Qlikview is a form of computer software application that is basically used in analytics explanation. In order to search for information anywhere in the document inside the Qlikview application, a form of sheet object referred to as SEARCH OBJECT is utilized.
Hence, in this case, In QlikView, SEARCH OBJECT is used to search for information anywhere in the document.
Answer:
Following is given the data as required.
The images for histograms for age and gender are also attached below.
I hope it will help you!
Explanation:
of the numbers 2 through 10.
Answer:
//Program in C++.
// header
#include <bits/stdc++.h>
using namespace std;
// function to multiply number with 2-10
void multiplicationTable(int num)
{
cout<<"Number when multiplied with 2-10:"<<endl;
for(int a=2;a<=10;a++)
{
// multiply number with 2-10
cout << num << " * " << a << " = " << num*a << endl;
}
}
// driver function
int main()
{
// variable
int num;
cout<<"Enter a number:";
// read number from user
cin>>num;
// call the function
multiplicationTable(num);
return 0;
}
Explanation:
Read a number from user and assign it to variable "num".Call the function multiplicationTable() with parameter "num".In this function, multiply number with each from 2 to 10 and print the value.
Output:
Enter a number:5
Number when multiplied with 2-10:
5 * 2 = 10
5 * 3 = 15
5 * 4 = 20
5 * 5 = 25
5 * 6 = 30
5 * 7 = 35
5 * 8 = 40
5 * 9 = 45
5 * 10 = 50
PowerPoint
Web browser
Microchip
Answer:
its mircrochip
Explanation:
Answer:
i think either microchip or an app im not sure
the other answers smarter than mine make him brainliest
Explanation:
Answer:
import java.util.Scanner;
public class num9 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter year");
int givenYear =in.nextInt();
if(givenYear>=2101){
System.out.println("Distant Future");
}
else if(givenYear>=2001){
System.out.println("21st Century");
}
}
}
Explanation:
monthlySales 102500 You earneda $5000 bonus!
monthlySales = 90000
monthlySales 112500 You earned a $5000 bonus!
All employees get one day off!
Answer:
To answer this question, i prepared a pseudocode and a program written in python;
Pseudocode begins here:
1. Start
2. Input montlySales
3. If monthlySales < 100000
3.1. Display Nothing
4. Else
4.1 Display “You earned a $5000 bonus!”
4.2 If monthlySales > 1.25 * 90000
4.2.1 Display “All employees get one day off!”
5. Stop
Python Program starts here (See attachment for proper view of the program):
#Prompt user for input
monthlySales = float(input("Monthly Sales: "))
#Check monthlySales
if monthlySales < 100000:
print("")
else:
print("You earned a $5,000 bonus")
if monthlySales > 1.25 * 90000:
print("All Employees get the day off")
Explanation:
To answer this question, a conditional if statement is needed.
The pseudocode (and the program) starts by prompting user for input;
Then, the user input is first compared with 100,000
If it's less than 100,000; then nothing is displayes
However, if it is at least 100,000
"You earned a $5,000 bonus" is displayed
It further checks if the user input is greater than 125% of 90,000
If yes, "All Employees get the day off" is displayed else, nothing is displayed.
The pseudocode (and the program) stops execution, afterwards