n what sense is it now possible for a country to be ""occupied"" by an invisible invader that arrives through airwaves and wireless networks? A. It is almost impossible to block foreign countries’ satellite broadcasts and Internet transmissions. B. Spy satellites and other communications technology are increasingly advanced. C. Global positioning systems have allowed detailed mapping of previously inaccessible places. D. The U.S. government can eavesdrop on almost any form of modern communication.

Answers

Answer 1

Answer:

Option A. is correct

Explanation:

It now not possible for a country to be "occupied" by an invisible invader that arrives through airwaves and wireless networks. It is almost impossible to block foreign countries’ satellite broadcasts and Internet transmissions inspite of Spy satellites and other communications technology and Global positioning systems.

Option A. is correct


Related Questions

An instrument used to measure the amount of electrical current intensity in a circuit

Answers

the instrument is an ammeter

What is a row of data in a database called?
Field
File
Record
Title

Answers

Answer:

record

Explanation:

i took the test and got it right but give brainliest to the person above me

Urgent Please Help ASAP!! 50 Points!! Assignment due in 15 minutes!!

Reflect on the questions below.

1.) Why do some people resist help from others?
2.) Is it useful to work separately at some point in time during pair programming?
3.) How is pair programming beneficial?
4.) In pair programming, how can we better work together?

Answers

Questions:

1.) Why do some people resist help from others?

2.) Is it useful to work separately at some point in time during pair programming?

3.) How is pair programming beneficial

4.) In pair programming, how can we better work together?

Answers:

1.) Some people are prideful in their work, or they're just embarrassed to ask for assistance.

2.) It can be done, but pair programming is further effective with others.

3.) Pair programming is beneficial because you can get the job done faster.

4.) In pair programming, you can better work with your partner by working on different sections, and then checking each other's tail when the job is almost finished.

These answers are a combination of my knowledge and opinion(s). If you need any more help, do not hesitate to let me know. Glad I could help! :)

What is the result when you run the following program?

print(“2 + 7”)
print(3 + 1)

Answers

Answer:

line 1 = 2+7 (you added quote marks)

line 2 = 4 (you did not add quote marks, which adds both nums together)

Explanation:

does anyone or has anyone ever done it?? please help it’s for like skills!

Answers

Answer:

is this mathmatics

Explanation:

Where do i go to find questions to answer
13 points if you can help me PLz

Answers

Answer:

if you are on a phone there should be a Answer tab at the bottom in the middle next to influence but if you are on a computer go to the Brainly home page and scroll down to the bottom (not all the way) and there should be some questions to answer

Which guidelines should be used to make formatting tasks more efficient?

Use pasted text only; this does not keep the original formatting.
Keep formatting fancy; this makes Word documents look better.
Save styles in the document; this makes working with multiple documents easier.
Avoid pasting text from other documents; this makes formatting easier.

Answers

Answer:

Use pasted text only; this does not keep the original formatting.

Explanation:

bc

Answer:

Use pasted text only; this does not keep the original formatting.

Explanation:

Which below best describes JavaScript? *
a) a common dynamic computer language
b) C++ with a different name
c) The study of coding

Please help me out! 23 extra points!

Answers

Answer:

it is a programing languwage that is useualy used to program visual or text based applications

Explanation:

Answer: A

JavaScript is a common dynamic computer language. It was invented decades ago.

C++ is a different way of coding, it is not the answer. Many different people use C++, because they prefer it is easier than JavaScript.

Hope this helps!

Which of the following is the primary benefit of becoming a member in the Dramatists Guild of America?


group health insurance

free legal advice

standard salary

networking opportunities

Answers

Answer:

networking opportunities

Explanation:

  The Dramatists Guild of America does offer playwrights legal advice and information on establishing royalties. However, the primary benefit of membership in the DG is networking opportunities. Playwriting is a limited field, and networking opportunities are essential for work.

describe oxfird cleric​

Answers

Answer:

Explanation:

The Oxford Cleric, or otherwise just known as the Cleric, is from a series of tales called the Canterbury Tales. He had a rather simple life as a cleric and was more commonly seen as a philosopher. The Cleric was just a student who used all of his money on books instead of on clothes and was considered poor.

Which utility causes the computer to run slow? defragmentation utility OR compression utility?

Answers

Answer:

compression

Explanation:

