1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
sp2606 [1]
3 years ago
6

Why media is far from government​

Computers and Technology
2 answers:
oksano4ka [1.4K]3 years ago
7 0
An independent media means that no one should control and influence its coverage of news. Media is far from independent, this is because of control of government over them. Government prevents some news items, scenes from a movie, or lyrics of songs from being shared with larger public, this is called as censorship.
DedPeter [7]3 years ago
6 0

Answer:

An independent media means that no one should control and influence its coverage of news. Media is far from independent, this is because of control of government over them. Government prevents some news items, scenes from a movie, or lyrics of songs from being shared with larger public, this is called as censorship.

hope it helps

pls mark as brainliest.....

You might be interested in
While microsoft excel can be an efficient tool for developing a dss, compared to using a programming language like c++, a shortc
klasskru [66]
Although Microsoft Excel isn't a language itself, nor does it come with its own built-in language, I do see what you mean regarding its ability to create functions and whatnot to make the spreadsheet more versatile and efficient.

Yeah, syntactical errors (or compile errors in a compiled language like C++), are going to be harder to spot in Excel than it would be in a programming language, surprisingly. This is because of the reason that I just said; most programming languages such as C++ are compiled languages, meaning that they are written in an IDE (such as Visual Studio, for C++), which is used for writing out, debugging, and compiling programs in to a executable format. The IDE would not let the compilation process finish successfully unless there were no syntax errors in the code itself (not to be confused with runtime errors; those are the harder ones to iron out, as the compiler will not tell you there is an error).
3 0
4 years ago
Line formatting can be accomplished by using
schepotkina [342]

Answer:

How can line formatting be accomplished?

To format line spacing:

Select the text you want to format. Selecting text to format.

On the Home tab, click the Line and Paragraph Spacing command. A drop-down menu will appear.

Move the mouse over the various options. A live preview of the line spacing will appear in the document. Select the line spacing you want to use.

The line spacing will change in the document.

3 0
2 years ago
What's a reasonable data type that could be included in nearly any item in a logical data model for a software application?
djyliett [7]

Answer:

D. Last_modified

Explanation:

Software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications.

Some of the models used in the software development life cycle (SDLC) are;

I. Waterfall model.

II. Incremental model.

III. Spiral model.

IV. Agile model.

V. Big bang model.

VI. V-shaped model.

A database schema is a structure which is typically used to represent the logical design of the database and as such represents how data are stored or organized and the relationships existing in a database management system. There are two (2) main categories of a database schema; physical database schema and logical database schema.

Last_modified can be defined as a data type which comprises of the date and time that a resource such as a software application or file was edited or changed.

Hence, Last_modified is a reasonable data type that could be included in nearly any item in a logical data model for a software application.

5 0
3 years ago
Given an array of n distinct integers sorted in ascending order, write a function that returns a Fixed Point in the array, if th
Zinaida [17]

Answer:

The function is as follows:

int returnsFixed(int arr [],int n){

   int retVal = -1;

   for(int i = 0; i<n;i++){

       if(i == arr[i]){

           retVal = i;

           break;

       }

   }

   return retVal;

}

Explanation:

This defines the functionl it receives the array and the length of the array

int returnsFixed(int arr [],int n){

This initializes the return value to -1

   int retVal = -1;

This iterates through the array

   for(int i = 0; i<n;i++){

This checks if i equals arr[i]

       if(i == arr[i]){

If yes, the return value (i.e. the fixed point) is set to i

           retVal = i;

And the code is exited

           break;

       } This ends the if condition

   } This ends the iteration

This returns the calculated fixed point

   return retVal;

}

6 0
3 years ago
Write a Java application that prompts the user for pairs of inputs of a product number (1-5), and then an integer quantity of un
Dovator [93]

Answer:

Follows are the code to the given question:

import java.util.*;//import package for input  

public class Main//defining a class Main  

{

public static void main(String[] arp)//defining main method  

