The ______ is an optional key that may be present on any PIV card, does not require PIN entry, and whose purpose is to authenticate the card and therefore its possessor.

Answers

Answer 1

Answer:

CAK

Explanation:

Card Authentication Key


Related Questions

instructor is describing a component that is always located on the CPU and accelerates the processing of instructions. Which component is being discussed?

Answers

Answer:

Cache memory.

Explanation:

The cache memory is the component used to accelerate the processing of instructions. it is called as Level 1 cache or internal cache. L1 cache operates at the same speed as the processor.Few processors have  two L1

caches; of which,  one stores instructions, and the other one  stores data.

Jonah needs to add a list of the websites he used to his report. He opens the "Websites" document and copies the information. He now needs to change his view to the "Renaissance" report to add the information before saving his report. What are the steps, in order, that Jonah needs to follow to view the "Renaissance" report?

Answers

Answer:

1.Go to the ribbon area

2.Click on the View tab.

3.Click on the Switch Windows tab.

4.Click on the "Renaissance" report

Explanation:

Answer:

1.Go to the ribbon area

2.Click on the View tab.

3.Click on the Switch Windows tab.

4.Click on the "Renaissance" report

Explanation:

just took it

Which section, or hive, in the Windows Registry stores information about drag-and-drop rules, program shortcuts, the user interface, and related items?

Answers

Answer:

The correct answer will be "HKEY_CLASSES_ROOT (HKCR) ".

Explanation:

The Windows Registry seems to be an environment inside the operating system applications of Microsoft Windows that holds certain details as to whether machine memory becomes configured up, which applications are to be launched whenever the operating process becomes booted, which hardware is connected and the device solutions were selected.This HKCR is indeed a Windows Registry registration system hive but instead incorporates organization file extension additional data, and also some data from a conceptual identification number, class ID, but mostly connectivity ID. It  includes references again for correct file identifier as well as COM class contact information including such IIDs.

Q8:What is the correct way to declare an integer named age? ----- , ---- , ----- , ----- . hint= use this (variable , integer ) .

Answers

Answer:

age=int(14)

Explanation:

When declaring an integer variable you use int which stands for integer. You place the number (age) inside the parentheses of int.

What are the 4 main components to developing a portfolio

Answers

Answer:

Step 1: Determining Asset Allocation

Step 2: Achieving the Portfolio

Step 3: Reassessing Weightings

Step 4: Rebalancing Strategically

The Bottom Line

Explanation:

Which type of systems development is characterized by significantly speeding up the design phase and the generation of information requirements and involving users at an intense​ level? .

Answers

Answer:

Joint Application Development (JAD)

Explanation:

Joint Application Development is a method of application development that  lay emphasis on the up-front aspect of the application development cycle whereby steady communication between the designers and the intended users of the application under development by coming together in collaborative workshop styled discussions known as JAD sessions involving the mediators, facilitator, observers, end users, experts, and developers. As such with JAD process application development result in fewer errors high quality and is completed in lesser time.

What do digital signals tum sounds into?
A. analog signals
B. interference
C. continuity
D. zeros and ones​

Answers

Digital signals turn sounds into analog signals

When using Windows Deployment Services, you do not need to have the installation media ready and sit at the server console as Windows performs the task of OS installation.

a. True
b. False

Answers

Answer:

True

Explanation:

because

A purpose of the __________ in a vascular plant is to connect other parts of the plant. A. leaves B. stem C. seeds D. roots

Answers

Answer:

I thinkkkk its D

Explanation:

Answer: C.C is correct answer

Explanation:

Calories, sugars, and total fats could exceed the declared calorie value on the menu by only what percentage?

Answers

Answer:

20

Explanation:

If you wanted to find out whether an integer contained an even number of 1 bits, which status flag would be useful

Answers

Answer:

The correct answer will be "Parity".

Explanation:

Parity seems to be a methodology that tests when information is transferred or missing or overwritten when something is transferred between one storage location to another, and then it is communicated between processors or devices.It would be used whilst also contrasting the container as well as the aggregated parity to evaluate or dual inspect for inaccuracies.

What is a common open source operating system

MacOS

Linux

IOS

Windows 10

Answers

Linux. But some distros aren't open source... Example: Ubuntu OS

Linux a common open-source operating system is the most prominent example. The correct option is an option (B).

Linux is an open-source Unix-like operating system kernel that serves as the foundation for various Linux distributions (commonly referred to as "distros"). Some popular Linux distributions include Ubuntu, Fedora, Debian, and CentOS, among others. These distributions are built on top of the Linux kernel and provide a complete operating system with additional software and tools.

