Explanation:
2.2 k omega= ___2200__ omega
here k is kilo so simply multiply by 1000
Answer:
Using linkedlist on C++, we have the program below.
Explanation:
#include<iostream>
#include<cstdlib>
using namespace std;
//structure of linked list
struct linkedList
{
int data;
struct linkedList *next;
};
//print linked list
void printList(struct linkedList *head)
{
linkedList *t=head;
while(t!=NULL)
{
cout<<t->data;
if(t->next!=NULL)
cout<<" -> ";
t=t->next;
}
}
//insert newnode at head of linked List
struct linkedList* insert(struct linkedList *head,int data)
{
linkedList *newnode=new linkedList;
newnode->data=data;
newnode->next=NULL;
if(head==NULL)
head=newnode;
else
{
struct linkedList *temp=head;
while(temp->next!=NULL)
temp=temp->next;
temp->next=newnode;
}
return head;
}
void multiplyOddPosition(struct linkedList *head)
{
struct linkedList *temp=head;
while(temp!=NULL)
{
temp->data = temp->data*10; //multiply values at odd position by 10
temp = temp->next;
//skip odd position values
if(temp!= NULL)
temp = temp->next;
}
}
int main()
{
int n,data;
linkedList *head=NULL;
// create linked list
head=insert(head,20);
head=insert(head,5);
head=insert(head,11);
head=insert(head,17);
head=insert(head,23);
head=insert(head,12);
head=insert(head,4);
head=insert(head,21);
cout<<"\nLinked List : ";
printList(head); //print list
multiplyOddPosition(head);
cout<<"\nLinked List After Multiply by 10 at odd position : ";
printList(head); //print list
return 0;
}
Answer:
Internet of things
Explanation:
This is a good example where the application of technology results are applied to human made things.
Internet of things (IOT), involves the application of one technology results–the internet, embedded into devices such as refrigerator, television etc so as to send and receive data (digital instructions). Such applications of technology results has revolutionized the way we use "human made things".
An ideal gas initially occupying 0.020 m3 at 1.0 MPa is quasistatically expanded inside a piston-cylinder device at a constant pressure until its volume doubles. Next the expansion is continued at constant volume till the pressure reaches half of the initial pressure. Finally it is brought back to the initial state in a polytropic process with exponent n=1.6
a. Draw the processes on a P-v diagram and calculate the total work.
b. Calculate the total heat transfered, what is the difference between the initial and final temperature?an answer is to present a question of how you are not able to join the world and how you can help please answer
Answer:
Simply put, the grade or grading around your house is the level of the ground. The ground level and how it's graded is the deciding factor of where storm water will flow.
Explanation: