a few questions related to power point.

A Few Questions Related To Power Point.
A Few Questions Related To Power Point.
A Few Questions Related To Power Point.
A Few Questions Related To Power Point.

Answers

Answer 1
Here is what I gathered from these questions:

Question 2: More than one text box
Question 3: All of these

Hope this helped ^-^

Related Questions

Write a for loop to populate array userguesses with num_guesses integers. read integers using scanner. ex: if num_guesses is 3 and user enters 9 5 2, then userguesses is {9, 5, 2} java

Answers

import java.util.Scanner; public class StoreGuesses {   public static void main (String [] args) {
   public static void main (String [] args) {      Scanner scnr = new Scanner(System.in);
      Scanner scnr = new Scanner(System.in);      final int NUM_GUESSES = 3;
      final int NUM_GUESSES = 3;      int[] userGuesses = new int[NUM_GUESSES];
      int[] userGuesses = new int[NUM_GUESSES];      int i = 0;
      int i = 0;             for (i = 0; i < NUM_GUESSES; ++i) {         
                  userGuesses[i] = scnr.nextInt();
      }
       for (i = 0; i < NUM_GUESSES; ++i){         System.out.print(userGuesses[i] + " ");
         System.out.print(userGuesses[i] + " ");      }
      }       return;   }
   }}
}

Answer:

For displaying the number guesses in array user guess, first declare the number guess variable and set it to 3. After this, store the number guesses in array user guesses variables. Then declare the for loop and run till the number of guesses. Finally, print the number of guesses using print statement.

Further explanation:

Following is the JAVA program to populate the array user guesses with number guesses integers.

Code:

import java.util.Scanner;

//class definition

public class NumberGuesses

{

public static void main (String [] args)  

{

Scanner scnr = new Scanner(System.in);

//initialize the variable number guesses with 3

final int num_guesses=3;

//store the number guesses variable in an array

int[] user_guesses = new int[num_guesses];

int i = 0;

//for loop declaration

for (i = 0; i < num_guesses; ++i)

{

user_guesses[i] = scnr.nextInt();

}

for (i = 0; i < num_guesses; ++i)

{

//print the output

System.out.print(user_guesses[i] + " ");

}

}

return;

}

Learn more:

1. A company that allows you to license software monthly to use online is an example of ? brainly.com/question/10410011

2. Prediction accuracy of a neural network depends on _______________ and ______________. brainly.com/question/10599832

3. The shape of our galaxy was determined ‘on the inside looking out' by surveying the milky way using ____________ telescopes. brainly.com/question/7866623

4. List 3 characteristics of the ideal encryption scheme. brainly.com/question/3000161

Answer details:

Grade: College Engineering

Subject: Computer Science and Engineering

Chapter: JAVA Programming

Keyword:

C Language, C++ language, JAVA, python, for loop, populate, array, read, scanner, class, num_guesses, user_guesses, enters, 9, 5, 2, variable, function, print, condition, true, false, return, system.out.print

Starbucks offers an app that allows remote ordering, free Wi-Fi in stores, and a loyalty program where customers can earn a free drink after a number of purchases. Which business strategy is Starbucks following with these programs? How do these programs add value to Starbucks business?

Answers

Starbucks is employing a Brand Loyalty and Convenience strategy that seeks to not only make it convenient for customers to use their services, but also builds loyalty to ensure that customers keep coming back. These programs add value to Starbucks as they increase residual sales and customer loyalty.

What type of device is built into a tablet computer and can send data over radio waves to another device such as a laser printer?

Answers

Wifi and/or Bluetooth 

"​the three legs of a project triangle are _____, scope, and time."

Answers

The project cost is the third leg of the triangle. This is one of the most important parts, simply because this can determine what parts of the project can or cannot be undertaken. Without the proper funding for the project, little can likely be done.

Write a while loop that prints 1 to usernum, using the variable i. follow each number (even the last one) by a space. assume usernum is positive. ex: usernum

