The opening on the front of a camera that regulates the amount of light entering the lenses is called:​

Answers

Answer 1

Answer:

The Aperture is part of the camera lens. It controls how much of the light that enters the camera lens reaches the image sensor which is located inside the camera

Explanation:


Related Questions

16. A
is an object you can insert in your document, type text in, but can then format in the
same ways you would other objects?
(5 Points)
formatting box
text holder
text box
typing box

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is the Text box.

You can insert a text box as an object in your document, type text in it and you can format it in the same way you would do for other objects.

You can insert the text box using the Insert tab then under Shapes that you can find under the Illustrations group. You can then find Text Box under basic shapes.

While the other options are not correct because:

Formatting box allows you to format the object, text holder and typing box does not mean in this context because text holder is something that can hold the text such as shapes or text box, etc. but these terms are not used in word or in a document.

Write a application that can determine if a 5 digit number you input is a palindrome. If the number is a palindrome then print "The number is a palindrome." If it is not then print "The number is NOT a palindrome"

Answers

Answer:

Written in Python:

num = int(input("Number: "))

strnum = str(num)

if len(strnum) !=5:

    print("Length must be 5")

else:

    if(strnum[::-1] == strnum):

         print("The number is a palindrome.")

    else:

         print("The number is NOT palindrome.")

Explanation:

This prompts user for input

num = int(input("Number: "))

This converts user input to string

strnum = str(num)

This checks the length of the string

if len(strnum) !=5:

    print("Length must be 5") If length is not 5, this prompt is printed

else:If otherwise

    if(strnum[::-1] == strnum): The compares the string reversed with the original

         print("The number is a palindrome.") If both are the same, this line is executed

    else:

         print("The number is NOT palindrome.") If otherwise, this line is executed

Which line of code in this program is MOST likely to result in an error

Answers

Answer:

What are the choices?

Explanation:

Answer:

line 2 it needs quotation marks :D

Explanation:

Write an application that displays the sizes of the files lyric1.txt and lyric2.txt in bytes as well as the ratio of their sizes to each other.

Answers

Answer:

#include<iostream>

#include<fstream>

using namespace std;

int main() {

  ifstream file_one("lyric1.txt", ios::binary);

  ifstream file_two("lyric2.txt", ios::binary);

  file_one.seekg(0, ios::end);  // retrieving file size of lyric1.txt file

  file_two.seekg(0, ios::end);  // retrieving file size of lyric2.txt file

  // converting the binary file size to an integer.

  int fileOne = file_one.tellg();

  int fileTwo = file_two.tellg();

  cout<<"Size of the lyric1.txt is"<<" "<< fileOne<<" "<<"bytes";

  cout<<"Size of the lyric2.txt is"<<" "<< fileTwo<<" "<<"bytes";

  cout<< fileOne <<" : "<< fileTwo;

Explanation:

The source code gets the file size of two word files and displays them in bytes and also displays the ratio of both files.

For this project, you will be developing a PY file that contains your code in PyCharm and evaluating a few of the features of PyCharm. If you haven’t already, be sure to install the PyCharm IDE and Python on your computer. Review the tutorials in the Module Two resources to help you install and get started with PyCharm.

In PyCharm, write a program using python that prompts the user for their name and age. Your program should then tell the user the year they were born. Here is a sample execution of the program with the user input in bold:

What is your name? Amanda
How old are you? 15

Hello Amanda! You were born in 2005.

Answers

import datetime

name = input("What is your name? ")

age = int(input("How old are you? "))

year = datetime.datetime.today().year

print("Hello {}! You were born in {}.".format(name, year - age))

I hope this helps!

Consider an instruction within a certain instruction-set architecture (ISA): ADD R1, R2, R3. This instruction adds the value in Register R1 with the value in Register R2, and stores the result in Register R3. What is the maximum number of physical memory accesses that may be caused by this single instruction?
a) 1
b) 2
c) 3
d) 4

Answers

Answer:

C = 3

Explanation:

The maximum number of physical memory accesses that may be caused by this single instruction is ; 3

This is because In the case of loading two values into R2 and R3 there is need for their memories to be accessed and after execution R1 value there will be a write back into memory hence another memory is also accessed and that makes the number of Physical memories accessed to be three(3) in Total

Ask the user how many numbers for which they want to calculate the sum. Using a for loop, prompt the user to enter that many numbers, one-by-one, keeping track of the sum. At the end, after the user entered all numbers, output the sum.

Answers

n = int(input("How many numbers do you want to sum? "))

