True or false: pinhole cameras can be outfitted with very accurate viewfinders

Answers

Answer 1

Answer:

true

Explanation:

Answer 2

Answer:

True

Explanation:


Related Questions

When an antivirus program identifies a virus and quarantines this file, has the malware been eradicated

Answers

Answer:

NO

Explanation:

No, it's not, when a virus blocks a file stored in a sandbox, it does not affect the system. However, the virus program does not necessarily recognize other parts of the program. It still takes analysis to determine what. Also, the virus vault must be emptied to delete the original files

is a colon (:) and semicolon (;) important in CSS declaration?

Answers

Answer:

YES

Explanation:

this is very important

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Answers

Answer:

Write a flowchart and C code for a program that does the following: Within main(), it asks for the user's annual income. Within main(), it calls a function called printIt() and passes the income value to printIt().

Explanation:

You will write a flowchart, and C code for a program that does the following:1. Within main(), it asks for the user’s annual income.2. Within main(), it calls a function called printIt() and passes the income value to printIt().  3. The printIt() function evaluates the income, and if the number is over 90000, prints a congratulatory message.  If the income is not over 90000, it prints a message of encouragement, like “You WILL make $50,000, if you keep going.”Here is what the output looks like.File SubmissionUpload your Flowgorithm file, your .c file, and a screen shot of your code output saved in a Word document including the path name directory at the top of the screen into the dropbox for grading.

what is active transport​

Answers

Answer:

the movement of ions or molecules across a cell membrane into a region of higher concentration, assisted by enzymes and requiring energy.

Here ya go ;)

A company wants to build a new type of spaceship for transporting astronauts to the moon. What should the company do first?

Answers

Answer:

Think of some ideas of how their gonna create the new spaceship

Explanation:

Because I'm Smort (typo intended)

Answer: The steps: ask to identify the need and constraints, research the problem, imagine possible solutions, plan by selecting the most promising solution, create a prototype, test and evaluate the prototype, and improve and redesign as needed. Also called the engineering design process.

Explanation:

What name is given to the assurance that requested information is available to authorized users upon request

Answers

Answer:

Availability

Explanation:

With Data availability, it means that we are saying that information is accessible to users. This gives the assurance of the system and also the data being accessible to authenticated users anytime they have the need for it.

It is simply saying that information would be operable by users with authorization whenever they request to.

Which technology provides a solution to IPv4 address depletion by allowing multiple devices to share one public IP address

Answers

Answer:

Network Address Translation (NAT).

Explanation:

An IP address is an acronym for internet protocol address and it can be defined as a unique number assigned to a computer or other network devices, so as to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network devices connected to the internet or network.

In Computer networking, IP address are classified into two (2) main categories and these are; Local (internal) IP address and Global (external) IP address.

Also, the internet protocol (IP) address comprises of two (2) versions and these are; Internet protocol version 4 (IPv4) and Internet protocol version 6 (IPv6).

Network Address Translation (NAT) is a technology that provides a solution to IPv4 address depletion by allowing multiple devices to share one public IP address.

This ultimately implies that, Network Address Translation (NAT) is a technology used by network engineers to translate IP addresses into a single IP address on a local area network.

What is the difference between MySQL and MariaDB?

Answers

Answer:

Explained below

Explanation:

They are both server database.

MySQL Server database has two licensing options namely GPLv2 and Enterprise. Whereas, MariaDB Server database is one that has only one license which it is licensed to namely GPLv2.

Now, the license for both of them differs in that the one for MySQL Server database comes with some available features and support. Whereas, the one for MariaDB comes with the full-featured package.

_______ workplace cultures emphasizes everyone being in agreement.

Answers

Answer:

Calm

Explanation:

Write a program that computes and prints the average of the numbers in a text file. You should make use of two higher-order functions to simplify the design.

Answers

Answer:import functools

# open your file

file = open("integers.txt", 'r')

file = file.read()

# put numbers into a list

file = file.split()

# convert list into integers

file = list(map(int, file))

# use lambda function to get average.

print(functools.reduce(lambda x, y: x+y / len(file), file, 0))

Explanation:

Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input begins with

Answers

Question:

Write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. The input begins with an integer indicating the number of integers that follow. Assume that the list will always contain less than 20 integers.

Answer:

Written in Python

listlent = int(input("Length of List: "))

mylist = []

mylist.append(listlent)

for i in range(listlent):

    num = int(input(": "))

    mylist.append(num)

   

evens = 0

odds = 0

for i in range(1,listlent+1):

    if mylist[i]%2==0:

         evens=evens+1

    else:

         odds=odds+1

       

if(evens == 0 and odds != 0):

    print("All Odds")

elif(evens != 0 and odds == 0):

    print("All Even")