Answers

i = 1;
while( i <= usernum )
    System.out.println( i++ + " " );  // make sure you understand ALL of this

Assume you have written a method with the header num mymethod(string name, string code). the method's type is

Answers

I need answer choices

For aes with a 128-bit block length and a 128-bit key length, what is the output of the first round of aes if the plaintext consists of 128 zeros and the first subkey consists of 128 zeros?

Answers

The answer is 66e94bd4ef8a2c3b884cfa59ca342b2e.

You can check it with the following node.js program:

const crypto = require('crypto');
const zeros = Buffer.alloc(16);
var cipher = crypto.createCipheriv('aes-128-cbc', zeros, zeros);
var encrypted = Buffer.concat([cipher.update(zeros), cipher.final()]);
console.log(encrypted.toString('hex'));

Note that the output will contain 2 blocks of 128 bit, this is due to the padding algorithm. For this question you can ignore the second block.

Final answer:

The output of the first round of AES with a 128-bit block length and a 128-bit key length, where both the plaintext and subkey are 128 zeros, remains as 128 zeros due to the characteristics of the XOR operation in the AddRoundKey step.

Explanation:

For AES with a 128-bit block length and a 128-bit key length, the output of the first round will be a series of binary values that result from the initial round of AES encryption, which includes SubBytes, ShiftRows, and MixColumns transformations, followed by AddRoundKey. However, in this specific case where both the plaintext and the first subkey consist of 128 zeros, the output after the AddRoundKey operation remains the same as the input plaintext because the AddRoundKey step essentially XORs the round key with the plaintext, and XORing anything with zero yields the original value unmodified.

Consequently, the initial series of zeros would remain unchanged after the first round due to the zeroed key.

Write c++ code that prints: usernum ... 2 1 blastoff! your code should contain a for loop. print a newline after each number and after blastoff!.ex: usernum = 3 outputs: 3 2 1 blastoff!

Answers

#include <iostream>
int main() { int usernum = 3;
for(int i = usernum; i >= 1; i--) { std::cout << i << "\n"; } std::cout << "blastoff!\n";
return 0;}
Works fine my dude:
./randombrainly 321blastoff!

Which of the following applications can be used as a data source for a Microsoft® Word® mail merge? A.Outlook Contacts B.Microsoft Access Databases C.Microsoft Excel Spreadsheet D.All of the above

Answers

Word can pull data from a variety of data sources to perform a mail merge. As part of the Microsoft Office suite, Word easily accepts data from Outlook, Excel, and Access, and other data sources such as web pages, OpenDocument text files, and delimited data files stored as plain text. And if you don't have an existing data source, you can create a new one in Word.
ALL OF THE ABOVE

Answer:

D.All of the above

Explanation:

Microsoft word mail merges are possible from all of the sources of the family of the Home Office Applications, so since Microsofts access database, Microsoft Excel, and Outlook COntacts are all part of the family of Microsoft Home Applications all of the documents and information are trasnferible between applications, the correct answer would be All of the above.

After unit and integration testing are completed, _________ testing ensures that all hardware and software components work together.​
Question 5 options:

​application

​system

​unit

​integration

Answers

After unit and integration testing are completed, _________ testing ensures that all hardware and software components work together.​

System

There is a newer, very high-speed network that will cover the united states, interconnecting universities and research centers at transmission rates up to a gigabit per second (1000 mbps). the new high-speed network is called ____.

Answers

Internet2 is known today as the new high-speed network. It is define in this question as a plan to implement a newer, very high-speed network that will cover the United States, interconnecting universities and research centers at transmission rates up to a gigabit per second (1000 Mbps). The answer in this question is Internet2.

Ping pc-b from a command prompt window on pc-a. were the pings successful? why?

Answers

If the pings are successful you are either on the same subnet and everything is configured correctly or ICMP echo is enabled on the router which it should be by default internally. Externally, ICMP can/should be disabled to avoid DOS attacks.