Windows 10, developed by Microsoft, is also not an open source operating system. It is a proprietary operating system that is widely used on personal computers.

So, Linux is the most prominent example. The correct option is an option (B).

To know more about Linux:

https://brainly.com/question/32161731

#SPJ4

Write a Java program that generates the second, third, and fourth powers of a list of whole numbers from 1 to n where n is input by the user. Write a Java program to do this. • First, ask the user for the largest of the whole numbers to use (n). • Second, output column headers (see below, n, n^2, n^3, n^4). • Then, use a for loop to iterate from 1 to n, computing each of that loop variable to the second power, third power and fourth power, respectively. NB: The values should be stored in a 2dimensional array. Display the values as shown below: Sample output

Answers

Answer:

//import the Scanner class

import java.util.Scanner;

//Begin class definition

public class Powers{

       //Begin the main method

    public static void main(String []args){

       

        //Create an object of the Scanner class

        //to allow for user inputs

       Scanner input = new Scanner(System.in);

       

        //Prompt the user to enter the largest of the whole number

       System.out.println("Enter the largest of the whole numbers to use");

       

        //Receive user input using the Scanner object

        //and store in an integer variable

       int n = input.nextInt();

       //Create a two-dimensional array using the user input

       int [][] powerlist = new int [n][4];

       

       //Create an outer for loop

       //to loop as many times as the number entered by the user

       for (int i = 0; i < n; i++){

           //Create an inner loop to find

           //the powers of each of the numbers

           for(int j = 0; j < 4; j++){

               //Typecast the value returned from the Math.pow() function

               powerlist[i][j] = (int) Math.pow((i+1), (j+1));

               

           }

           

       }

       

       //Print out the header of the table

       //\t will print a tab character.

      System.out.println("n" + "\t\t" + "n^2" + "\t\t" + "n^3" + "\t\t" + "n^4");

       

       //Print out the elements in the two dimensional array

      for (int i = 0; i < powerlist.length; i++){

         

          for(int j = 0; j < powerlist[i].length; j++){

               //Separate each term by two tabs

              System.out.print(powerlist[i][j] + "\t\t");

           }

           

           System.out.println();

           

       }

       

    }

}

Sample Output:

Enter the largest of the whole numbers to use

4

n  n^2  n^3  n^4

1  1  1  1  

2  4  8  16  

3  9  27  81  

4  16  64  256

Explanation:

The code above has been written in Java and it contains comments explaining important lines in the code. Please go through the comments.

For clarity, the actual lines of code have been written in bold face to distinguish them from comments.

Screenshots of the code and a sample output have also been attached to this response.

The program is an illustration of loops.

Loops are used to perform repetitive and iterative operations.

The program in Java where comments are used to explain each line s as follows:

import java.util.*;

public class Main{

public static void main(String []args){

   //This creates a scanner object

   Scanner input = new Scanner(System.in);

   //This prompts the user for the largest integer

   System.out.print("Largest:");

   //This gets input for the prompt

   int n = input.nextInt();

   //This prints the output header

      System.out.println("n" + "\t" + "n^2" + "\t" + "n^3" + "\t" + "n^4");

      //This iterates from 1 to n

      for (int i = 1; i <= n; i++){

          //This iterates through the powers

          for(int j = 0; j < 4; j++){

              //This displays each output

              System.out.print((int) Math.pow((i), (j+1))+"\t");

          }

          //This prints a new line

          System.out.println();

      }

   }

}

Read more about similar programs at:

https://brainly.com/question/5419214

Select the proper ergonomic keyboarding techniques.
-Push firmly on the keys and hold them down for long periods.
-Your arms should be comfortable at your side, forming a 45° angle with your upper arms, and your forearms should be parallel to the floor.
-Position the keyboard directly in front and close to you so you don't have an excessive reach.
-If you are working for a long period of time, alternate between sitting and standing.
- -Take breaks to stretch.
-Keep your shoulders, arms, hands and fingers relaxed.
-Position your wrists straight or in neutral position while typing.
-Adjust your chair height and position so your feet rest flat on the floor, or add a footrest to compensate for a higher chair.
-Adjust the keyboard height so that your shoulders can relax and your arms are straight in front of you.
-Do not rest your hand on the mouse when resting. Rest your hands in your lap when not working.

Answers

Answer:

The correct options are;

-Position the keyboard directly in front and close to you so you don't have an excessive reach

-Keep your shoulders, arms, hands and fingers relaxed

-Position your wrists straight or in neutral position while typing

-Adjust your chair height and position so your feet rest flat on the floor, or add a footrest to compensate for a higher chair