I need to know how to input this into python on zybooks. I've been stuck on this for days and I keep running into "invalid syntax" or "unknown word red" Summary: Given integer values for red, green, and blue, subtract the gray from each value. Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray). Given values for red, green, and blue, remove the gray part. Ex: If the input is 130 50 130, the output is: 80 0 80 Find the smallest value, and then subtract it from all three values, thus removing the gray.

Answers

Answer:

Here is the C++ program:  

#include <iostream>   //to use input output functions  

using namespace std;   //to identify objects cin cout  

int main() {   //start of main method  

int red,green,blue,smallest;   //declare variables to store integer values of red,green, blue and to store the smallest value  

cout<<"Enter value for red: ";  //prompts user to enter value for red  

cin>>red;  //reads value for red from user  

cout<<"Enter value for green: ";  //prompts user to enter value for green  

cin>>green;  //reads value for green from user  

cout<<"Enter value for blue: "; //prompts user to enter value for blue  

cin>>blue;   //reads value for blue from user  

//computes the smallest value

if(red<green && red<blue) //if red value is less than green and blue values  

smallest=red;   //red is the smallest so assign value of red to smallest  

else if(green<blue)   //if green value is less than blue value  

smallest=green;   //green is the smallest so assign value of green to smallest  

else  //this means blue is the smallest  

smallest=blue;  //assign value of blue to smallest  

//removes gray part by subtracting smallest from rgb  

red=red-smallest;  //subtract smallest from red  

green=green-smallest;  //subtract smallest from green  

blue=blue-smallest;  //subtract smallest from blue  

cout<<"red after removing gray part: "<<red<<endl;  //displays amount of red after removing gray  

cout<<"green after removing gray part: "<<green<<endl;  //displays amount of green after removing gray

cout<<"blue after removing gray part: "<<blue<<endl;  } //displays amount of blue after removing gray  

Explanation:

I will explain the program using an example.  

Lets say user enter 130 as value for red, 50 for green and 130 for blue. So

red = 130  

green = 50  

blue = 130  

First if condition if(red<green && red<blue)   checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue) which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green;  so the smallest it set to green value.  

smallest = 50  

Now the statement: red=red-smallest; becomes:  

red = 130 - 50  

red = 80  

the statement: green=green-smallest;  becomes:  

green = 50 - 50  

green = 0  

the statement: blue=blue-smallest; becomes:  

blue = 130 - 50  

blue = 80  

So the output of the entire program is:  

red after removing gray part: 80                                                                                                 green after removing gray part: 0                                                                                                blue after removing gray part: 80  

The screenshot of the program along with its output is attached.

To simply the task of creating a heading for a science report, a student can create a _____ to run when a specific button is pressed on the quick access toolbar.

i need answer asap
citation

caption

macro

template

Answers

Answer:

macro

Explanation:

The answerrrrr is macro (:

In Word you can _____ or merge two different copies of the same document into one document. a. replicate b. duplicate c. copy d. combine

Answers

D) combine
combine and merge are synonyms of each other.
hope this helps x

five reasons Why Photographers Aren't Filmmakers

Answers

Answer:

1. They don't like recording things (They'd rather take photos)

2. It doesn't take much time to take a good photo as it is to record a video

3. They'd rather work alone or with others who want pictures taken

Explanation:

These are weird reasons but true..I'm a photographer so these are my reasons. I don't have others tho. Sorry.

Translate the following code into hexidecimal and to octadecimal


....
110000100111000011001100111

Answers

Answer:

1

Explanation:

me want brainliest pwease

How do I turn off lanschool student?

Answers

Answer:

First try logging out. If that doesn't work there is a really helpful video on how to uninstall and reinstall with everything still there. Hope this was helpful.

Which of the following are likely reasons people enjoy watching lifelike stories on the screen? Select all that apply.


People develop a connection that is emotional with the stories and/or characters.

The stories remind them of situations they are familiar with.

The situations they see are not familiar to them.

They are distracted by the video and sound combination.

Answers

Answer:

c

Explanation:

I dont know but omost every time I guess I get it right

Answer:

A: People develop a connection that is emotional with the stories and/or characters.

and

D:The stories remind them of situations they are familiar with.

Explanation:

edg2021

In the Page Setup dialog box, the _____ tab gives you options to change the paper size.
a.
Layout
b.
Paper
c.
Sizes
d.
Margins

Answers

Answer:

I think its either layout or sizes

What is the difference between internal hardware and software?

Answers

Answer:

Internal Hardware - Internal hardware is the hardware within the computer that you can physically see and touch if you were to take apart the computer.