else:

    print("Neither")

Explanation:

This prompts user for length of the list

listlent = int(input("Length of List: "))

This initializes an empty list

mylist = []

The following iteration reads the list items from the user

mylist.append(listlent)

for i in range(listlent):

    num = int(input(": "))

    mylist.append(num)

   

The next two lines initialize even and odd to 0, respectively

evens = 0

odds = 0

The following iteration if a list item is even or odd

for i in range(1,listlent+1):

    if mylist[i]%2==0:

         evens=evens+1

    else:

         odds=odds+1

This checks and prints if all list items is odd        

if(evens == 0 and odds != 0):

    print("All Odds")

This checks and prints if all list items is even        

elif(evens != 0 and odds == 0):

    print("All Even")

This checks and prints if all list items is neither even nor odd

else:

    print("Neither")

What item appears in a user’s My Unresolved items after synchronization using Salesforce for Outlook? (2 answers)

Answers

The avialble options are:

1. Notes not associated to a record

2. Emails not associated to a record

3. Contacts not assigned to an account

4. Cases not assigned to a contact

Answer:

1. Contacts not assigned to an account

2. Emails not associated to a record

Explanation:

Given that any items that are not automatically assigned to Salesforce records are found in My Unresolved Items.

Hence, usually, Items such as Contacts, Events, Emails, and Tasks are found in a user's My Unresolved Items after synchronization using Salesforce for Outlook.

Thereby, in this case, the correct answers are:

1. Contacts not assigned to an account

2. Emails not associated with a record

2.Explain the differences between kernel applications of the OS and the applications installed by an organization or user.

Answers

Explanation:

Operating system is a system software, whereas,  Kernel is a part of operating system. Operating system acts as an interface between user and hardware. Kernel acts as an interface between applications and hardware. In Linux, for example, device drivers are often part of a kernel (specifically Loadable Kernel Modules).

Write two lines of code to draw the following circles centered at 600,600. The radius of the smallest circle is 200. There are 50 points between the larger circle and the smaller circle.

Answers

Answer:

canvas.draw_circle((600, 600), 200, 3, "Black")

canvas.draw_circle((600, 600), 250, 3, "Black")

Explanation:

# include < conio.h>

# include < iostream.h>

int canvas.draw_circle,

namespace std

{

canvas.draw_circle((600, 600), 200, 3, "Black")

canvas.draw_circle((600, 600), 250, 3, "Black")

}

return,

_____ software enables team members to prioritize and track tasks by providing features such as boards, timelines, and calendars.

Answers

Answer:

task management

Explanation:

What is the current DoD repository for sharing security authorization packages and risk assessment data with Authorizing officials?

Answers

Answer:

The answer is "Army Portfolio Management System".

Explanation:

The Army Way to solve Information-Technology (APMS-AITR) portfolio management registration for IT investment, IT capacity, and IT software was its single legal army registry.

Its main goal of IM/IT Management Of working capital and Corporate Finance is to prioritize IM/IT expenditure by evaluating and handling TRADOC as just an investment portfolio. The APMS was its main decision supporting instrument for military portfolio management.

50 POINTS!!!!! WILL MARK BRAINLIEST!!!!!HURRY!!!!!
Your Python program has this code.

for n = 1 to 10:
position = position + 10 # Move the position 10 steps.
direction = direction + 90 # Change the direction by 90 degrees.

You decided to write your program in a block programming language.

What type of block do you need to accomplish what this line does?
direction = direction + 90 # Change the direction by 90 degrees.

A) event

B) voice and graphics

C) control

D) motion

Answers

Answer:

control

Explanation:

Repeat 10 times is a control block.

The type of block that would be needed to accomplish the line would be C. Control

What is Programming?

This refers to the set of code that is given to the computer by a programmer to execute a task.

Hence, we can see that from the line of code that shows a sequence of numbers from 1 to 10 and to move and change the direction of the position and degree, to write this program in a block programming language, the type of block that is needed is a control block.

Read more about block programming here:

https://brainly.com/question/14525641

#SPJ2

The process of auditing the source code for an application to verify that the proper security controls are present, that they work as intended, and that they have been invoked in all the right places is known as

Answers

Answer:

Security code review.

Explanation:

The process of auditing the source code for an application to verify that the proper security controls are present, that they work as intended, and that they have been invoked in all the right places is known as security code review.

The main purpose of security code review is to ensure that all the necessary security measures or procedures are adopted (available), to confirm the level of accuracy of its operations, and verify that all loopholes for unauthorized access or use by attackers is prevented.

Hence, various software developers employ the security code review process in order to ensure that the integrity and safety of their software applications or programs are present.

Code review is the process for auditing the source codes and is a an application that is used for verification of the proper security control that are present and that they are intended to use.