-Adjust the keyboard height so that your shoulders can relax and your arms are straight in front of you

Explanation:

1) It is important to keep the fingers in a relaxed position when typing

2) Ensure to type in a tapping fashion when typing rather than pressing on the keys of the keyboard

3) The fingernails should be kept short when frequent typing is done

4) The wrist is better kept above the keyboard than resting on it

5) Ensure that the mouse is easily reached.

Answer:The correct options are;

-Position the keyboard directly in front and close to you so you don't have an excessive reach

-Keep your shoulders, arms, hands and fingers relaxed

-Position your wrists straight or in neutral position while typing

-Adjust your chair height and position so your feet rest flat on the floor, or add a footrest to compensate for a higher chair

-Adjust the keyboard height so that your shoulders can relax and your arms are straight in front of you

Explanation:

What does it mean for a module to be ""coherent?"" Why is this important? What are the advantages of coherence? What are the disadvantages of incoherent modules?

Answers

Answer:

Following are the answer to this question:

Explanation:

Coherent means, in some kind of a communication process,  that transmits the side and well the receiver side generally use those common features, which is the provider used for modulation.  

Its frequency only at the end and end of both the transponder is the same.  

It's also important to recover from the modulated signal to its original message signal.

The advantage of coherence clarifies the system architecture and signal transmission throughout the carrier, as well as the carrier, is not to be regenerated on the receiver side.  The disadvantage of the incoherent modules is being more difficult to build than the Coherent modules.

What music is best for calming down and relaxing?

Answers

could be lofi hip hop or chill type music beats like that or soft jazz

Why was language important during the ancient times in regards to visual representation

Answers

Answer:

Explanation:

It was important back then because if their was an enemy attacking they could use their language instead of maybe shouting or throwing stuff and its easier to use language because you don't have to cause a ruckus.

To protect the data, either the signature alone or the signature plus the message are mapped into printable ASCII characters using a scheme known as ________ or base64mapping.

Answers

Answer:

Base64 encoding

Explanation:

Base64 encoding is a binary to text encoding scheme. Binary data is represented in a printable ASCII string format by translation into radix-64 representation.

Base64 mapping works with a 64-character subset of US ASCII charset. The 64 characters are mapped to an equivalent 64-bit binary sequence. An extra 65th character is used for padding.

An alphabet is assigned to each of the 6-bit binary sequences from 0 to 63. The 6-bit binary to alphabet mapping is used in the encoding process.

Where can you go in QuickBooks Online to import a list of products and services? Select the Quick Create icon and under the Tools column, select Import Data, then Products and Services Select the Gear icon and under the Tools column, select Import Data, then Products and services Select the Accountant toolbox and under the Tools column, select Import Data, then Products and services

Answers

Answer:

Select the Gear icon and under the Tools column, select Import Data, then Products and services

Explanation:

The steps to import list of products and services in QuickBooks Online

Select Settings Gear icon

Under Tools column, select Import Data.

Select Products and Services.

Import products and services page will appear.

Select Browse.  

Map your information of your file to corresponding fields in Quick Books .

Select Import.

write a watch java program​

Answers

Answer:

import javax.swing.*;  

import java.awt.*;  

import java.text.*;  

import java.util.*;  

public class DigitalWatch implements Runnable{  

JFrame f;  

Thread t=null;  

int hours=0, minutes=0, seconds=0;  

String timeString = "";  

JButton b;  

 

DigitalWatch(){  

   f=new JFrame();  

     

   t = new Thread(this);  

       t.start();  

     

   b=new JButton();  

       b.setBounds(100,100,100,50);  

     

   f.add(b);  

   f.setSize(300,400);  

   f.setLayout(null);  

   f.setVisible(true);  

}  

 

public void run() {  

     try {  

        while (true) {  

 

           Calendar cal = Calendar.getInstance();  

           hours = cal.get( Calendar.HOUR_OF_DAY );  

           if ( hours > 12 ) hours -= 12;  

           minutes = cal.get( Calendar.MINUTE );  

           seconds = cal.get( Calendar.SECOND );  

 

           SimpleDateFormat formatter = new SimpleDateFormat("hh:mm:ss");  

           Date date = cal.getTime();  

           timeString = formatter.format( date );  

 

           printTime();  

 

           t.sleep( 1000 );  // interval given in milliseconds  

        }  

     }  

     catch (Exception e) { }  

}  

 

public void printTime(){  

b.setText(timeString);  

}  

 

public static void main(String[] args) {  

   new DigitalWatch();  

         

 

}  

}  

Explanation:

difference between . RAM and hard disk​

Answers

