Answer:
Searching and sorting.
Explanation:
A data dictionary can be defined as a centralized collection of information on a specific data such as attributes, names, fields and definitions that are being used in a computer database system.
In a data dictionary, data elements are combined into records, which are meaningful combinations of data elements that are included in data flows or retained in data stores. This ultimately implies that, a data dictionary found in a computer database system typically contains the records about all the data elements (objects) such as data relationships with other elements, ownership, type, size, primary keys etc. This records are stored and communicated to other data when required or needed.
Basically, when a database management system (DBMS) receives data update requests from application programs, it simply instructs the operating system installed on a server to provide the requested data or informations.
Binary search is an efficient algorithm used to find an item from a sorted list of items by using the run-time complexity of Ο(log n), where n is total number of elements.
Binary search applies the principles of divide and conquer.
A primary key refers to a keyword found in a relational database which uniquely identifies each record contained therein.
A relational database can be defined as a type of database that is structured in a manner that there exists a relationship between its elements. Also, in a relational database, a single space within a row or column contains exactly one value.
Hence, the function of primary keys is that, primary keys facilitates searching and sorting because they act as unique identifiers.
Answer:
C.
Explanation:
The code provided in the question has many syntax errors. I have pasted a fixed version of the code below that fixes all the syntax errors but leaves the code as is. Using this code you can see that the error that is preventing the code from running properly is that
C. An error occurs during compilation because the getScreenWidth and getScreenHeight methods are not defined for the Computer object myPhone.
As you can see from the attached photo below, the code is failing to compile because the methods themselves are not able to be accessed by the myPhone object. This is happening during the compilation and thus causing the compilation to fail.
class Computer {
private String memory;
public Computer() {
memory = "RAM";
}
public Computer(String m) {
memory = m;
}
public String getMemory() {
return memory;
}
}
class Smartphone extends Computer {
private double screenWidth, screenHeight;
public Smartphone(double w, double h) {
super("flash");
screenWidth = w;
screenHeight = h;
}
public double getScreenWidth() {
return screenWidth;
}
public double getScreenHeight() {
return screenHeight;
}
}
public class Main{
//The following code segment appears in a class other than Computer or Smartphone
public static void main(String[] args) {
Computer myPhone = new Smartphone(2.55, 4.53);
System.out.println("Device has memory: " + myPhone.getMemory() + ", screen area: " + (myPhone.getScreenWidth()*myPhone.getScreenHeight()) +" square inches.");
}
}
A it has every letter if the alphabet because if you go one by one on the alphabet every letter is in it
The answer would be people