The code review is to assure the quality of the software and verity the activity that checks the program mainly for viewing the parts of code.

Learn more about the source code for an application to verify that the

brainly.com/question/24749514.

The Matlab Script should:1. Clear the command window2. Clear the workspaceQuestion 1: Why do we clear the command window and workspace at the beginning of a script

Answers

Answer:

This is done for the simple reason of having more space to work on

Explanation:

This is done for the simple reason of having more space to work on. By clearing the command window and workspace you provide yourself with sufficient space to create new commands without the clutter of the previous commands. This also prevents your focus from shifting towards old commands and allows you to simply focus on the commands you are currently working on. This does not clear all variables from the script, it only clears the current screen but the previous commands can still be accessed by using the up-arrow key

Which of the data repositories serves as a pool of raw data and stores large amounts of structured, semi-structured, and unstructured data in their native formats

Answers

Answer:

Data lakes.

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

Data lakes can be defined as data repositories which serves as a pool of raw data and stores large amounts of structured, semi-structured, and unstructured data in their native formats. These pool of raw or natural data allow data scientists to perform various tasks such as artificial intelligence (AI), machine learning, visualization, reporting, advanced analytical study, etc.

Write a c program using loops to generate following output.

12 x 2 = 24
11 x 2 = 22
10 x 2 = 20
9 x 2 = 18
8 x 2 = 16
7 x 2 = 14
6 x 2 = 12
5 x 2 = 10
4 x 2 = 8
3 x 2 = 6
2 x 2 = 4
1 x 2 = 2

Answers

Answer:

#include <stdio.h>

int main()

{

for (int n = 12; n > 0; n--) {

 printf("%d x 2 = %d\n", n, n * 2);

}

}

Explanation:

Only one loop.

why should technology be used. No plagiarism pls.

Answers

Answer:

Explanation:

mobile devices and the applications they help us in life devisec can individualize instruction. three specific reasons that technology is good is that it saves lives by improving medicine, keeps us connected to each other, and provides education and entertainment. One reason why technology is good is that it has saved many lives.

i have an answer, but it won’t let me type it because it says incorrect answer which is ridiculous. here’s what i had, though

Which type of table is the most commonly used in Access databases?
A. one-to-one
B. one-to-many
C. many-to-many
D. many-to-all

Answers

The table of one-to-many is used most commonly for the purpose of getting access to a database.

What is a database?

Any kind of data, record, or information, which is stored over a computer or network of computers with an intention to access such data as and when required is known as a database.

Hence, option B holds true regarding a database.

Learn more about database here:

https://brainly.com/question/6447559

#SPJ2

Network footprinting is used to ______________________. Group of answer choices test for vulnerabilities determine what services are running determine what exploits have been committed determine what systems are up and running

Answers

Answer:

Network footprinting is used to ______________________.

test for vulnerabilities.

Explanation:

Network footprinting is the technique that reveals system vulnerabilities and how the vulnerabilities can be exploited.  Hackers use footprinting to determine the location and objective of a network.  The discovery of this specific information about the organization can lead to the hacking of the network.  Network footprinting relies on loopholes to create vulnerabilities in a network and plans for cyberattack.

A medical record that contains computer-generated reports, collects data, and shares data with outside agencies is a

Answers

Answer:

Electronic Health Record

Explanation:

ELECTRONIC HEALTH RECORD is a medical record which helps to collect patients data pertaining the patients medical information and history such as the patient diagnosis, the treatment that was given to the patient and the medication given to the patient, by then sharing the collected and store medical data or information with external agencies in order to reduce any medical mistakes that may want to arise and to as well provide high quality health care service to the patient as regards to the patient already stored medical history on the ELECTRONIC HEALTH RECORD.

g How safe is to have a LinkedIn account where you have published all the important information about yourself

Answers

Answer:

LinkedIn is very safe

Explanation:

LinkedIn is very safe, that being said you should never post private information about yourself anywhere that you do not want others to see/know. LinkedIn is a job recruiting and networking site, meaning that all the information that you have or will be publishing there should be related to your career. There is no reason for you to publish private information such as document numbers, social security number, address, bank account info, etc.

Answer:

The concept you are looking for is "digital footprint" and it goes far beyond any one social network.

Any information that is public can be used against you. You have to make an assessment about the risk/reward of making data public, and once it is public, you have to treat anyone using that information as public, too. Too often people think that if someone knows something about them, then they can be trusted, an "insider".

How long does it take to send a 19 MiB file from Host A to Host B over a circuit-switched network, assuming:

Answers

Answer:

58.4 ms

Explanation:

How long does it take to send a 14 MiB file from Host A to Host B over a circuit-switched network, assuming:

Total link transmission rate = 31.1 Gbps.

