The correct answer is digital audio
Answer:
The <header>, <footer>, <nav> and <article> elements are the correct answer of this question.
Explanation:
The < header > tag represents an explanatory content container, or a collection of navigational links.
<u>For example</u>:- header {
display: block;
}
The <footer> tag contain sitemap,copyright information,back to top links.it contains details about the item which it contains.
<u>For example</u>:- footer {
display: block;
}
The tag < nav > specifies a collection of links to a navigation.
<u>For example</u>:- nav {
display: block;
}
The <article> tag specifies independent, self-contained content.
<u>For example</u>:- article {
display: block;
}
Answer:
The font-style property allows you to make text appear italicized (i.e. sloped, or slanted).
em {
font-style: italic;
}
Explanation:
This property accepts one of three possible values: normal, italic, and oblique.
If a given font family has an italic or oblique face embedded, the browser will select that face. If no italic or oblique face is available, the browser will mimic the sloping effect. If italic is defined and there is no italic face available, the browser will look for an oblique face before it tries to mimic the italic. The same applies to oblique; it too will look first for an italic face.
To prevent the browser from adding a mimicked, or synthesized, version of the italic or oblique face, you may use the font-synthesis property (if supported).
Answer:
Explanation:
6.....................................
void insertToPlace(struct node * &T,int val,int place)
{
struct node * q=T;
int count =1;
while(T->next!=NULL&&count<place-1)
{
T=T->next;
count++;
}
if(T->next==NULL)
{
struct node * p = (struct node *)new struct node;
p->data=val;
p->next=NULL;
T->next=p;
}
else
{
struct node * p = (struct node *)new struct node;
p->data=val;
p->next=T->next;
T->next=p;
}
T=q;
}
Answer:
Option (B) i.e., Sensor is the correct answer.
Explanation:
The following option is true because the sensor is both types of device that is input as well as output that gather information or data from the environment directly.
Option A i.e., Audio input is incorrect because the audio input that device which records the voice, music or audio in the form of data.
Option C i.e., Trackball is incorrect because trackball record the movement of the ball in which direction we move that ball, in that direction the cursor is moving.
Option D i.e., Touch Screen is incorrect because it is the device that works by the touch of the human being such as touchpad, mobile phones, etc.