Answer:
The correct answer for the given question is "public"
Explanation:
The access modifier of constructor is public,private ,protected.
The access modifier of constructor should be public because to access the constructor outside the class .
Constructor can be called anywhere in program by using public access modifier .
The default access modifier in a class is public.
In the private access modifier constructor cannot be called anywhere in program.
We use public keyword to declared public constructor .
We use private keywors to declared private constructor.
Following are example to declared public and private constructor
class test
{
public test() // to declared public constructor
{
// statement
}
private test() // to declared private constructor
{
// statement
}
}
Answer:
Well,
Explanation:
Well, this topic is a very broad one and I'm not exactly sure what kind of information you' like provided, but I got a few ideas in mind.
While chatting online, a big letdown for most people is if you curse and especially if you do it excsessivley. Doing so will make you seem toxic and most people would just try to avoid you.
Talking about toxicity, being a toxic person online is petty and quite pathetic. Gloating and raising your ego won't make you any more of a liekable person online, or even in the real world.
Last but not least, another general rule of online chatting is to make sure you know who you're talking too. Talking to strangers online can be very dangerous, in some cases leading to things like pedophilia etc.
You can't guarantee that the computer displaying the page has all the fonts that you want. Generally for font-family (note the hyphen!) you list:
the font you REALLY want
a font that's similar and more common (you HOPE it has)
the family (like serif or san-serif)
Answer:
Rowspan is the correct answer for the above question.
Explanation:
'Rowspan' is an attribute of an HTML that is used to define how much a row of a table takes space. when a user wants to create a row that takes much space of any horizontal cell then he needs to define the property of Rowspan for that row. The 'Rowspan' attributes will use like this--
<TR><TD Rowspan="5"> content of a row </TD><TR>
where <TR> is a symbol to open the column tag, <TD> is a symbol which is used to open the row tag and </TR> is a symbol to close the column tag, </TD> is a symbol which is used to close the row tag.The above question asked a property through which a row can take more space then the property is 'Rowspan' which a user needs to define on the row tag which is described above.