List 10 programs or applications on your computer other than any Microsoft office programs

Answers

Answer 1
Answer: Dropbox
Mozilla Firefox, Google Chrome
Gmail, Mozilla Thunderbird
CDburnerXP
Putty, Netflix,
Paint.net, Filezilla

Related Questions

Identified limitations to the design of a product or system are the _________________. Trade-offs Efficiency Criteria Constraints
Which programming element is used by a game program to track and display score information
How does a spreadsheet affect the column of numerals when it sorts the column
Which of the following involved a digital designer? The hardware that lets your hard drive work. A computer animated movie An old cartoon from the 1930s The evening news
how to create a program that prime number include arraylist , and if not print the prime factors of the number.

Your teacher needs to keep track of a biology experiment's results for all students, to help calculate the grades. Which application is best suited for this task?A. Writer or Word
B. Calc or Excel
C. Impress or PowerPoint
D. Notepad or Paint​

Answers

Answer:

I think notepad is best suited for this task...

I think the answer is notepad it would be more organized

A typed character appears a which location

Answers

The right or one position to the right.

I hope this was helpful.

What kind of printer is best for low-volume home users who want to print colorphotos occasionally?
inkjet
dot matrix
3D
laser

Answers

Answer:

inkjet

Explanation:

inkjet printers if you'll be printing a small volume of documents and colored images regularly, inkjet printers will get the job done.

Answer:Laser

Explanation: I took the quiz

URGENT!!!!Rezolvati problema:In prima zi intr-o gradina au inflorit cu p% mai multe flori decit in ziua precedenta. Determinati numarul total de flori ce vor inflori in k zile.

Answers

"Solve the problem: on the first day in a garden thrived with p% more flowers than in the previous day. Determine the total number of flowers that will bloom in the k days." What I translated. 

We would need to know the other answers before anyone could answer. There was completely no number given. 


When performing actions between your computer and one that is infected with a virus which of the following offers no risk becoming infected

Answers

Going to need your answer choices

thanks :)

Write a program to enter a number and test if it is greater than 45.6.if the number entered is greater than 45.6 the program needs to out the phrase Greater than 45.6

Answers

Answer:

#include<stdio.h>                        //header file

int main()                                      //main function

{

float num;                                   // variable declaration

printf("Enter a number to test:\n");   // getting variable for test

scanf("%f", &num);

if (num>45.6)                                    //Testing weather greater or smaller

printf("\n %f is greater than 45.6", num);  // Result if greater

else

printf("\n %f is not greater than 45.6", num);  // Result if smaller or equal

return 0;

}

Explanation:

  • First of all , a variable will be declared in float (data type ).
  • User will input data in variable.
  • The variable will be compared using logical operator with 45.6
  • If it is greater, A phrase will be passed that number is greater than 45.6
  • Else if the number will not greater the phrase will say that the number is not greater than 45.6