total = 0

for x in range(n):

   total += int(input("Enter a number: "))

print("Sum: "+str(total))

I hope this helps!

Following are the program to the given question:

Program Explanation:

Defining a variable "Sum" that holds an integer value.In the next step, a variable "t" is defined that uses the input method to input a value from the user-end.After the input value, a for loop is declared that takes the range of the t variable.Inside the loop, another variable "n" is defined that inputs value from user-end and use the "Sum" variable to add its value.Outside the loop, a print method has been used that prints the sum variable in the string with the message.  

Program:

Sum = 0#defining a variable sum that hold an integer value

t= int(input("Enter the total number you want to add: "))#defining a t variable that input value from user-end

for i in range(t):#defining a loop that add inputs values from above user-input range

   n= int(input("Enter value "+str(i+1)+": "))#defining loop that inputs n value

   Sum += n; #defining sum variable that adds user-input value

print("Sum of entered number: "+str(Sum))#using print method that print added value

Output:

Please find the attached file.

Learn more:

brainly.com/question/16025032

Advantages against its counterpart because of its portability​

Answers

Answer:

It is advantageous against its counterpart, which is HTML 5,because of its portability. ... It is the basic pattern of HTML tags. <HTML> It indicates that the file is composed of HTML commands.

It is the language used to create websites because of its portability, this is beneficial against HTML 5, The abstraction behind goods, buttons, and connections is a command, and the further discussion can be defined as follows:

The software used to construct a webpage as well as its contents is the HTML tag this is used to set an instruction to also be invoked by the user.It states that the HTML commands are in the file for its portability, it is beneficial itself against counterpart HTML 5.This is the HTML Tags pattern. It suggests that the HTML instructions are included in the file.

Learn more:

brainly.com/question/4932805

Which software programs should students avoid using to create and submit course work? (Choose all that apply). Word, Pages, Numbers, Keynote

Answers

Answer:

tyafana

Explan

ation:n umbers

Is this statement true or false?

A plain text e-mail and the same text entered into a word processing document would be about the same file sizes.


true

false

Answers

False, the word file will be a little bit larger

Answer:

false

Explanation:

The Mac’s GUI set it apart from earlier operating systems.
True or False

Answers

Answer:

Its true

Explanation:

Just took the test.

Katla is a project manager. One of the programmers on her team comes to her and says that he permanently deleted some code mistakenly. After working for weeks with their support technicians to retrieve the code, Katla wants to implement a better system. Which system does she need to start using?

A. WhiteBoard

B. debugging

C. software development life cycle

D. version control

Answers

Answer:

Version Control - Maintains the code log history and changes overtime.

Discuss the advantages and disadvantages of artificial intelligence ?
50word

Answers

Answer:

it'll be in points okay.

Explanation:

1. It's a blessing as well as a curse.

2. It changed lives.

3. Helped understand things better.

4. Development.

5. Free knowledge e.g. Brainly

;)

Explanation:

Kxkxkdkeeksldowowowkscoviforkeooododosowkwmdndmdmrnrnrmrmfododoo ododosososxkxkdldldldllwlwwlel ododoeldl ldldldlxl odododo oodoxxoo

In series connection, if we have two symmetric devices connected with 10 V battery, voltage for each device will be.. .5V or 10V
Pleaseee help I am crying

Answers

Answer:

5V

Explanation:

In series, you divide the voltage over the devices, so 10V / 2 devices = 5V.

In parallel, each device would get the full battery voltage.

See picture.

What is the best prediction she could make about this
semester's text?
Natalia's class read Shakespeare's Romeo and Juliet
last semester and took a field trip to see it performed
live in a community theater. Today, Natalia learned that
her class will read another work by Shakespeare this
semester
It is a play.
It is an adventure.
It is a fairy tale.
It is a fable.

Answers

Answer:its a play

Explanation:

Answer:

A. It is a play

Explanation:

Got the answer correct on the quiz

**Question of the Day: How can we change the style of text on a
web page?**

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

If you are a user and serving some website pages for exploring the information, then you want to change the text style on a specific page, you are not allowed to do and you can not do it and change the style of a text written on a webpage.

because text style is written by the programmer of those web pages and the programmer can change the style of text in the HTML coding.  

If you are a programmer then you can change the style of a text. Its color, font style, and font size easily in the HTML coding of that page.    

You can also use CSS (cascaded style sheet) with html to change the style of text on a web page while changing text attributes such as font color, font family, text size, and text alignmnet etc.

