In order to grant India access to a list of her friends, you should use a query by selecting name from person and use the inner join relationship on person.
<h3>What is query?</h3>
A query refers to a computational request for data that are saved in a database table, from existing queries, or even from a combination of both a database table and existing queries.
In this scenario, you can grant India access to be able to see a list of her friends with a structured query language (SQL) by selecting name from person and use the inner join relationship on person.
Read more on query here: brainly.com/question/25266787
Answer:
its easy
Explanation:
there are are 5 main rules
in binary there are 2 number 0 and 1
0 + 0 = 0
0 + 1 = 1
1+0=1
1+1=0 carry 1
e . g
1 1 1
1 0 1 0 1 0
+ 1 1 0 0 1 0
-------------------------
1 1 1 1 1 0 0
*in bold are the ones that you need to carry.
in decimal there are 10 possible numbers 0- 9
when you do 1 + 9 it becomes 10, this can be done easily, however if you do 1 + 9 in a table like above, you will get 0 for the first column and you will carry 1 to the next column .
in binary is the same idea but using on 2 numbers 1 and 0
e.g
1
1
+ 9
----------
1 0
*in bold are the ones that you need to carry.
hope it helps and good luck in your exam.
A symbol which should be used for entering a formula in a cell is: B. =.
<h3>What is Microsoft Excel?</h3>
Microsoft Excel can be defined as a software application that is designed and developed by Microsoft Inc., for analyzing and displaying spreadsheet documents by using rows and columns in a tabulated format.
<h3>What is a spreadsheet?</h3>
In Computer technology, a spreadsheet can be defined as a document which comprises cells that are arranged in a tabulated format with rows and columns. Also, a spreadsheet is typically used in various field to do the following on a data:
As a general rule, "B. =" is a symbol which should be used for entering a formula in a cell on a spreadsheet application such as Microsoft Excel.
Read more on spreadsheets here: brainly.com/question/4965119
#SPJ1
Answer:
//The Employee Class
public class Employee {
char name;
long ID;
//The constructor
public Employee(char name, long ID) {
this.name = name;
this.ID = ID;
}
//Method Get Person
public void getPerson (char newName, long newId){
this.ID = newName;
this.ID = newId;
}
//Method Print
public void print(){
System.out.println("The class attributes are: EmpName "+name+" EmpId "+ID);
}
}
The working of the class is shown below in another class EmployeeTest
Explanation:
public class EmployeeTest {
public static void main(String[] args) {
Employee employee1 = new Employee('a', 121);
Employee employee2 = new Employee('b', 122);
Employee employee3 = new Employee('c', 123);
employee1.print();
employee2.print();
employee3.print();
}
}
In the EmployeeTest class, Three objects of the Employee class are created.
The method print() is then called on each instance of the class.
The answer is True there is a keyboard like that here