Network is TDM, with 11 permitted users, each with an equal time slot size.

A link connection requires a setup time of 51.7 ms.

Solution:

For TDM transmission, the bandwidth is divided equally between the users for transmission.

Transmission rate of each user = 31.1 Gbps / 11 users = 2.83 Gbps = 2830 Mbps

Time taken for file transmission = file size / transmission rate = 19 Mb / 2830 Mbps  = 0.0067 seconds = 6.7 ms

Total time taken = Set up time + transmission time  = 51.7 ms + 6.7 ms = 58.4 ms

The total transmission time is 58.4 ms

All of the following are data providers included with .NET for accessing and manipulating data in databases, EXCEPT ____. Group of answer choices

Answers

Complete Question:

All of the following are data providers included with .NET for accessing and manipulating data in databases, EXCEPT ____.

Group of answer choices.

A. OLE DB

B. ODBC

C. SQL Server

D. Access

Answer:

D. Access

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.

In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores.

This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. This records are stored and communicated to other data when required or needed.

Basically, when a database management system (DBMS) receives data update requests from application programs, it simply instructs the operating system installed on a server to provide the requested data or informations.

Some examples of data providers included with .NET for accessing and manipulating data in databases are;

A. OLE DB: this is an acronym for Object Linking and Embedding Database. OLE DB was designed and developed by Microsoft corporation and it comprises of various application programming interfaces (APIs) used for data access.

B. ODBC: it is an acronym for Open Database Connectivity and it was designed and developed by Microsoft corporation used for data access through structured query language (SQL).

C. SQL Server: it is a domain-specific language server designed and developed for managing the various data saved in a relational or structured database.

Someone please help?!



Drag the tiles to the correct boxes to complete the pairs.
Match the soft skills with their descriptions.
to foster approachability among team members
to come up with creative but practical solutions
to set priorities and accomplish goals
to identify and effectively use a team's potential
to accomplish goals
leadership
analytical thinking
coordination
2
time management

Answers

Answer:

i think the 1st one is for leadership

Answer:

im taking it right now

Explanation:

funny

Queries in Access are utilized by users to enter data into tables and view existing records true false

Answers

Answer:

False.

Explanation:

Microsoft Access can be defined as a software application or program designed by Microsoft corporation to avail end users the ability to create, manage and control their database.

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

Database schema is the logical design of a database. In database management, the term "schema" is used to denote a representation of data while the term "instance" is used to denote an instance of time.

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.

Datasheet View in Access are utilized by users to enter data into tables and view existing records.

Other Questions
A polygon is shown:The area of the polygon MNOPQR = Area of a rectangle that is 15 square units + Area of a rectangle that is ____ square units. (Input whole numbers only, such as 8.) Approximately how many degrees does Earthtravel in its orbit in one month?A. 1B. 15C. 30D 360 points)Which of the activities do you need to improve upon the most and vinj 15 points) For each group of words choose the word expression that doesn't belong and write it down on a sheet of paper. Then think of one more word expression that doesn't fit with the group and write it down beside the first word you wrote. To achieve organizational goals in large, complex organizations, which components must function together 6(p+3)-6(p+5) expand and simplify need help asap no. free poijnts ,,,,,,, Look at mah doggo his name is jasper I have another dog but I cant post two pictures What is the percentage yield if 125.4g C3H8 are collected from a reaction that should produce 157.4g C3h8?A. 58.3%B. 79.2%C. 44.2%D. 26.3% Exapand and simplify 2(x+7)+3(x+1) Which country's navy defeated the Spanish armada? Which of the following is the mean number per cross of F2 generation offspring that are the result of crossing over PLEASE HELP :)What knowledge can you gain from science courses that you can apply in life? I need help asap please help me Mary sold shoes for $200. Mary increases her sales price by 100%. What is the sales price of a pair of shoes? (Show the work, if you do I will give brainlist!) Point Q lies on ST , where point S is located at (-2, -6) and point T is located at (5,8).If SQ: QT = 5: 2, where is point Q on ST ?Select the point, and then select a place on the coordinate grid to plot point Q. Five score years ago the opening phrase of kings speech is an allusion to Abraham Lincolns Gettysburg Adress.Why was this an appropiate and a strong way for king to begin his speech? A _____ is used by farmers to harvest grain using large-scale motorized machinery.1 sail reaper2 steam engine3 sickle4 combine 0.6(10n + 25) = 10 + 5n Need Help Asap Please) Read the passage then answer the questions. " The Tyger by William Blake. Question 1) What are some of the examples of the use of fire as an image in " The Tyger "? How does this imagery affect the mood of the poem? Your response should be at least two complete paragraphs. ( Please be 1,000% sure with your responses. Need two responses and Will Mark Brainliest