Internal Software - Internal software is software within the computer that you cannot physically touch. It is a collection of programming code installed on your computer's hard drive.

Explanation:

Answer:

D.  Internal hardware is physical parts that help the computer work; software is the programs and applications that make the computer work.

Explanation:

Just finished this section

True or False:
JavaScript was found in 1923

Answers

Answer:

False. It was in 1995

Explanation:

Answer:

False it was created September 1995.

Explanation:

D
E
A
C
B
For this lab, you will find the area of an irregularly shaped room with the shape as shown above.
Ask the user to enter the values for sides A, B, C, D, and E and print out the total room area.
Remember the formula for finding the area of a rectangle is length width and the area of a right triangle is 0.5 * the base" heigh
Please note the final area should be in decimal format.
Sample Run
Enter side A: 11
Enter side B: 2
Enter side C: 4
Enter side D: 7
Enter side E: 1
Sample Output
Room Area: 53.5

Answers

In python:

a = float(input("Enter side A: "))

b = float(input("Enter side B: "))

c = float(input("Enter side C: "))

d = float(input("Enter side D: "))

e = float(input("Enter side E: "))

print(f"Room Area: {(a * b) + ((a - c) * (d - (b + e))) + (0.5*(a - c) * e)}")

I hope this helps!

What are some consequences of posting inappropriate material online? (Choose all that apply)
friends and loved ones might think less of you
you might land in legal trouble
your social media history will be erased from the internet
future employers may not want to hire you.

Answers

Answer:

I think all of them is a consequence of posting inappropriate material online

All except the third one unless it’s something really bad. But otherwise it’s without the third one

Farm tools/Equipment:
Parts:
Quantity:
Defect type
manufacturing/Design/marketing
Condition​

Answers

Answer:

sorry but I don't understand your question can you elaborate it better

Answer:

Farm/Equipment:

Preparation , Mechanical processing , Heat processing , Preservation , Packaging

Parts:

Tractor, backhoe, baler, plow, harrows, seed drill

Quantity:

Farmers must learn how to manage both soil and water resources in an integrated manner

Defect Type:

Broken bones , Crush injuries , Burns , Electrocution , Spinal cord and, traumatic brain injuries , Amputation injuries

Manufacturing/Design/Marketing :

Internal resource constraints for new product development

Eroding margins due to higher material and assembly costs

Low throughput

Inefficient workflows resulting in higher cost of manufacturing

Rising warranty costs

Condition​: Vibration Analysis/Dynamic Monitoring:

Shock pulse analysis

Fast fourier transforms

Broadband vibration analysis

Ultrasonic analysis

Power spectral density (PSD)

Time waveform analysis

Spectrogram/spectrum analysis

Hope this helps

I need to finish this assignment today. please help me!

Define: State your Goal What personal value would you like to share with the world?

what does this mean? I don't understand what a personal value is.​

Answers

Answer:

persanal value is the goal

Explanation:

mine would be:

less polution, the value is the goal

What is the differences between Google Slides and MS Powerpoint?

Answers

[tex]\huge\underline\mathbb\pink{ANSWER↑}\\\\[/tex]

HOPE IT HELPS

PLEASE MARK ME BRAINLIEST ☺️

Which of the following is NOT a characteristic developed by New Journalism?
illustrations and photographs
flashy page layouts
satirical news stories
banner headlines

Answers

Explanation:

I think it's d.

Hope this help

Which term means a session-level protocol that is fast and efficient but has no means for error control or acknowledgment?

QoS

frame

TCP/IP

UDP

Answers

Answer:

UDP

Explanation:

User Datagram Protocol: a session-level protocol that is fast and efficient but has no means for error control or acknowledgment (UDP)

Also just took it on edj.

A session-level protocol that is fast and efficient but has no means for error control or acknowledgment is known as the term UDP.

What is UDP?

UDP is the acronym for User Datagram Protocol. It is defined as the protocol that is used for time sensitive applications but it's non-reliable because delivery of data to the destination cannot be guaranteed in UDP ( that is, has no means for acknowledgment)

Therefore, a session-level protocol that is fast and efficient but has no means for error control or acknowledgment is known as the term UDP.

Learn more about UDP here:

https://brainly.com/question/5660386

#SPJ2

35. John makes $700.00 per week working as a janitor at Passaic High School.
What is his CASH INFLOW per month? (SHOW YOUR WORK)(3 points) *

Answers

Explanation:

a is the answer