What happens when you apply a theme to a form?

Answers

Answer:

it will be customizable, you can design it in a different style

Explanation:

1. What do you think of the use of Moore’s Law to hypothesize a timeframe for the origin of life?
2. How does Moore’s Law apply to the efficiency of algorithms as we discussed in the last class?
3. Where do you think computers will be in 10 years? 100?

Answers

Answer:

1. I think it was actually a very good idea. As time goes on technology is improved, new laws and theories are proven, scientists are disproven, and efficiency of doing certain tasks evolves. Another reason would be, why not? It does not hurt to make a hypothesis or try a new approach.  

1. We spend countless time exploring and digging only to possible never find what we need to exactly pin the first life forms on Earth and when they lived, why not try a new different angle. So, I think that it was a very clever and interesting to use and Moore's Law to hypothesis the origin of life.  

2. Moore's law applies to the efficiency of algorithms because he came up with a way to hypothesis were in technology we should stand after a certain amount of time and how much improvements should be integrated into our computers.

2. Moore’s Law applies to the efficiency of algorithms because Moore created a exponential equation and graph of a hypothesis proven to help guide engineers on a steady path of improvement should be made to  computer processors and components with in a certain amount of time.

3. In a 10 years I think computers would have only made simply yet very effective and efficient improvements. Like longer battery life, or faster speeds, but virus firewalls and defenders. But when faced with 100 years I think that would have lead to a huge drastic change to what the normal idea of a computer is. It would be so high tech to us but with the world our grandkids are living in it'll be normal to have holographic computers.

3. I think that in 10 years computers would have improved much like they have recently, smaller, more compact, faster, and longer lasting, but within 100 years we would have a another invention entirely. Computers would have changed so much more than we could have every thought.

Explanation: I put a few different answers for each question so you can mix and match and use what's easiest for you but both are correct.

Write a program that inputs numbers and keeps a running sum. When the sum is greater than 100, output the sum as well as the count of how many numbers were entered.

Answers

total = 0

count = 0

while total < 100:

   num = int(input("Enter a number: "))

   total += num

   count += 1

print("Sum: {}".format(total))

print("Numbers Entered: {}".format(count))

I'm pretty sure this is what you're looking for. Best of luck!

What term refers to a sequence of statements in a language that both humans and computers can understand?

a
hexadecimal
b
program
c
binary
d
macro

Answers

Answer your answer is Macro

Explanation:

Macro shares language both the computer and the programmer can undestand.

in pycharm, write a program that prompts the user for their name and age. your program should then tell the user the year they were born. here is a sample execution of the program what is your name? Amanda how old are you? 15. This is what I have so far but I can't get pycharm to tell me the year I was born.
import datetime

name = input("What is your name? ")

age = input("How old are you? ")

year = datetime.datetime.now().year

print("Hello ' + name + ' you were born in " (year - age))

Answers

Let's address the few mistakes in your code so far. First, age is of type string and year is of type int. You're trying to subtract an int by a string and that doesn't work. Also, you have inconsistent quotes "Hello '. You should always use the same type of quote. The (year - age)) isn't properly formatted into the print statement. There is no plus adding it.

Here's my working code:

import datetime

name = input("What is your name? ")

age = int(input("How old are you? "))

year = datetime.datetime.now().year

print("Hello " + name + " you were born in " + str((year - age)))

I just fixed your code. Best of luck.

In python, date and time seem to be not its type of data, but the date and time named module can be imported for it to work with the time and date. So, the program and its description can be defined as follows:

Program Explanation:

Importing "datetime" package.Defining two-variable "name, age" in which we input value from user-end.Defining another variable "year" that holds current year value.In the next step, the print method has used that prints the user name with the born year.

Program:

import datetime#import package datetime

name = input("What is your name? ")#defining a variable name that uses an inputs method to input string value

age = int(input("How old are you? "))#defining a variable age that uses an inputs method with the int to input value

year = datetime.datetime.now().year#defining a variable year that takes current value in it

print("Hello " + name + " you were born in " + str((year - age)))#defining a print method that print name value with born year

Output:

Please find the attached file.

Learn more:

brainly.com/question/19032453  

Write a method to convert from Celsius to Fahrenheit using the following method header:// convers form Celsius to Fahrenheitpublic static double celsiusToFahrenheit (double celsius)The formula for the conversion is: Fahrenheit = ( 9/5) * Celsius +32

Answers

Answer:

public class Main