The ____ category of apps makes the computer easier for blind people to use.

Answers

The accessibility category of apps makes the computer easier for blind people to use. In general the accessibility apps are apps that help people with disabilities use a particular piece of hardware. For example there is an app designed to help blind people use their devices by paring them with a voluntary non-blind people trough audio-video connections.





Why would you activate more than one nic on a pc?

Answers

For redundancy in case of failure or for connecting them to different subnets. 

The activation   of multiple NICs can help boast throughput to and from the application servers and also gives failover.

What is application server?

An application server is known to be a tool that help give access to business logic that are said to be use in terms of client application programs.

Therefore, The activation  of multiple NICs can help boast throughput to and from the application servers and also gives failover.

Learn more about  application servers  from

https://brainly.com/question/14922758

#SPJ2

Provide the type assembly language instruction and binary representation of instruction

Answers

it is the msinpoin of the passage

Intranets are typically set up behind a firewall.
a. True
b. False

Answers

The answer is a. True. Hope this helps :)

~PutarPotato

Intranets are typically set up behind a firewall. This statement is true.

An intranet is a private network that is part of an organization and is used to securely distribute data and computer resources among staff members. Working in groups and holding teleconferences are two other uses for intranets.

Intranets promote internal communication in businesses. They make it simple for employees to access crucial data, links, tools, forms, and databases of corporate records. To ensure intranet security, a database with all the usernames of workers with network access credentials is frequently employed.

Learn more about intranets here:

https://brainly.com/question/13139335

#SPJ6

List three rules to follow when using or storing semi-precision measuring tools

Answers

kong term jfjdsfkjds fkjdshfkjdsh

List two windows utilities that can give you information about your hard drive. describe the steps you take to access these utilities.

Answers

The regular 'My Computer' option will give you information about your hard drive. More importantly you are able to visualize space remaining. To access this double click on 'My Computer' on your desktop. Another option is to goto Start > Control Panel > Device Manager. In here you can find out more information about what type of hard drive you have by expanding the 'Disk Drive' section.

Final answer:

File Explorer and Task Manager are Windows utilities that provide information about the hard drive; you can access them through specific steps.

Explanation:

Two Windows utilities that can provide information about your hard drive are File Explorer and Task Manager. To access these utilities:

For File Explorer, click Start > File Explorer or select the File Explorer icon in the taskbar. You can view drive information by right-clicking on a drive and selecting Properties.

For Task Manager, right-click the taskbar and choose Task Manager. Go to the Performance tab to view disk usage and other details about your hard drive.

You are to write a program name elevator.java that simulates one elevator services in a 12-floor building. note: there is only one elevator working this building.

Answers

See the attachment, if I copy if it into the Response field it gets all jumbled. Rename it to elevator.java

Odbc works on the ____ operating system.

Answers

The correct answer would be Windows.

To create a default value for a parameter in the parameter list of a function, you code a/an ________________ sign after the parameter name followed by the default value.

Answers

