Skip to main content

Blog Directory

.....................................................................................................

Read this before accessing the blog resources

For new posts please visit https://theinsantechie.in

NB:
You can have access to each post in this blog by just clicking on the corresponding link given below. Note that the gadget named "Blog Archive" also includes the links to these posts. But it is easier to refer to the posts through the links provided below.

.....................................................................................................



  • 1. Data structure programs.



  • 2. OOP Extra Questions with Answers.



  • 3. OOP in C++ - extra programs.



  • 4. Quiz Questions with answers :1



  • 5. Quiz Questions with answers :2



  • 6. Quiz Questions with answers :3



  • 7. Quiz Questions with answers :4



  • 8. Quiz Questions with answers :5



  • 9. Aptitude questions with answers.



  • 10. Infosys Questions with Answers.



  • 11. DS lab Extra Questions.








  • NEXT->>

  • .....................................................................................................

    WE ARE EAGERLY AWAITING FOR YOUR COMMENTS AND SUGGESTIONS

    Comments

    Popular posts from this blog

    Infosys Questions with Answers

      Father's age is three years more than three times the son's age. After three years, father's age will be ten years more than twice the son's age. What is the father's present age. 33 years. (2 marks) Find the values of each of the alphabets. N O O N S O O N + M O O N ---------- J U N E 9326 (2 marks) There are 20 poles with a constant distance between each pole A car takes 24 second to reach the 12th pole. How much will it take to reach the last pole. 41.45 seconds (2 marks) Let the distance between two poles = x Hence 11x:24::19x:? A car is travelling at a uniform speed. The driver sees a milestone showing a 2-digit number. After travelling for an hour the driver sees another milestone with the same digits in reverse order. After another hour the driver sees another milestone containing the same two digits. What is the average speed of the driver. 45 kmph (4 marks) The minute and the hour hand of a watch meet every 65 minutes. How much does the watch lo...

    DS Extra programs_July 09

      /*1. WAP to implement searching in a linked list */   #include<iostream.h> #include<conio.h> #include<process.h>   class node {   int data;   node *next;   public:   void insert();   void search(int);   void display(); };   node *start,*head,*temp;   void node::insert() {   head=new node;   cout<<"\n Enter the data item: ";   cin>>head->data;   head->next=NULL;   if(start==NULL)   {   start=head;   }   else   {   temp=start;   while(temp->next!=NULL)   {    temp=temp->next;   }   temp->next=head;   } }   void node::display() {   temp=start;   if(start==NULL)   cout<<"\n Data list is empty ";   else   {   cout<<"\n DATA LIST: ";   while(temp!=NULL)   {    cout<<temp->data<<" ";    temp=temp->next;   }   } }   void node::search(int data) {   temp=start;   if(start==NULL)   cout<<"\n Data list is empty ...