{

public static void main(String[] args) {

 System.out.println(celsiusToFahrenheit(10));

}

public static double celsiusToFahrenheit (double celsius){

    double fahrenheit = (9/5.0) * celsius + 32;

    return fahrenheit;

}

}

Explanation:

Create a method named celsiusToFahrenheit that takes one parameter, celsius

Inside the method:

Convert the celcius to fahrenheit using the given formula. Note that, in the formula 9/5 is integer division. You need to convert it to the double so that the result should not be 0. One solution is converting one of the int to decimal, 9/5 → 9/5.0

Return the fahrenheit

Inside the main method:

Call the celsiusToFahrenheit() with some value and print the result

explain mechanical computer

Answers

Answer:

A mechanical computer is built from mechanical components such as levers and gears, rather than electronic components. The most common examples are adding machines and mechanical counters, which use the turning of gears to increment output displays.

Explanation:

hope this answer was helpful

The
is an image at the top of the page that includes the title.

Answers

Answer:

person to be able to the way you can get a lot and then we have a few months ago but the new one of this message

How many times would the code in this loop repeat? ____________ for ( j = 0; j < 10; j++ ) { appendItem (myList, aNumber); }

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The for-loop given in the question is:

for ( j = 0; j < 10; j++ )

{

      appendItem (myList, aNumber); //this loop append a number to a list myList

}

This loop starts from J variable's value zero and when J's value is less than 10, the loop iterate through its body until J's value becomes greater or equal to 10. As J's value exceed nine, the loop will get terminated.

So this loop repeats 10 times its loop body, at the 11th time, the condition becomes false and the loop will get terminated.

Write code that will read the contents of umich_buildings.json and load its value into the gobal variable umich_buildings. Note that umich_buildings will be a list.

Answers

Answer:

import json

umich_buildings = []

with open("umich_buildings.json", "r") as json_file:

   content = json.load(json_file)

json_file.close()

for value in content:

   umich_buildings.append(value)

print("the resultant is : ", umich_buildings)

Explanation:

The python source code gets information from a json file, it imports the json package and opens and assigns the json file "umich_building" to the variable "json_file" and continuously parse the json to python with the load() method, then append the items to the global list variable "umich_buildings"

Which software programs should students avoid using to create and submit course work? (Choose all that apply.

Answers

Answer:

you need to add the list

Explanation:

Write a Python program string_functions.py that defines several functions. Each function re-implements Python's built-in string methods

Answers

Answer:

def length( mystring):

   count = 0

   for i in mystring:

       count += 1

   return count

def reversed( mystring):

   strlist = []

   for i in range(length(mystring)):

       strlist.append(mystring[(length(mystring) - 1) - i])

       txt = "".join(strlist)

   return txt

string = 'Yolanda'

print(reversed(string))

Explanation:

The python module defines two functions 'reversed' and 'length'. The length function counts the number of characters in a string variable while the reversed function reverses the string variable value.

IN PYTHON LANGUAGE

(1) Prompt the user to enter two words and a number, storing each into separate variables. Then, output those three values on a single line separated by a space. (Submit for 1 point)

Enter favorite color:
yellow
Enter pet's name:
Daisy
Enter a number:
6
You entered: yellow Daisy 6

(2) Output two passwords using a combination of the user input. Format the passwords as shown below. (Submit for 2 points, so 3 points total).

Enter favorite color:
yellow
Enter pet's name:
Daisy
Enter a number:
6
You entered: yellow Daisy 6

First password: yellow_Daisy
Second password: 6yellow6

(3) Output the length of each password (the number of characters in the strings). (Submit for 2 points, so 5 points total).

Enter favorite color:
yellow
Enter pet's name:
Daisy
Enter a number:
6
You entered: yellow Daisy 6

First password: yellow_Daisy
Second password: 6yellow6

Number of characters in yellow_Daisy: 12
Number of characters in 6yellow6: 8

Answers

Answer:

favorite_color = input('Enter favorite color:\n')

pet_name = input("Enter pet's name:\n")

number = input('Enter a number:\n')

print('You entered:',favorite_color+' '+pet_name+' '+number)

password1 = favorite_color+'_'+pet_name

password2 = number+favorite_color+number

print('\nFirst password:'+' '+password1)

print('Second password:'+' '+password2)

print('\nNumber of characters in '+password1+': '+str(len(password1)))

print('Number of characters in '+password2+': '+str(len(password2)))

Explanation:

Notice on the pet name I used quotes instead of parenthesis because so I can use the comma on pet's.

This solution worked for me.

Suppose the RAM for a certain computer has 256M words, where each word is 16 bits long.What is the capacity of the memory expressed in bytes

Answers

Answer:

The RAM capacity expressed in bytes is

512 million bytes

Explanation:

a) Data and Calculations:

