SlideShare a Scribd company logo
Everything compiles and everything runs correctly except my insertionSort(). When the user
selects it in the app class it just list the last input the user made instead of showing the sorted list.
HELP PLEASE!
public void insertionSort(DoublyLinkedList dd)
{
DoublyLinkedList newLink = dd;
DoublyLinkedList temp = first;
if( extra == null ) //if empty list,
{
first = newLink;//newLink <--last
first.next = null;
first.previous = null;
}
else{
DoublyLinkedList previous=null;
DoublyLinkedList next=first.next;
DoublyLinkedList current=first;
for(int i=0;temp.next!=null;i++){
if(Integer.parseInt(temp.dData.getId()) < Integer.parseInt(newLink.dData.getId())){
current=temp;
previous=temp.previous;
next=temp.next;
}
temp=temp.next;}
newLink.previous=temp;
newLink.next=temp.next;
temp.next=newLink;
next.previous=newLink; }
Solution
Try this code:-
void insertionsort(node **d)
{
int n;
node *cur;
cur=*d;
if(cur->next==Null)
return;
node *ptr, *tmp;
cur=cur->next;
while(cur!=NULL)
{
n=0;
ptr=cur;
tmp=cur->prev;
cur=cur->next;
while(tmp!=NULL && tmp->data->ptr->data)
{
n++;
tmp=tmp->prev;
}
if(n)
{
ptr->prev->next=ptr->next;
if(ptr->next!=NULL)
ptr->next->prev=ptr->prev;
if(temp==NULL)
{
tmp=*d;
ptr->prev=NULL;
ptr->next=tmp;
ptr->next->prev=ptr;
*d=ptr;
}
else
{
tmp=tmp->next;
tmp->prev->next=ptr;
ptr->prev=tmp->prev;
tmp->prev=ptr;
ptr->next=tmp;
}
}
}
}
Everything compiles and everything runs correctly except my insertionS.docx

More Related Content

Similar to Everything compiles and everything runs correctly except my insertionS.docx

Implement the unsorted single linked list as we did in the class and .pdf
Implement the unsorted single linked list as we did in the class and .pdfImplement the unsorted single linked list as we did in the class and .pdf
Implement the unsorted single linked list as we did in the class and .pdf
arihantstoneart
 
Write a program to implement below operations with both singly and d.pdf
Write a program to implement below operations with both singly and d.pdfWrite a program to implement below operations with both singly and d.pdf
Write a program to implement below operations with both singly and d.pdf
thangarajarivukadal
 
Implement the member function void insertAfterHead(int d) of the Lin.pdf
Implement the member function void insertAfterHead(int d) of the Lin.pdfImplement the member function void insertAfterHead(int d) of the Lin.pdf
Implement the member function void insertAfterHead(int d) of the Lin.pdf
formicreation
 
This assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdfThis assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdf
EricvtJFraserr
 
C++ Background Circular Linked List A circular linked list.pdf
C++ Background Circular Linked List A circular linked list.pdfC++ Background Circular Linked List A circular linked list.pdf
C++ Background Circular Linked List A circular linked list.pdf
saradashata
 
DATA STRUCTURE USING C & C++
DATA STRUCTURE USING C & C++DATA STRUCTURE USING C & C++
DATA STRUCTURE USING C & C++
mustkeem khan
 
DSU C&C++ Practical File Diploma
DSU C&C++ Practical File DiplomaDSU C&C++ Practical File Diploma
DSU C&C++ Practical File Diploma
mustkeem khan
 
Background Circular Linked List A circular linked list is .pdf
Background Circular Linked List A circular linked list is .pdfBackground Circular Linked List A circular linked list is .pdf
Background Circular Linked List A circular linked list is .pdf
aaseletronics2013
 
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdfSOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
arccreation001
 
Hi,I have added the methods and main class as per your requirement.pdf
Hi,I have added the methods and main class as per your requirement.pdfHi,I have added the methods and main class as per your requirement.pdf
Hi,I have added the methods and main class as per your requirement.pdf
annaelctronics
 
Exception to indicate that Singly LinkedList is empty. .pdf
  Exception to indicate that Singly LinkedList is empty. .pdf  Exception to indicate that Singly LinkedList is empty. .pdf
Exception to indicate that Singly LinkedList is empty. .pdf
aravlitraders2012
 
C# code pleaseWrite a program that creates a link list object of 1.pdf
C# code pleaseWrite a program that creates a link list object of 1.pdfC# code pleaseWrite a program that creates a link list object of 1.pdf
C# code pleaseWrite a program that creates a link list object of 1.pdf
duttakajal70
 
Java AssignmentUsing the ListNode.java file below Write method.pdf
Java AssignmentUsing the ListNode.java file below Write method.pdfJava AssignmentUsing the ListNode.java file below Write method.pdf
Java AssignmentUsing the ListNode.java file below Write method.pdf
ambersushil
 
There are a couple of new methods that you will be writing for this pr.pdf
There are a couple of new methods that you will be writing for this pr.pdfThere are a couple of new methods that you will be writing for this pr.pdf
There are a couple of new methods that you will be writing for this pr.pdf
aamousnowov
 
In this assignment you will implement insert() method for a singly l.pdf
In this assignment you will implement insert() method for a singly l.pdfIn this assignment you will implement insert() method for a singly l.pdf
In this assignment you will implement insert() method for a singly l.pdf
fantasiatheoutofthef
 
Write a function to merge two doubly linked lists. The input lists ha.pdf
Write a function to merge two doubly linked lists. The input lists ha.pdfWrite a function to merge two doubly linked lists. The input lists ha.pdf
Write a function to merge two doubly linked lists. The input lists ha.pdf
info706022
 
For this micro assignment, you must implement two Linked List functi.docx
For this micro assignment, you must implement two Linked List functi.docxFor this micro assignment, you must implement two Linked List functi.docx
For this micro assignment, you must implement two Linked List functi.docx
mckellarhastings
 
Using visual studio 2022- a C# windows form application- and your Doub.pdf
Using visual studio 2022- a C# windows form application- and your Doub.pdfUsing visual studio 2022- a C# windows form application- and your Doub.pdf
Using visual studio 2022- a C# windows form application- and your Doub.pdf
acteleshoppe
 
Qestion Please add pre-condition, post-conditions and descriptions .pdf
Qestion Please add pre-condition, post-conditions and descriptions .pdfQestion Please add pre-condition, post-conditions and descriptions .pdf
Qestion Please add pre-condition, post-conditions and descriptions .pdf
arihantmobileselepun
 
In C++Write a recursive function to determine whether or not a Lin.pdf
In C++Write a recursive function to determine whether or not a Lin.pdfIn C++Write a recursive function to determine whether or not a Lin.pdf
In C++Write a recursive function to determine whether or not a Lin.pdf
flashfashioncasualwe
 

Similar to Everything compiles and everything runs correctly except my insertionS.docx (20)

Implement the unsorted single linked list as we did in the class and .pdf
Implement the unsorted single linked list as we did in the class and .pdfImplement the unsorted single linked list as we did in the class and .pdf
Implement the unsorted single linked list as we did in the class and .pdf
 
Write a program to implement below operations with both singly and d.pdf
Write a program to implement below operations with both singly and d.pdfWrite a program to implement below operations with both singly and d.pdf
Write a program to implement below operations with both singly and d.pdf
 
Implement the member function void insertAfterHead(int d) of the Lin.pdf
Implement the member function void insertAfterHead(int d) of the Lin.pdfImplement the member function void insertAfterHead(int d) of the Lin.pdf
Implement the member function void insertAfterHead(int d) of the Lin.pdf
 
This assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdfThis assignment and the next (#5) involve design and development of a.pdf
This assignment and the next (#5) involve design and development of a.pdf
 
C++ Background Circular Linked List A circular linked list.pdf
C++ Background Circular Linked List A circular linked list.pdfC++ Background Circular Linked List A circular linked list.pdf
C++ Background Circular Linked List A circular linked list.pdf
 
DATA STRUCTURE USING C & C++
DATA STRUCTURE USING C & C++DATA STRUCTURE USING C & C++
DATA STRUCTURE USING C & C++
 
DSU C&C++ Practical File Diploma
DSU C&C++ Practical File DiplomaDSU C&C++ Practical File Diploma
DSU C&C++ Practical File Diploma
 
Background Circular Linked List A circular linked list is .pdf
Background Circular Linked List A circular linked list is .pdfBackground Circular Linked List A circular linked list is .pdf
Background Circular Linked List A circular linked list is .pdf
 
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdfSOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
SOURCE CODEimport java.util.Iterator;public class CircularLinke.pdf
 
Hi,I have added the methods and main class as per your requirement.pdf
Hi,I have added the methods and main class as per your requirement.pdfHi,I have added the methods and main class as per your requirement.pdf
Hi,I have added the methods and main class as per your requirement.pdf
 
Exception to indicate that Singly LinkedList is empty. .pdf
  Exception to indicate that Singly LinkedList is empty. .pdf  Exception to indicate that Singly LinkedList is empty. .pdf
Exception to indicate that Singly LinkedList is empty. .pdf
 
C# code pleaseWrite a program that creates a link list object of 1.pdf
C# code pleaseWrite a program that creates a link list object of 1.pdfC# code pleaseWrite a program that creates a link list object of 1.pdf
C# code pleaseWrite a program that creates a link list object of 1.pdf
 
Java AssignmentUsing the ListNode.java file below Write method.pdf
Java AssignmentUsing the ListNode.java file below Write method.pdfJava AssignmentUsing the ListNode.java file below Write method.pdf
Java AssignmentUsing the ListNode.java file below Write method.pdf
 
There are a couple of new methods that you will be writing for this pr.pdf
There are a couple of new methods that you will be writing for this pr.pdfThere are a couple of new methods that you will be writing for this pr.pdf
There are a couple of new methods that you will be writing for this pr.pdf
 
In this assignment you will implement insert() method for a singly l.pdf
In this assignment you will implement insert() method for a singly l.pdfIn this assignment you will implement insert() method for a singly l.pdf
In this assignment you will implement insert() method for a singly l.pdf
 
Write a function to merge two doubly linked lists. The input lists ha.pdf
Write a function to merge two doubly linked lists. The input lists ha.pdfWrite a function to merge two doubly linked lists. The input lists ha.pdf
Write a function to merge two doubly linked lists. The input lists ha.pdf
 
For this micro assignment, you must implement two Linked List functi.docx
For this micro assignment, you must implement two Linked List functi.docxFor this micro assignment, you must implement two Linked List functi.docx
For this micro assignment, you must implement two Linked List functi.docx
 
Using visual studio 2022- a C# windows form application- and your Doub.pdf
Using visual studio 2022- a C# windows form application- and your Doub.pdfUsing visual studio 2022- a C# windows form application- and your Doub.pdf
Using visual studio 2022- a C# windows form application- and your Doub.pdf
 
Qestion Please add pre-condition, post-conditions and descriptions .pdf
Qestion Please add pre-condition, post-conditions and descriptions .pdfQestion Please add pre-condition, post-conditions and descriptions .pdf
Qestion Please add pre-condition, post-conditions and descriptions .pdf
 
In C++Write a recursive function to determine whether or not a Lin.pdf
In C++Write a recursive function to determine whether or not a Lin.pdfIn C++Write a recursive function to determine whether or not a Lin.pdf
In C++Write a recursive function to determine whether or not a Lin.pdf
 

More from todd401

Exercise 7-15 During October- Wichita Light Company experiences the fo.docx
Exercise 7-15 During October- Wichita Light Company experiences the fo.docxExercise 7-15 During October- Wichita Light Company experiences the fo.docx
Exercise 7-15 During October- Wichita Light Company experiences the fo.docx
todd401
 
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docxExercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
todd401
 
examples of how being familiar with and following digital forensic bes.docx
examples of how being familiar with and following digital forensic bes.docxexamples of how being familiar with and following digital forensic bes.docx
examples of how being familiar with and following digital forensic bes.docx
todd401
 
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docxEst 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
todd401
 
examples of materials that have directional properties as a single cry.docx
examples of materials that have directional properties as a single cry.docxexamples of materials that have directional properties as a single cry.docx
examples of materials that have directional properties as a single cry.docx
todd401
 
Examine the importance for business financial leaders to recognize the.docx
Examine the importance for business financial leaders to recognize the.docxExamine the importance for business financial leaders to recognize the.docx
Examine the importance for business financial leaders to recognize the.docx
todd401
 
Examine the primary reasons why project management causes a cultural c.docx
Examine the primary reasons why project management causes a cultural c.docxExamine the primary reasons why project management causes a cultural c.docx
Examine the primary reasons why project management causes a cultural c.docx
todd401
 
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docxFal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
todd401
 
Explain three advantages and one disadvantage to CONSUMER from standar.docx
Explain three advantages and one disadvantage to CONSUMER from standar.docxExplain three advantages and one disadvantage to CONSUMER from standar.docx
Explain three advantages and one disadvantage to CONSUMER from standar.docx
todd401
 
Explain the various reasons why atoms and molecules form chemical bond.docx
Explain the various reasons why atoms and molecules form chemical bond.docxExplain the various reasons why atoms and molecules form chemical bond.docx
Explain the various reasons why atoms and molecules form chemical bond.docx
todd401
 
Explain (in your own words) the concept colbertism and what-'s interes.docx
Explain (in your own words) the concept colbertism and what-'s interes.docxExplain (in your own words) the concept colbertism and what-'s interes.docx
Explain (in your own words) the concept colbertism and what-'s interes.docx
todd401
 
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docxExplain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
todd401
 
Experimental Questions 1- Which types of compounds have the strongest.docx
Experimental Questions 1- Which types of compounds have the strongest.docxExperimental Questions 1- Which types of compounds have the strongest.docx
Experimental Questions 1- Which types of compounds have the strongest.docx
todd401
 
Explain how dopants affect the conductivity of a solid- how one can ma.docx
Explain how dopants affect the conductivity of a solid- how one can ma.docxExplain how dopants affect the conductivity of a solid- how one can ma.docx
Explain how dopants affect the conductivity of a solid- how one can ma.docx
todd401
 
Explain how SSL protocol is used to ensure the confidentiality and int.docx
Explain how SSL protocol is used to ensure the confidentiality and int.docxExplain how SSL protocol is used to ensure the confidentiality and int.docx
Explain how SSL protocol is used to ensure the confidentiality and int.docx
todd401
 
explain how revenues and expenditures are classified in the General Fu.docx
explain how revenues and expenditures are classified in the General Fu.docxexplain how revenues and expenditures are classified in the General Fu.docx
explain how revenues and expenditures are classified in the General Fu.docx
todd401
 
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docxExperiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
todd401
 
Enhance the ButtonViewer program so that it prints the time at which t.docx
Enhance the ButtonViewer program so that it prints the time at which t.docxEnhance the ButtonViewer program so that it prints the time at which t.docx
Enhance the ButtonViewer program so that it prints the time at which t.docx
todd401
 
Explain covalent bond- Explain Metallic bond and what important proper.docx
Explain covalent bond- Explain Metallic bond and what important proper.docxExplain covalent bond- Explain Metallic bond and what important proper.docx
Explain covalent bond- Explain Metallic bond and what important proper.docx
todd401
 
English Read the sentences- Which sentence contains a nonrestrictive.docx
English Read the sentences-  Which sentence contains a nonrestrictive.docxEnglish Read the sentences-  Which sentence contains a nonrestrictive.docx
English Read the sentences- Which sentence contains a nonrestrictive.docx
todd401
 

More from todd401 (20)

Exercise 7-15 During October- Wichita Light Company experiences the fo.docx
Exercise 7-15 During October- Wichita Light Company experiences the fo.docxExercise 7-15 During October- Wichita Light Company experiences the fo.docx
Exercise 7-15 During October- Wichita Light Company experiences the fo.docx
 
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docxExercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
Exercise 4-3 (Part Level Submission) The adjusted trial balance column.docx
 
examples of how being familiar with and following digital forensic bes.docx
examples of how being familiar with and following digital forensic bes.docxexamples of how being familiar with and following digital forensic bes.docx
examples of how being familiar with and following digital forensic bes.docx
 
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docxEst 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
Est 12-16 AM edugen-wileyplus-com Open Assignment t experience please.docx
 
examples of materials that have directional properties as a single cry.docx
examples of materials that have directional properties as a single cry.docxexamples of materials that have directional properties as a single cry.docx
examples of materials that have directional properties as a single cry.docx
 
Examine the importance for business financial leaders to recognize the.docx
Examine the importance for business financial leaders to recognize the.docxExamine the importance for business financial leaders to recognize the.docx
Examine the importance for business financial leaders to recognize the.docx
 
Examine the primary reasons why project management causes a cultural c.docx
Examine the primary reasons why project management causes a cultural c.docxExamine the primary reasons why project management causes a cultural c.docx
Examine the primary reasons why project management causes a cultural c.docx
 
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docxFal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
Fal or - Seawat A pur ture Chapter Review Speaking1- How is a mixture.docx
 
Explain three advantages and one disadvantage to CONSUMER from standar.docx
Explain three advantages and one disadvantage to CONSUMER from standar.docxExplain three advantages and one disadvantage to CONSUMER from standar.docx
Explain three advantages and one disadvantage to CONSUMER from standar.docx
 
Explain the various reasons why atoms and molecules form chemical bond.docx
Explain the various reasons why atoms and molecules form chemical bond.docxExplain the various reasons why atoms and molecules form chemical bond.docx
Explain the various reasons why atoms and molecules form chemical bond.docx
 
Explain (in your own words) the concept colbertism and what-'s interes.docx
Explain (in your own words) the concept colbertism and what-'s interes.docxExplain (in your own words) the concept colbertism and what-'s interes.docx
Explain (in your own words) the concept colbertism and what-'s interes.docx
 
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docxExplain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
Explain the 3 Emissive flat-panel devices- electroluminescent- plasma.docx
 
Experimental Questions 1- Which types of compounds have the strongest.docx
Experimental Questions 1- Which types of compounds have the strongest.docxExperimental Questions 1- Which types of compounds have the strongest.docx
Experimental Questions 1- Which types of compounds have the strongest.docx
 
Explain how dopants affect the conductivity of a solid- how one can ma.docx
Explain how dopants affect the conductivity of a solid- how one can ma.docxExplain how dopants affect the conductivity of a solid- how one can ma.docx
Explain how dopants affect the conductivity of a solid- how one can ma.docx
 
Explain how SSL protocol is used to ensure the confidentiality and int.docx
Explain how SSL protocol is used to ensure the confidentiality and int.docxExplain how SSL protocol is used to ensure the confidentiality and int.docx
Explain how SSL protocol is used to ensure the confidentiality and int.docx
 
explain how revenues and expenditures are classified in the General Fu.docx
explain how revenues and expenditures are classified in the General Fu.docxexplain how revenues and expenditures are classified in the General Fu.docx
explain how revenues and expenditures are classified in the General Fu.docx
 
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docxExperiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
Experiment# Kinetics of an Iodine Clock Reaction 1- A color change wil.docx
 
Enhance the ButtonViewer program so that it prints the time at which t.docx
Enhance the ButtonViewer program so that it prints the time at which t.docxEnhance the ButtonViewer program so that it prints the time at which t.docx
Enhance the ButtonViewer program so that it prints the time at which t.docx
 
Explain covalent bond- Explain Metallic bond and what important proper.docx
Explain covalent bond- Explain Metallic bond and what important proper.docxExplain covalent bond- Explain Metallic bond and what important proper.docx
Explain covalent bond- Explain Metallic bond and what important proper.docx
 
English Read the sentences- Which sentence contains a nonrestrictive.docx
English Read the sentences-  Which sentence contains a nonrestrictive.docxEnglish Read the sentences-  Which sentence contains a nonrestrictive.docx
English Read the sentences- Which sentence contains a nonrestrictive.docx
 

Recently uploaded

Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
PedroFerreira53928
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
Celine George
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
Vivekanand Anglo Vedic Academy
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
Fundacja Rozwoju Społeczeństwa Przedsiębiorczego
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 

Recently uploaded (20)

Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
PART A. Introduction to Costumer Service
PART A. Introduction to Costumer ServicePART A. Introduction to Costumer Service
PART A. Introduction to Costumer Service
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
How to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERPHow to Create Map Views in the Odoo 17 ERP
How to Create Map Views in the Odoo 17 ERP
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Sectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdfSectors of the Indian Economy - Class 10 Study Notes pdf
Sectors of the Indian Economy - Class 10 Study Notes pdf
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdfESC Beyond Borders _From EU to You_ InfoPack general.pdf
ESC Beyond Borders _From EU to You_ InfoPack general.pdf
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 

Everything compiles and everything runs correctly except my insertionS.docx