  {

   double total=0,sub_Total=0;//defining double variable

   int Units,product_Num;//defining integer variable

   Scanner obq = new Scanner(System.in);//creating Scanner class object for input value

   System.out.print("Product: ");//print message

   product_Num=obq.nextInt();//input value

   while(product_Num>=1 && product_Num<=5)//defining loop for input value

   {

       sub_Total=0;//assign value 0 in sub_Total

       switch(product_Num)//use switch for check condition

          {

          case 1://for case 1

              {

              System.out.print("Enter No of units :");//print message

              Units=obq.nextInt();//input value

              sub_Total=Units*2.98;//calculating sub_Total value

              total+=sub_Total;//add value in total variable

              System.out.printf("Sub Total :$%.2f\n",sub_Total);//print value

          break;//use break keyword

          }

          case 2://for case 2

              {

              System.out.print("Enter No of units :");//print message

              Units=obq.nextInt();//input value

              sub_Total=Units*4.50;//calculating sub_Total value

              total+=sub_Total;//add value in total variable

              System.out.printf("Sub Total :$%.2f\n",sub_Total);//print value

          break;//use break keyword

          }

          case 3://for case 3

              {

              System.out.print("Enter No of units :");//print message

              Units=obq.nextInt();//input value

              sub_Total=Units*9.98;//calculating sub_Total value

              total+=sub_Total;//add value in total variable

              System.out.printf("Sub Total :$%.2f\n",sub_Total);//print value

          break;//use break keyword

          }

          case 4://for case 4

              {

              System.out.print("Enter No of units :");//print message

              Units=obq.nextInt();//input value

              sub_Total=Units*4.49;//calculating sub_Total value

              total+=sub_Total;//add value in total variable

              System.out.printf("Sub Total :$%.2f\n",sub_Total);//print value

          break;//use break keyword

          }

        case 5://for case 5

              {

              System.out.print("Enter No of units :");//print message

              Units=obq.nextInt();//input value

              sub_Total=Units*6.87;//calculating sub_Total value

              total+=sub_Total;//add value in total variable

              System.out.printf("Sub Total :$%.2f\n",sub_Total);//print value

          break;//use break keyword

          }

       }

  System.out.print("Product: ");//print message  

  product_Num=obq.nextInt();//input value

      }

      System.out.printf("\nOvertoal Total :$%.2f\n",total);//print total value

  }

}

Output:

Product: 1

Enter No of units :1

Sub Total :$2.98

Product: 2

Enter No of units :2

Sub Total :$9.00

Product: 3

Enter No of units :3

Sub Total :$29.94

Product: 4

Enter No of units :4

Sub Total :$17.96

Product: 5

Enter No of units :5

Sub Total :$34.35

Product: -1

Overtoal Total :$94.23

Explanation:

In this program, two double variables "total,sub_Total" and two integers "Units,product_Num" is used, in the next step,  the scanner class is used for an input value, for this, a while loop is defined that uses the switch for input value and calculate  its respective value, and use the print method to print its value.

5 0
3 years ago
Other questions:
  • What is achieved through xylography
    7·2 answers
  • The three devices you are going to install are a 2u server, a 1u keyboard tray, and an 8u space for a rack mounted moitor. Given
    6·1 answer
  • True or False
    13·1 answer
  • Why are some studs and bolts undercut in the middle?
    11·1 answer
  • Identify which of these types of sampling is​ used: random,​ systematic, convenience,​ stratified, or cluster. To determine her
    13·1 answer
  • You are an ISP. For the Address Block 195.200.0.0/16 a. If you have 320 Customers that need 128 addresses/customer - will there
    6·1 answer
  • This standard library function returns a random floating-point number in the range of 0.0 up to 1.0 (but not including 1.0).
    10·1 answer
  • Win10如何删除自己添加的环境变量?...............
    8·1 answer
  • __' the low level language? a.machine and assembly c.3G and 4G d.machine and 4gl​
    15·1 answer
  • A hardware component that keeps data and information when the device is not powered is called a ____ device.
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!