RAM contains 256m words

Each word = 16 bits

1 bit = 0.125 byte

This means that each word will have 2 (16 * 0.125) bytes

Therefore, the RAM contains 256m * 2 = 512 million bytes

b) A bit is 0.125 bytes and a byte is eight times bigger than a bit.  This implies that there are eight megabits in every megabyte, and one gigabyte is eight times bigger than one gigabit.  The 512 million bytes above are about 488.3 gigabytes, since 1 gigabyte equals 1,024 megabytes or 1,046,576 kilobytes.

Other Questions
PLSSSSSSSS HURRRYYY ASAP. Read the paragraph from "The Workers of Ellis Island."Both female and male nurses were required to live on the island and were assigned separate quarters. According to PHS regulations, all nurses visiting New York and New Jersey on their off-duty hours were required to return to Ellis Island no later than the 12:00 a.m. staff boat.Which statement best describes the central idea of the paragraph?Female and male nurses lived in separate quarters on Ellis Island.The Public Health Service (PHS) regulated the actions of the Ellis Island nurses.Ellis Island nurses visited New York and New Jersey on their off-duty hours.Ellis Island nurses had to return to the island on the 12:00 a.m. staff boat. the price of a item yesterday was $160. today, the price fell to $104. find the percentage decrease Who was the first professor who implemented a scientific approach in order to investigate a problem, and who is referred to the the father of scientific mythology is the inability to reproduce, or have a baby.AbstinenceInfertilityInfertility InferenceNegotiation What are the equations of the lines with the given slope and y-intercept1. Slope:2, y-intercept: -32. Slope: 4, y-intercept: -2 Carlos les describe la tarea a Ana y a ti? Match the items in the left column to the items in the right column.1. advise in American politics, situation in which one party controls the House and the other party controls the Senate 2. ambassador ruling; overseeing 3. assess to evaluate and set the amount of a tax 4. consent to recommend or suggest 5. contenders presiding officer of the Senate whenever the vice president is not present 6. divided government to agree or accept 7. president pro tempore political competitors 8. presiding recall; cancel 9. repeal a representative of a government; a diplomat who resides in the country where the ambassador is in communication #4Write an equation in slope-interceptform to represent the lineperpendicular to 6y = 9 - x withy-intercept 2O y = -6x + 2O y = 2x + 9 Jimmy and Lauren areorganizing transportation fora field trip from ACIT. Jimmyfound out that his group has841 students, and he needs 9vans and 16 buses toaccommodate. While Laurensgroup has 351 students, andshe needs 8 vans and 5 busesfor them. How many studentsfit in a van and a bus for thisfield trip? (please include steps) When tractors were first introduced to Pakistan, crop production went down and40% of farmers lost their jobs. Is this a true or false statement? -TrueFalse 05.01)A poster is shown below: A rectangle is shown. The length of the rectangle is labeled 18 inches. The width of the rectangle is labeled 6 inches. What are the dimensions if the poster is enlarged by a factor of seven over two ? 42 in by 126 in 3 in by 9 in 9 in by 12 in 21 in by 63 in A balloon is launched straight upward and has a hang time of 14 s. (wow) A.) What was the launching velocity of the balloon? B.) How high did the balloon travel? C.) How far did the balloon travel between t = 3 and t = 4 s? At an electronics store, a smart phone is on sale for 35% off the original price of $679. If you use the store credit card, you can receive an additional 15% off the sale price. What is the final price of the smart phone if you use the store credit card? Round to the nearest cent. What is the degree-measure of an angle travelled by the minute hand from 3:05pm to 3:50pm? Why did the colonists choose to throw British tea in the Boston Harbor? How much did they throw overboard? f(x) =2x+8 when x=-2, x=0, and x=5. Look at the painting. Two people enjoying a boat ride as sunset. What elements does the artist use to illustrate a sense of tranquility? Check all that apply. the use of bright, shining colors the use of the sea as a setting the use of natural light and shadows the subjects body language the subjects facial expressions Evan's mother had 6 gallons of ice cream in the freezer thatshe used for his birthday party. If the guests ate % of the icecream, how many gallons of ice cream were eaten at the.party? Help me Im dumb , I feel as if Im right but I aint sure. True or False: sec-10.5 is undefined. Explain your answer.