See the picture and answer the coding question
Answer:
Actually I don't know computer so I can't help you sorry bro
Y’all what’s some celebrities that have kids??
Answer:
Angelina Jolie
Parents: Jon Voight, Marcheline Bertrand
Eddie Murphy
Parents: Charles Edward Murphy, Lillian Murphy
Sandra Bullock
Parents: Helga Meyer, John W. Bullock
Kate Hudson
Parents: Goldie Hawn, Bill Hudson
Katie Holmes
Parents: Kathleen A. Stothers-Holmes, Martin Joseph Holmes, Sr.
Reese Witherspoon
Parents: Betty Reese, John Witherspoon
Meryl Streep
Parents: Harry William Streep, Jr., Mary Wolf Wilkinson
Oprah Winfrey
Parents: Vernon Winfrey, Vernita Lee
Tina Fey
Parents: Zenobia Xenakes, Donald Fey
Uma Thurman
Parents: Nena von Schlebrügge, Robert Thurman
David Beckham
Parents: David Edward Alan Beckham, Sandra Georgina West
Susan Sarandon
Parents: Leonora Marie Criscione, Phillip Leslie Tomalin
Sofía Vergara
Parents: Julio Enrique Vergara Robayo, Margarita Vergara Dávila de Vergara
Hilary Duff
Parents: Susan Colleen Duff, Robert Duff
Miley Cyrus
Parents: Billy Ray Cyrus, Tish Cyrus
Zoë Kravitz
Parents: Lisa Bonet, Lenny Kravitz
Beyoncé
Parents: Tina Knowles, Mathew Knowles
Alexis Bledel
Parents: Nanette Bledel, Martin Bledel
Hugh Grant
Parents: Finvola Grant, James Grant
Britney Spears
Parents: Lynne Spears, Jamie Spears
Cindy Crawford
Parents: Jennifer Sue Crawford-Moluf, John Crawford
Adele
Parents: Penny Adkins, Mark Evans
Gwyneth Paltrow
Parents: Blythe Danner, Bruce Paltrow
Solange Knowles
Parents: Tina Knowles, Mathew Knowles
I need them on this question
Answer:
Extended wear contacts. ...
Toric contacts. ...
Colored (tinted) contacts
Explanation: hope this helps
When is blue for when the instance in which the directory of compulsion in the air!
Aliah finds an old router that does not support channel bonding. What frequency are the channels limited to?
A.
10 MHz
B.
20 MHz
C.
40 MHz
D.
80 MHz
convert 128 GB into KB
Answer:
1,073,741,274 KB
Explanation:
Use an unit convertor or an calculator.
Which of the following statements is true for DMA: (only one correct answer) A. In DMA, Processor checks status until the operation is complete B. In DMA, Processor is interrupted when I/O module ready to execute data C. In DMA, no interrupt is produced D. In DMA, interrupt is sent when the task is completed E. None of the above
Answer:
D. In DMA, interrupt is sent when the task is completed
Explanation:
Note, the term Direct Memory Access simply refers to a computer feature that allows hardware subsystems to directly access the main system memory of a computer, without any the aid of the central processing unit (CPU).
It is a fact that while the transfer process is ongoing, an interrupt (interrupt signal) is not sent until when the task is completed.
The function below takes two parameters: a string parameter: csv_string and an integer index. This string parameter will hold a comma-separated collection of integers: ‘111, 22,3333,4’. Complete the function to return the indexth value (counting from zero) from the comma-separated values as an integer. For example, your code should return 3333 (not ‘3333 *) if the example string is provided with an index value of 2. Hints you should consider using the split() method and the int() function. print.py 1 – def get_nth_int_from_CSV(CSV_string, index): Show transcribed image text The function below takes two parameters: a string parameter: csv_string and an integer index. This string parameter will hold a comma-separated collection of integers: ‘111, 22,3333,4’. Complete the function to return the indexth value (counting from zero) from the comma-separated values as an integer. For example, your code should return 3333 (not ‘3333 *) if the example string is provided with an index value of 2. Hints you should consider using the split() method and the int() function. print.py 1 – def get_nth_int_from_CSV(CSV_string, index):
Answer:
The complete function is as follows:
def get_nth_int_from_CSV(CSV_string, index):
splitstring = CSV_string.split(",")
print(int(splitstring[index]))
Explanation:
This defines the function
def get_nth_int_from_CSV(CSV_string, index):
This splits the string by comma (,)
splitstring = CSV_string.split(",")
This gets the string at the index position, converts it to an integer and print the converted integer
print(int(splitstring[index]))
10. List three adaptations of wind-pollinated plants to promote pollination.
Answer:
No bright colors, special odors, or nectar.
Small.
Most have no petals.
Wesley purchased a word-processing software program. He used it for a year, during which he got regular updates every two months. After a year, he was not allowed to update the software. However, he could continue using it. Why did the updates stop?
Group of answer choices.
A. The software was corrupt and resulted in a bug.
B. He purchased a license with maintenance for a year.
C. The organization discontinued the software.
D. He purchased an open-source license.
E. He purchase a perpetual non-maintenance license.
Answer:
B. He purchased a license with maintenance for a year.
Explanation:
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer how to perform a specific task and to solve a particular problem.
Basically, softwares are categorized into two (2) main categories and these are;
I. Open-source software.
II. Proprietary software.
A proprietary software is also known as a closed-source software and it can be defined as any software application or program that has its source code copyrighted and as such cannot be used, modified or distributed without authorization from the software developer. Thus, it is typically published as a commercial software that may be sold, licensed or leased by the software developer (vendor) to the end users with terms and conditions.
In this scenario, Wesley purchased a word-processing software program. He used it for a year, during which he got regular updates every two months. However, after a year, he was not allowed to update the software but he could continue using it.
This ultimately implies that, Wesley purchased a licensed software with maintenance for a year and as such he would stop receiving an update from the software developer after his subscription expired.
please help me with this coding problem :)
Consider the following field and incomplete method of some class. The method calcTotal is intended to return the sum of all values in vals.
private int[] vals;
public int calcTotal()
{
int total = 0;
/* missing code */
return total;
}
Which of the code segments shown below can be used to replace /* missing code */ so that calcTotal will work as intended?
I.
for (int i : vals)
{
total += i;
}
II.
for (int pos = vals.length; pos > 0; pos--)
{
total += vals[pos];
}
III.
int pos = 0;
while (pos < vals.length)
{
total += vals[pos];
pos++;
}
I only
II only
I and III
II and III
III only
Answer:
ll and lll
Explanation:
list dont be a looser
During what stage of problem solving is information gathered in order to see if the plan produced the intended outcome?
A. implement the solution
B. Define the problem
C. Identify solutions
D. evaluate results
Identify solutions is to see if the plan produced the intended outcome.
Hence, option C is correct answer.
What is problem solving?Diagnose the circumstance to keep your attention on the issue and not merely its symptoms. Use cause-and-effect diagrams to establish and examine root causes, and flowcharts to show the anticipated steps of a process while solving problems.
Key problem-solving steps are explained in the sections that follow. These actions encourage the participation of interested parties, the use of factual information, the comparison of expectations with reality, and the concentration on a problem's underlying causes. You ought to start by:
reviewing and capturing the functioning of current processes (i.e., who does what, with what information, using what tools, communicating with what organisations and individuals, in what time frame, using what format).
assessing the potential effects of new resources and updated regulations on the creation of your "what should be"
Read more about problem solving:
https://brainly.com/question/23945932
#SPJ1
You have just started a new job as the administrator of the eastsim domain. The manager of the accounting department has overheard his employees joke about how many employees are using "password" as their password. He wants you to configure a more restrictive password policy for employees in the accounting department. Before creating the password policy, you open the Active Directory Users and Computers structure and see the following containers and OU: eastsim Builtin Users Computers Domain Controllers Which steps must you perform to implement the desired password policy? (Select three. Each correct answer is part of the complete solution.)
Explanation:
To implement the desired password policy, you have to carry out these steps
1. An organizational unit, OU has to be created for these employees in east-sim.com
2. Since there is an organizational unit created for the accounting employees, you have to put the employees user objects in this Organizational unit.
3. Then as the administrator the next step that i would take is the configuration of the password policy, then i would link this to the already created organizational unit for these employees
function _one(array)
Create a JavaScript function that meets the following requirements:
•
•
•
•
Please give your function a descriptive name
o ( _one is not acceptable, and is only displayed here for illustration purposes)
Receives an array of integers as an argument
The function removes all duplicates (if they exist) from the array and returns it to the caller.
Assume the input array parameter will have at least one element in it.
Examples :
_one([33])
➔ [33]
_one([33, 33, 1, 4])
➔ [1, 4]
_one([33, 33, 1, 4, 1]) ➔ [4]
Answer:
function removeRepeaters(list){
var goodList = [], badList = {}, used = {}, n;
// ensure that the argument is indeed an array
if(!Array.isArray(list)){
throw "removeRepeaters: Expecting one argument of type Array";
}
// loop through the array and take note of any duplicates
for(n in list) used[list[n]] == true ? badList[list[n]] = true : used[list[n]] = true;
// now loop through again, and assemble a list of non-duplicates
for(n in list) if(badList[list[n]] == undefined) goodList[] = list[n];
return goodList;
}
Explanation:
I assume you're familiar with trinary operators, but just in case, that's what's happening in this first for loop:
for(n in list) used[list[n]] == true ? badList[list[n]] = true : used[list[n]] = true;
this is the same as saying:
for(n in list){
if(used[list[n]] == true){
badList[list[n]] = true;
} else {
used[list[n]] = true;
}
}
This loop flags all of the values in the list that are duplicated. Note that both "badList" and "used" are declared as objects instead of arrays. This allows us to compare keys in them with an == operator, even if they're not defined, making it a convenient way to flag things.
Note that I haven't tested it, so I may have overlooked something. I suggest testing it before handing it in.
Hoda is creating a report in Access using the Report Wizard. Which option is not available for adding fields using the wizard?
1. Tables
2. Queries
Reports
All are available options.
Answer:
Reports
Explanation:
Answer:
reports
Explanation:
Where should a photographer place lights for a headshot? Headshot lighting is more important with darker backgrounds. The light should be at a 45-degree angle from the subject. The light should be in front of the subject. The third light should be the subject to form a ring of light around the subject’s hair.
Answer:
Headshot lighting is more important with darker backgrounds. The
(key) light should be at a 45-degree angle from the subject. The
(fill) light should be in front of the subject. The third light should be
(behind) the subject to form a ring of light around the subject’s hair.
Explanation:
i searched it up individually and thats what i got
evaluate the arithmetic expression 234+567
Answer:
801
Explanation:
234 + 567 = 801
a farmer cultivates 1/4 of his farm with ground nuts and 2/5 of it with maize what is the total landnarea that is cultivated
Answer:
13/20
egeringioerngierngineriogneirognoernogenroiernonoirenogneogneiong
What are the characteristics of a good text-based adventure game? In other words, what are some features that should be in the game to make it appealing to players?
Answer:
spelling and good format
Explanation:thats all i know
Define a function named sum_values with two parameters. The first parameter will be a list of dictionaries (the data). The second parameter will be a string (a key). Return the sum of the dictionaries' values associated with the second parameter. You SHOULD NOT assume that all of the dictionaries in the first parameter will have the second parameter as a key. If none of the dictionaries have the second parameter as a key, your function should return 0. Sample function call: sum_values(data, 'estimated_annual_kwh_savings') sum_values_by_year
Answer:
Answered below
Explanation:
//Program is written in Python
sum = 0
def sum_of_values(dict_data, number_of_boys):
for dict in dict_data:
for key in dict.keys():
if key == number_of_boys:
sum += dict[key]
//After looping check the sum variable and //return the appropriate value.
if sum != 0:
return sum
elif sum == 0:
//There was no key of such so no addition.
return 0
PLEASE HELP WILL MARK BRAINLEST!!
What are some inadvertent effects of technology?
Answer:
Industrialization increased our standard of living, but has led to much pollution and arguably, even some social ills. The benefits brought by the internet are too many to mention, yet viral misinformation, vast erosion of privacy, and the diminishing patience of society as a whole were all unintended consequences.
Answer:
It has also increased idle time of workers
It is also true that we are now spending more time visiting social networking sites, rather than our friends and family
Explanation:
please help me on this coding problem :)
Consider the following code segment.
int a = 0;
int b = 3;
while ((b != 0) && ((a / b) >= 0)
{
a = a + 2;
b = b - 1;
}
What are the values of a and b after the while loop completes its execution?
a = 4, b = 1
a = 0, b = 3
a = 6, b = 0
a = 8, b = -1
Answer:
a=4 , b=1
Explanation:
I'm not a computer science major at all but I think I can help you with this code.
Our program wants us to add 2 to a get new a value while also subtracting 1 from b value to obtain new b value. We we want to for for as long b is not 0 and a/b is nonnegative.
One round we get:
New a=0+2=2
New b=3-1=2
Let's see if we can go another round:
New a=2+2=4
New b=2-1=1
We can't go another round because b would be negative while a is positive which would make a/b negative. So our loop stops at this 2nd round.
a=4 , b=1
Other notes:
2nd choice makes no sense because a is always going to increase because of the addition on a and b was going to decrease because of the subtraction on it.
Third choice makes no sense because a/b doesn't even exist.
Fourth choice a/b is negative not nonnegative.
How do most benchmark tests measure the performance of a graphic card
Answer:
Using Frame Rate
Explanation:
Most benchmark tests measure the performance of a graphic card by using "Frame Rate"
This is because using Frame Rate assesses and then measures the number of images a GPU (graphic processing unit) can render and at the same time the number of images that are being shown on a monitor or screen per second.
Hence, in this case, the correct answer is "Frame Rate"
You are asked to write a program that will display a letter that corresponds with a numeric rating system. The program should use a switch statement. The numeric rating is stored in a variable named rate and rate may equal 1, 2, 3, or 4. The corresponding letter is stored in a variable named grade and grade may be A, B, C, or D. Which is the test expression for this switch statement
The switch statements are similar to the if statements in a computer program
The test expression for the switch statement is the variable rate
How to determine the test expressionFrom the question, we have the following highlights
The program displays a corresponding letter of a rateThe rating is stored in the variable rateThis means that, the numerical value of the variable rate would be tested and the corresponding letter would be printed
Hence, the test expression for the switch statement is the variable rate
Read more about computer programs at:
https://brainly.com/question/16397886
Helllp me you will git 16 points
Answer:
False
Hope it helps...
Have a great day :P
Monster Collector
Write this program using an IDE. Comment and style the code according to the CS 200 Style Guide. Submit the source code files (.java) below. Make sure your source files are encoded in UTF-8. Some strange compiler errors are due to the text encoding not being correct.
Monster collector is a game of chance, where the user tries to collect monsters by guessing the correct numbers between 1 and 5. If the user doesn't guess the incorrect number, you catch the monster, otherwise, it gets away!
Example output:
Welcome to Monster Collector, collect 2 monsters to win!
A wild pikamoo appears! Guess a number between 1 and 5
5
You almost had it, but the monster escaped.
A wild bulbaroar appears! Guess a number between 1 and 5
1
Congratulations, you caught bulbaroar!
There are no more monsters to encounter!
You caught i monsters of 2
Keep training to be the very best!
Welcome to Monster Collector, collect 2 monsters to win!
A wild pikamoo appears! Guess a number between 1 and 5
3
Congratulations, you caught pikamoo !
A wild bulbaroar appears! Guess a number between 1 and 5
1
Congratulations, you caught bulbaroar!
There are no more monsters to encounter!
You caught 2 monsters of 2
You're the monster collector master!
A more detailed explanation of the requirements for each method will be in the method header comments - please follow these closely. Suggested order of completion:getMonster(), catchMonster(), printResult() then main(). Config.java contains an array of monsters, and the seed for your random number generator.
Answer:
In java:
import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int monsternum, usernum;
int count = 0;
Random rand = new Random();
String [] monsters = {"wild pikamoo","wild bulbaroar"};
for(int i =0;i<2;i++){
monsternum = rand.nextInt(5);
System.out.print("A "+monsters[i]+" appears! Guess a number between 1 and 5: ");
usernum = input.nextInt();
if(monsternum == usernum){ count++; System.out.println("Congratulations, you caught a "+monsters[i]+"!"); }
else{ System.out.println("You almost had it, but the monster escaped."); }
}
System.out.println("There are no more monsters to encounter!");
System.out.println("You caught "+count+" monsters of 2");
if(count!=2){ System.out.print("Keep training to be the very best!"); }
else{ System.out.print("You're the monster collector master!"); }
}
}
Explanation:
This declares monster and user number as integers
int monsternum, usernum;
Initialize count to 0
int count = 0;
Call the random object
Random rand = new Random();
Create a string array to save the monster names
String [] monsters = {"wild pikamoo","wild bulbaroar"};
Iterate for the 2 monsters
for(int i =0;i<2;i++){
Generate a monster number
monsternum = rand.nextInt(5);
Prompt the user to take a guess
System.out.print("A "+monsters[i]+" appears! Guess a number between 1 and 5: ");
Get user guess
usernum = input.nextInt();
If monster number and user guess are equal, congratulate the user and increase count by 1
if(monsternum == usernum){ count++; System.out.println("Congratulations, you caught a "+monsters[i]+"!"); }
If otherwise, prompt the user to keep trying
else{ System.out.println("You almost had it, but the monster escaped."); }
}
Print no monsters again
System.out.println("There are no more monsters to encounter!");
Print number of monsters caught
System.out.println("You caught "+count+" monsters of 2");
Print user score
if(count!=2){ System.out.print("Keep training to be the very best!"); }
else{ System.out.print("You're the monster collector master!"); }
13. Which statement is valid?
1 KB = 1024 bytes.
1 MB = 2048 bytes
1 MB = 1000 kilobytes
1 KB = 1000 bytes
Answer:
1 KB = 1024 bytes is correct
Explanation:
Answer:
1 KB = 1000 bytes
Is valid.
Hope it will help :)❤
Can someone help me calculate this Multimedia math:
A monochrome sequence (black and white) uses a frame size of 176 x 144 pixels and has 8 bits/pixels. Registered with Frame Rate 10 frames/sec. Video is transmitted through a 64 Kbit/sec bandwidth line.
(a) Calculate Compression Ratio (Crude Bit Speed / Compressed Bit Speed) which will be needed.
(b) What will happen if the Ratio compression is higher than it in (a)?
(c) What will happen if the Ratio compression is lower than it in (a)?
Answer:
I will try to help you answer this. it seems really confusing but I'll do my best to solve it and get it back to you. Hope I'm able to help!
Create two functions (with appropriate names) that produce the output below. Both functions must use a prototype. All that should be present in main() is the call to these two functions and a blank line of output between the function calls. This is a very easy exercise. Focus on the fundamentals. Make sure you review my solution file to make sure your syntax and name choice is good. Output: This is the first part of my program. It was created with a function. <-- These two lines are output by the first function This is the second part of my program. It was created with a different function. <-- These two lines are output by the second function
Answer:
In C++:
#include <iostream>
using namespace std;
void function1(); void function2();
int main(){
function1(); function2();
return 0;}
void function1(){
cout<<"This is the first part of my program."<<endl<<"It was created with a function"<<endl;}
void function2(){
cout<<"This is the second part of my program."<<endl<<"It was created with a different function.";}
Explanation:
This defines the function prototypes
void function1(); void function2();
The main begins here
int main(){
This calls the two functions from main
function1(); function2();
return 0;}
This calls function1()
void function1(){
cout<<"This is the first part of my program."<<endl<<"It was created with a function"<<endl;}
This calls function2()
void function2(){
cout<<"This is the second part of my program."<<endl<<"It was created with a different function.";}
What is meant by the term text?
A. Printed information only
B. Printed, visual, and audio media
C. Any words conveyed by media
D. Content found only in books and mag
The term text means content found only in books and mag. Thus, option D is correct.
What is a text?
It is a set of statements that allows a coherent and orderly message to be given, either in writing or through the word of a written or printed work. In this sense, it is a structure made up of signs and a certain writing that gives space to a unit with meaning.
A video is a recording of a motion, or television program for playing through a television. A camcorder is a device or gadget that is used to record a video. audio is the sounds that we hear and mix media is a tool used to edit the video.
Digital camcorders are known to have a better resolution. The recorded video in this type of camcorder can be reproduced, unlike using an analog which losing image or audio quality can happen when making a copy. Despite the differences between digital and analog camcorders, both are portable, and are used for capturing and recording videos.
Therefore, The term text means content found only in books and mag. Thus, option D is correct.
Learn more about text on:
https://brainly.com/question/30018749
#SPJ5