Answer:

                  RAM                                                  HARD DISK    

RAM is used to store computer           | HDD, hard disk has permanent

programs and data that CPU needs     | storage and it is used to

in real time. RAM data is volatile          | store user specific data

and is erased once computer is          | and operating system files.

switched off.                                          |  

 

RAM - This means RANDOM ACCESS MEMORY and it’s used to store data which can’t last for a long period of time
For example when you calculate a value in a calculator the result is stored in the RAM and can be accessed in the history for a little period of time
HARD DISK - This is like the internal memory of the desktop it’s has higher capacity and can be used to store files and can be accessed after a long period of time. Hope this is okay

Anyone have Y.O.U.T.U.B.E or S.O.U.N.D.C.L.O.U.D. I need help putting my music and videos out there

Answers

Answer:

I do have Y.O.U.T.U.B.E.

Explanation:

1. Go on Y.O.U.T.U.B.E app.

2. Create account or log in to an existing account.

3. In the welcome screen, click the button of a camera on the top right corner next to your photo icon.

4. Click "Upload Video"

5. Then upload your video.

6. Add a description and details

7. Done! Just upload to on Y.O.U.T.U.B.E.

I hope this helps! Thank you:)

An administrator wants to give a user limited access rights in Windows Vista so that the user can install printers and create local user accounts. Which of the following accounts should the administrator create for the user?

a. Power user
b. Administrator
c. Standard
d. Guest

Answers

Answer:

a. Power user

Explanation:

In this situation, the administrator should create a power user account for the user. This is a user who uses advanced features of computer hardware, operating systems, programs, or websites that are not used by the average user as well as having similar permissions to an administrator without the ability to edit or view subscriptions or other users and they do not have access to billing information. Thus in this scenario, a power user account will allow the individual to complete all of their required tasks but at the same time preventing them from accessing administrator level rights.

do you guys know the addition and subtraction of binary numbersi need help in that

Answers

Answer:

The process of adding binary numbers is the same as the process adding decimal numbers which are the normal base 10 numbers with the difference being that in decimal numbers there are digits 1 to 9 and in binary numbers, there are only digits 1 and 0

So when we add binary numbers, we havr;

0 + 0 = 0

1 + 0 = 1

0 + 1 = 1

1 + 1 = 10

Why 1 + 1 = 10 is because, there are no 2s in binary number system, just like when we get from 0 to 9 in a decimal system we start again at 10

For binary subtraction, we have the following;

0 - 0 = 0

1 - 0 = 1

1  - 1 = 0

10 - 1 = 1 (from 1 + 1 = 10)

For example 1100₂ - 1010₂ = 0010₂

As shown below

Borrow 1

,     ↓

 1, 1 ¹0 0

 1, 0 1 0

, 0  0  1  0

The addition and subtraction of the binary number system are similar to that of the decimal number system. The only difference is that the decimal number system consists the digit from 0-9 and their base is 10 whereas the binary number system consists only two digits (0 and 1) which make their operation easier

Explanation:

A whole-house surge protector is installed ________. at the breaker panel on computers on each device and appliance at the power line from the street

Answers

Answer:

the breaker panel

Explanation:

A whole-house surge protector is installed at the breaker panel. This panel is the main distribution point for all of the electrical circuits in your home. This panel divides your home's electrical system into different sectors, each with its own surge protector. The electricity flows through an electrical meter, which records your electricity usage, and then into the panel, thus providing electricity to the entire household.

MS Excel is a powerful spreadsheet program that helps people with complex mathematical calculations. In what ways could you use Excel for personal, work and school purposes? Give an example for all three.

Answers

Answer:

Different uses of MS Excel in personal, work and school purposes are discussed below in details.

Explanation:

For personal: MS Excel is that the data can be obtained online from any portion of the world anytime and anyplace. It presents the ease of reaching the excel files over cell phones even if there is the availability of laptops.

For Work: MS Excel is being extensively used in the preparation of a large work project or celebration or marriage party, where it can keep track of different duties, applications, and deadlines, and to examine the plans of collaborators in the planning of the event.

For School purpose: students can improve their training skills to resolve basic and logical analytical & mathematical puzzles in excel.

What symbol do you use to choose a feature for your notes on Notion?

Answers

Answer:

The core element of notions is called blocks from where all the content bring forth. It has around fifty blocks.

Explanation:

Notion is the newest and fastest growing productivity tools for the recent memory. Notions has been reached out to the fight club meme status. When it is plain, it is easy to use and  start. But even after it many of the users have difficulty in using this tools when it comes to the powerful cases.

There are some steps through that one can start to use this tool for their productivity.

