Answer:
3) A Single linked list is a sequence of elements in which every element has link to its next element in the sequence.
DATA LINK
DATA stores actual value , LINK stores address of next node
As per information given in question, letters at the even addresses are items in linked list and the odd addresses will be used as links.
Even Address Odd Address
12 (Stores 't') 13 (Used as link)
14 (Stores 'm') 15 (Used as link)
16 (Stores 'a') 17 (Used as link)
18 (Stores 'r') 19 (Used as link)
20 (Stores 's') 21 (Used as link)
Numbers represented by circle are addresses of respective nodes. Here Front or Head has address 16. Which represents the Head Node.
Following image represents the word "smart" with respective nodes and their addressing.
Numbers represented by circle are addresses of respective nodes.
The head pointer is: 20
The purpose of OPPA is to make its mandatory for companies to disclose what kind of information they will acquire from their users.
D. It makes it mandatory for companies to disclose what kind of information they will acquire from their users.
<u>Explanation:</u>
OPPA is a Online Privacy Protection Act. It gathers data from individuals who use or visit your site and use it to execute business with them. A few organizations use client data for their very own inner showcasing purposes, for example, to figure out what sort of items or administrations to offer whenever the client utilizes the site or to create focused on arrangements of clients who have similar likes or aversions.
It makes it obligatory for organizations to reveal what sort of data they will secure from their clients. It likewise incorporates data, for example, name, road address, email address, phone number, date of birth, Social Security number, or different insights concerning an individual that could enable a customer to be reached physically or on the web.
Answer: Layout
Explanation: Layout is the basic interface design between the flow in a system that is in compact form so that user can access it easily. It also manages the flow of the interface pattern in whichever direction( top, left, bottom, right ) accordingly in minimal way. It also lets the user take the control over the panel interface that are in the display or may be hidden form.
Answer:
// here is code in Java.
// package
import java.util.*;
// class definition
class Main
{
// method that return sum of two sale value
public static int Add(int euroSales,int asiaSales)
{
// return the sum
return euroSales+asiaSales;
}
//main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// variables
int euroSales=100;
int asiaSales=150;
int eurasiaSales;
// call the function
eurasiaSales=Add(euroSales,asiaSales);
// print the sum
System.out.println("total sale is:"+eurasiaSales);
}catch(Exception ex){
return;}
}
}
Explanation:
Declare and initialize two variables "euroSales=100" and "asiaSales=150". Declare another variable eurasiaSales. Call the method Add() with euroSales and asiaSales as parameter. This method will add both the value and return the sum.This sum will be assigned to variable eurasiaSales.Then print the sum.
Output:
total sale is:250