Answer:
The code to this question can be given as:
class Sample //define class Sample.
{
//define private member.
private int count;
private String name;
Sample(int count, String name) //define parameterized constructor.
{
this.count = count; //holding values.
this.name = name;
}
public int getCount() //define function with returntype.
{
return count;
}
public String getName() //define function with returntype.
{
return name;
}
public void setCount(int count) //define function with no returntype.
{
this.count = count;
}
public void setName(String name) //define function with no returntype.
{
this.name = name;
}
}
Explanation:
In the above code firstly we define the class that is Sample. In this class, we define two variable that is not public. Then we define the constructor. This code we parameterized constructor because it takes the values as a parameter. To assign the value in the constructor we use this keyword. Then we used the get and set method. when we use get method because it returns a value (getcount and getname). When we use the set method it does not return any value (setcount and setname).
Answer:
The Special Function Register (SFR) is the upper area of addressable memory, from address 0x80 to 0xFF.
Explanation:
The Special Function Register (SFR) is the upper area of addressable memory, from address 0x80 to 0xFF.
Reason -
A Special Function Register (or Special Purpose Register, or simply Special Register) is a register within a microprocessor, which controls or monitors various aspects of the microprocessor's function.
Answer:
c
Explanation:
It preloads the apps and softwares that you use most into thr memory so that they can boot up faster.But it consumes more ram.
Answer:
c) search operators
Explanation:
Words or symbols that help you narrow down your search are called search operators. This ultimately implies that, search operators are commands and special characters (words or symbols) which help users to filter and refine their search engine results by making the search more precise and specific in nature. Thus, search operators only provide search engine results that are relevant to what a user is searching for or it narrow down the focus of a search.
Hence, search operators comprises of commands and special characters (words or symbols) such as AND, OR, NOT, "", -, +, *, .., :, etc used for narrowing down search engine results.
For instance, typing "file.mp3" in a search engine would only present results that are in mp3 formats.