To built the blocks

To organize the notions.

To create the habit tracker

To move the pages in notions

Data base and the views.

Type / - type table - select online- full page

Universal Containers (UC) has multi-level account hierarchies that represent departments within their major Accounts. Users are creating duplicate Contacts across multiple departments. UC wants to clean the data so as to have a single Contact across departments. What two solutions should UC implement to cleanse their data? (Choose 2 answers) Use Data to standardize Contact address information to help identify duplicates Make use of the Merge Contacts feature of Salesforce to merge duplicates for an Account Use Workflow rules to standardize Contact information to identify and prevent duplicates Make use of a third-party tool to help merge duplicate Contacts across Accounts

Answers

Answer:

The answer is "first and the last choice".

Explanation:

For providing single contact across all department the Universal Containers (UC) uses two methods, that can be defined as follows:

It uses the standardized contact in data, that helps to identify multiple copies, of the Information and convert it into standardized contact information.  It uses the third-party tool, which helps to merge the duplicate contact information through accounts.

A(n) ________ virus runs a program that searches for common types of data files, compresses them, and makes them unusable.

Answers

Answer:

encryption

Explanation:

A(n) encryption   virus runs a program that searches for common types of data files, compresses them, and makes them unusable.

In a response of approximately 50 words, explain why it would be essential for the successful A/V technician to participate in additional coursework, presentations and seminars offered by equipment manufacturers as well as annual conferences attended by colleagues in the industry.

Answers

Answer:

The role of an audiovisual technician are to service, operate, maintain and repair and set electronic equipment meant for meetings, concerts, webinars, teleconferences, presentation, television and radio broadcasting. Audio technicians playback video recordings, they improve set lighting  they ensure proper graphics coordination and they mix audio sound boards making after-school activities essential to the audiovisual career development.

Explanation:

Other Questions
Find the length of UW(with a line over it) if W is between U and V, UV = 16.8 centimeters, and VW = 7.9 centimeters.Please explain as well. Later Societies of the Fertile CrescentWhat two civilizations was able to live in peace for many years? 75% of the M&Ms in a bag are red. There are 36 red in the class. How many M&M thebag? which of the following is NOT located on the help tab? Malaria, African sleeping sickness, and trichomoniasis are all examples of what type of pathogen? writing an essay on the role of the youth in building the nation What is France's largest city? Select True or False for the following statements about Heisenberg's Uncertainty Principle.A) It is not possible to measure simultaneously the x and z positions of a particle exactly. B) It is possible to measure simultaneously the x and y momentum components of a particle exactly. C) It is possible to measure simultaneously the y position and the y momentum component of a particle exactly. 1. Who was Frances Slocum in early Indiana? (1 point)She was a Potawatomi Native American who had to move west.She was a settler who became fully assimilated into Native American culture.She was an artist who painted scenes from early Indiana.She returned to her family in Pennsylvania after being captured by Native Americans. Given point P (3, 4). What is the distance of point P from (a) x axis (b) y axis? Several books are placed on a table. These books have a combined weight of 25 N and cover an area of 0.05 m2. How much pressure do the books exert on the table? The pressure the books apply to the table top is __ Pa. please need help!! module,string,battery,array.(find the odd man out) What is a budget, what is the goals of a budget, and what are the three functions of budgeting, including their chief criticisms Use the given confidence interval limits to find the point estimate and the margin of error E. 0.475 Luz, who is skydiving, is traveling at terminal velocity with her body parallel to the ground. She then changes her body position to feet first toward the ground. What happens to her motion? She will continue to fall at the same terminal velocity because gravity has not changed. She will slow down because the air resistance will increase and be greater than gravity. She will speed up because air resistance will decrease and be less than gravity. She will begin to fall in free fall because she will have no air resistance acting on her. Childers Company, which uses a perpetual inventory system, has an established petty cash fund in the amount of $400. The fund was last reimbursed on November 30. At the end of December, the fund contained the following petty cash receipts: December 4Freight charge for merchandise purchased$62 December 7Delivery charge for shipping to customer$46 December 12Purchase of office supplies$30 December 18Donation to charitable organization$51 If, in addition to these receipts, the petty cash fund contains $201 of cash, the journal entry to reimburse the fund on December 31 will include: difference between non professional and semi professional human resources Simplify the expression. : 5 + 4 x (8 - 6) square Choose the correct part of speech for each italicized word. Bob ran quickly to the top of the stairs. verb adjective adverb Which museum in Oklahoma would most likely display historical items from the great land run of 1889? A. Tom mix museum B. Harn homestead C. Gene Auty Oklahoma D. Red Earth Indian center