Which of the following statements is true regarding local area networks? SELECT 3 OPTIONS.
A: traditionally used Ethernet cables to connect devices
B: can include wired and wireless connections
C: often used in homes and small businesses
D: uses satellite technology for connections
E: connects devices in a large geographic area

Answers

Answer:

A, B and C are correct

Explanation:

A : yes, they did use ethernet cables.

B : Lan networks connected via wires are called , "LAN" and LAN networks that connect to devices wirelessly are called, "WLAN" (Wireless Local Area Networks).

C : LAN networks are a type of network that is based in a small geographical area, therefore, it can be used in homes and small businesses.

Statements that can be considered to be true about local area networks in this question are;

A: traditionally used Ethernet cables to connect devices

B: can include wired and wireless connections

C: often used in homes and small businesses

Local area network can be regarded as is group of two or more connected computers which are positioned in  a small geographic area, it could just a small building.

This connection can be a wired connection, it can also be a wireless connection.

Example if this network is Home networks ,another one is small business networks.

Therefore, option A,BC are all correct.

Learn more at:

https://brainly.com/question/22245838?referrer=searchResults

Other Questions
How did the cotton gin affect the growth of slavery in the South? Which article would most likely use a sequence text structure?HELP QUICK PLZ"A Week in Mainland China""Ten Reasons to Visit Miami""Which Island Is Right for You?""Our Top Ten Restaurant Picks" Sue is 17 years old and believes she is overweight. Which would be the best strategy for maintaining her health?Which statement about weight control is false? Use the function g () = 5x 2 to complete the table. g (2) -4 -7 0 23 38 Every 1 inch of vertical rise, 12 inches ramp length is required. What is the ramp length required for the rise of 10.5? How does Islam relate to Judaism and Christianity? Choose three correct answers.All three faiths are monotheistic.All three faiths believe in revelations from God.All three faiths can be traced back to the prophet Abraham.All three faiths use the same holy book, but have different names for it.All three faiths recognize Moses, Jesus, and Muhammad as prophets. A bundle of 6 XBox games cost's $179.94. How much does each game cost? I NEED HELP ASAPPPP!!!!Is a styrofoam ball heavier than a rock?Is water heavier than a ping pong ball?Is a gold ring heavier than a pencil?Is oil heavier than water?Is a large log heavier than a small rock? A $55 pair of shoes was discounted 15% making a sale price $46.79 the discounted price was sent us Canada game by 10% explain how you would find the final price of the shoes? how did new inventions improve people's lives? Why antihistamine drugs like suprastin do not block the stimulatory effect ofhistamine on these stomach cells DESCRIBE two reasons the Western Roman empire fell gamediv 1 weebly.comIt is thinner but denser plate.As this plate ducts moltsContinentalContinentaOceanicanirf The graph below represents the height of a golf ball in feet as a function of the elapsed time since it was hit. The golf ball was in the air for 4 seconds.What are the domain and range of the representative function?A)Domain: 0 x 4Range: 0 y 80B)Domain: 0 < x < 80Range: 0 < y < 4C)Domain: 0 < x < 4Range: 0 < y < 80D)Domain: 0 x 80Range: 0 y 4 Discuss how drinking patterns differ between groups of people depending upon their education, gender, ethnicity, etc. What factors (biological, cultural, etc.) do you think contribute to these differences A mountain biker is climbing a steep 20 slope at a constant speed. The cyclist and bike have a combined weight of 800 N. What can you say about the magnitude of the normal force of the ground on the bike? 10x + 1 + 12x - 5 = 180 Find x RrrrrrrRawrrrrRAWRRR A Juan y a Camilo les gusta patinar? a. s b. no Task: Use the following situation to answer Parts A and B Instructions At noon, a tank contains 100 gallons of water. The table shows the input and output of water from pipes A, B, and C. The pipes begin operating simultaneously at noon. A B C Pipe Flow IN (gallons per minute) a (2) = 172 6(2) = 80 Flow OUT (gallons per minute) c (2)=30r Complete each of the 2 activities for this Task. Activity 1 of 2 Let T (2) represent the amount of water in the tank x minutes after all of the pipes A, B, and C are opened. Which of the following functions represents T (x)? O A T (2) = 100 + a(z) +b(2) - c(x) OCT (x) = 100 + a (x) +b(2) + c(2) OBT () = a (x) + b() +(2) ODT (2) = a (x) +b(x) - c(:) Activity 2 of 2 Using the equation, after how many minutes will the tank be empty?