Assigning a default value to parameter makes it optional and such must come last in the list. example (c#):

void GetStudents(string gender, int page=1, int size = 10){

// body
}
In the above example, gender is a required while page and size are optional.

Parameters that can be supplied but are not necessary are known as optional parameters. This enables more customized functions without requiring parameters that many users won't need.

What default value for a parameter in the parameter list?

A constant expression serves as the optional parameter's default value. Always defined at the end of the parameter list are the optional parameters. Or, to put it another way, the optional parameter is the last parameter of the method, constructor, etc.

Swift does, however, include another data type called Optional, whose default value is null ( nil ). When you want a variable or constant to have no value, you can use optional. A value may be present in an optional type or not (a null value).

Therefore, If a calling procedure does not supply a parameter, the optional parameters must give default values that can be used.

Learn more about default value here:

https://brainly.com/question/27960308

#SPJ2

Why do you feel an organization has multiple layers of security in place to protect its operation?

Answers

The purpose of including multiple layers in your network security is to make sure that each single defense component has a backup in the case of a flaw or missing coverage. The individual strengths of each layer also cover any gaps that other defenses may lack.

With this assumption in mind, each individual layer in a multi-layered security approach focuses on a specific area where the malware could attack. By working in concert, these layers of security offer a better chance of stopping intruders from breaching company networks than using a single solution.

The types of security layers you can use in your network defense include:

Web protectionPatch managementEmail security and archivingVulnerability assessment and analyticsAntivirus softwareData encryptionFirewallsDigital certificatesAnti-spam and spam filtersPrivacy controls

Having multiple layers of security in place is crucial for MSPs who protect data at all levels and across numerous applications and devices. Not only should data stay safe, but so should the methods of communication and the network where information is transferred.

The purpose of the ____________ element is to provide a method for a browser to display different images depending on specific criteria indicated by the web developer

Answers

Answer: <img>

Explanation:
The <img> element is used in HTML to display an image.
The <img> element has several attributes that point to different image types.
(a) It has a "src" attribute which points to the location of the image.
(b) It has an "alt" attribute that displays descriptive text in case the image cannot be displayed.
(c) It has "width" and "height" attributes for scaling the displayed image.

Java programming 4.26 write a program that displays the value of e for i

Answers

Do it yourself. OOOOOOOOOOOOOOOOOOOO

Identify and describe the difference between: an internet connected computer's numerical address and the human readable name for that computer.

Answers

An internet connected computer's numerical address is also called Internet Protocol address or commonly known as IP address. It is a numerical label assigned to each device connected to a computer network that uses the Internet Protocol for communication. IP address serves two principal functions: location addressing and host or network interface identification. While the human readable name for that computer is commonly known as Computer Name or Machine Address, it is the identification of the device. Now, we can conclude the difference between an IP address and a machine address: In brief, the machine address is only one part of the IP address that identifies a location of a machine, and the IP address consists of numbers which identify a network as well as a computer machine.

Describe a scenario for which a find unmatched query could be used.

Answers

Unmatched query can be used in a situation where we need to relate two table that do not have a common field to compare to. For example consider a table consist of list of products and their code as Pname and PID. the second table consist of Code and Cost of that product. If we want to find the cost of a product, unmatched query can be used.

Ron wants to install an energy efficient and long lasting device for lighting in his new home. Which device should he use?

Answers

Ron will most likely want to buy tube lights since that is a good energy saver.

Answer:

Led Tube Lights

Explanation:

Tubular lamps are commonly used in spaces where lighting is needed for long periods of time. Therefore, one of the most important factors for store managers when choosing the most appropriate type of lamp is their consumption.

The difference between LED tubes and fluorescent tubes is significant, although not apparent when comparing the consumption of only one lamp. However, when making the calculation considering the total number of them, the energy consumption of fluorescent lights can even double.

Other benefits of LED tube

Turn on instantly; does not require reactors, consuming less energy;Unlike fluorescent, it does not emit ultraviolet and infrared rays;Can have up to 50,000 hours of service life, reducing the need for maintenance;It is made of sturdy material and can withstand shock and vibration;Its intensity can be controlled;Opens up the possibility of implementing sensors.

A _______ file is a type of vector graphics file created specifically for Windows.

Answers

A .wmf file is a type of vector graphics file created specifically for Windows.

Answer:

A WMF file is a type of vector graphics file created specifically for Windows.

Explanation:

A Windows Metafile (WMF) contains a special type of graphic file used on Microsoft operating systems. It does not contain a pixel by pixel representation of the image, but instead uses commands to recreate the image. The most common place to view WMF files is in your clip art folders. A simple way to view a WMF file is to open it with the Paint program that comes with Windows.

Which command would you use in a script to parse out entries that contain the word "those" from a file named config in a folder named "diet" beneath the /etc directory?

Answers

I would use the grep command on the path /etc/diet/config and pass in the word "those" as an argument in order to print out all the lines that have that word in them.

Write a code that prompts the user to enter a number in the range of 1 through 100 and validates the input python

Answers

foo = int( input( "Enter a number between 1 and 100 inclusive: " ) )
if( ( foo > 100 ) or ( foo < 1 ) ):
    print( "Stoopid!" )
    exit( 1 )

The code that prompts the user to enter a number in the range of 1 through 100 and validates the input python the programming is givn below.

What is the motive of programming?

It is to discover a collection of commands with the intention to automate the overall performance of a task (which may be as complicated as a running system) on a computer, frequently for fixing a given problem.

Foo = int(input("Enter a variety of between

1 and one hundred inclusive: "))

if((foo>10)or(foo<1)): print("Stoopid!") exit(1)

Read more about the input :

https://brainly.com/question/1786465

#SPJ2

Other Questions
what is adding and subtracting decimals Choose the correct French equivalent of the question: Is she going to run?A: Va-elle courir?B: Elle court, n'est-ce pas?C: Est-ce qu'elle courir?D: Va-t-elle courir? Vice president Thomas Marshall once told the following story of two brothers. "One ran away to sea; the other was elected vice president, And nothing was heard of either of them again" Which of the following best expresses the meaning of this story?1. Being vice president is a dead-end job that dooms a person to obscurity2. Vice presidents are rarely seen because of the high security surrounding the office3. Being vice president is a high-profile job that keeps a person constantly busy4. Vice presidents are rarely heard from because they must travel constantly The increase in the personal consumption expenditures ______ aggregate demand. The two issues always on the minds of princes in Renaissance Italy were __________ and __________. Please help fast thank you!1. Which dynasty used the Mandate of Heaven to justify its replacement of the previous dynasty?a. Guptab. Mauryac. Shangd. Zhou2. How did the Huang River's nickname, River of Sorrows, reflect its impact on early Chinese civilizations?a. Many boats, cargos, and crews were lost trying to naviage its treacherous waters.b. When it broke through dikes, it ruined crops, which then caused terrible famines.c. By accident tradition, funeral processions for nobles traveled along the river to cemeteries. d. The path of its riverbed could shift unexpectedly, carrying away entire villages or towns. 3. In what key way did Confucianism shape the Han Dynasty?a. missinoary efforts to spread belief system to other landsb. persecution of alternative worldviewsc. rejection of trade and poilitcal isloation d. use of a civil service system based on merit What was the impact of the martellus map on the voyages of christopher columbus? What is the main purpose of the following sentence? All living things are composed of cells. to entertain to settle to persuade to inform What spots on the stem allow a stem to exchange gases? how did marcus garvey respond to race relations To which period does the Lanthanide series belong? Actinides? In which ways were the Eastern Orthodox and Roman Catholic Churches alike? Select all that apply.1.Both allowed priests to marry.2.Both recognized Easter as the most important holy day.3.Both celebrated the sacraments.4.Both accepted the patriarchs authority over all Christians. HELP PLEASE What Property Of Addition is this ?3 + (8 + a) = (8 + a) + 3 What german airship was used in the bombing raids by the germans ww1? A ringtone company charges $9 a month for the service plus $1.25 for each ringtone downloaded.What is the graph of the equation that models the total fees per month? The length of a copper wire is 1.6 centimeters (cm). What is the length of this wire in meters (m)? there are 2 more than 3 times as many parrots as finches at the pet store, if there's a total of 18 parrots and finches, how many are parrots and how many are finches Convert 30 feet per second to miles per minute.5280 ft = 1 miRound to the nearest hundredth.Enter your answer in the box.____mi/min 9)which executive department plays a pivotal role in shaping united states foreign policy and opening embassies around the world?A)the department of homeland securityB)the state departmentC)the central intelligence agencyD)the department of the interior Which of the following represents x =1/2 y written in general form? Steam Workshop Downloader