المشاركات الشائعة من هذه المدونة
Today final papers of different subjects
[10/09, 9:31 PM] Usama: Dual mthod ak simplex ma sy ay tha kuch do sawal ko standand form ma likhna tha critical path ka questions tha or least cost mthod sy tha ak [10/09, 9:31 PM] Usama: Cs 402 today paper 8.Am 1)Mostly question from cfg 2)prefixes ka 1 question tha 3) Fa Draw krna tha regular expression ka 4) n ki value di thi or use non regular expression proof krna tha 5)pumping lema ka 1 question tha 6)Mcqs sare conceptual the 4 ,5 past se aye the bs itna yad ha [10/09, 9:31 PM] Usama: *CS302* Final Term Current Paper SPRING 2020 All MCQ'S are from past papers except 7 McQs. 1. Make SOP from a give K-Map. 2. Multiply 1010 with 1000 using shift operation 3. Convert binary to decimal using Sum of Weighted Method. 4. Aik parallel to serial incomplete circuit dia tha, usme Q1, Q2, Q3 and CLK ko correctly connect krna tha. 5. What is DRAM and its types [10/09, 9:31 PM] Usama: Today Paper MGT503 Thanks to a friend abbubakr his Today...
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() { ...
تعليقات
إرسال تعليق