Posts

Showing posts from May, 2020

Math 601 ASSIGNMENT Sol 100% Error Free Updated

MaTH601 Assignment Sol by Usama 

MATH 622 IMPORTANT MCQS FOR QUIZ,GRAND QUIZ PART (1)

MATH 622 IMPORTANT QS FOR QUIZ,GRAND QUIZ PART (1)

Lock Down me Life Part 1

Aj kal lock down me life beh ajeeb hogyyi hai.Lock down ne isane of ALLAH k qareeb kar diya hai.Insan Lock down se pehle Jo ALLAH dor tha ab lock down hee  k zariya banda ALLAH k qareeb hogya hai.Lekin khuch log and yah akhsar log ab beh ALLAH se door hein.Shahd in logo me beh shamil hun.ALLAH se door hona insan ka he nuqsan ha.Lekin woh Pher beh nuksan me nai dalta.Woh itna Raheem hai k manggo tu deta hai na manggo tu tub beh deta hai.Us ne humein Ashraf ul Makhlookat banaya hai.Frishty tu ALLAH ki ebadat karty  hein.Hum tu un se beh afzal hein humein chye hum tu din raat ebadat me guzar dein.Agar hum aisa krein ge tu us ki nematoon ka khuch sukhar ada hojye ga.Shahid yahi waja humein duniya akharat me  Kamyab kar de.....

Cs301: MCQS FOR QUIZ,GRAND QUIZ PART 1

                  Topic: Cs301: MCQS FOR QUIZ,GRAND QUIZ PART 1 1)Each node in singly linked list has pointer a)one b)two c)three d)four 2)Parameters in function call are passing using a)Stack b)Queue c)Binary Search Tree d)AVL Tree 3)Insertion in a linked list can be done a)front only b)back only c)middle only d)anywhere 4)The                   method of list data structure removes the element residing at current position a)Add b)Remove c)Next d)Find 5)A Array is a group of                 memory location a)consecutive b)isolated c)random d)scattered 6)Every AVL Tree is              a ) Binary Search Tree b)Complete Tree c)Heap d)Ternary Tree 7)Non recursive calls are faster than                   a)Parameterized b)Recursive c)Function d)Non function 8)Searching an element in Binary tree takes                 maximum a)log2(n+1) b)log2(n+1) -1 c)1.44 log2n d)1.66log2n 9)A complete Binary Tree having node N consist of                 levels a)log2(N+1) -1 b)l

Math601 Mcqs for Quiz and Long Quiz part 1

Image
Image 1 Image 2

CS 301 ASSIGNMENT SOL IN CPP FORMAT

*idd=id Cs301 ASSIGNMENT SOL 100%

Cs402 100% Correct Assignment with Three methods+Basics

Image
                                                    Cs402 Assignment sol 100%

Math622 Important Mcqs For Quiz, Grand Quiz

Image

Cs301 Assignment Solution 2020 Second semester

#include<iostream> using namespace std; class MYBooks {      private :         int current;         int books;         int size;         int *stack;             public :         MYBooks(int s, int b)         {size=s;         stack= new int[size];         books=b;         current=-1;         }         void push(int x) {         // -1 +1=0      stack[++current]=x; } int pop() {     return stack[current--]; } int top()     {         return stack[current];     }    int isEmpty()    {     return (current==-1);    }    int isFull()    {       //5  4    return (current==size-1);    } }; main() {     int s, b, id;     int s_books=0, h_books=0, o_books=0;     cout<<"set the size of stack : ";     cin>>s;     cout<<endl;     cout<<"Number of books you want to add in stack : ";     cin>>b;     MYBooks book(s,b);     //b =5     for(int i=0; i<b; i++)     {         if(!book.isFull())