Navigation

    Cyberian
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Pro Blog
    • Users
    • Groups
    • Unsolved
    • Solved
    1. Home
    2. Tags
    3. discussion
    Log in to post
    • All categories
    • cyberian

      CS001 Quiz 2 Solution and Discussion
      CS001- Computer Proficiency License • cs001 quiz 2 solution discussion • • cyberian

      1
      0
      Votes
      1
      Posts
      97
      Views

      No one has replied

    • cyberian

      CS001 Quiz 1 Solution and Discussion
      CS001- Computer Proficiency License • cs001 quiz 1 solution discussion • • cyberian

      1
      0
      Votes
      1
      Posts
      109
      Views

      No one has replied

    • cyberian

      ACC501 Quiz 2 Solution and Discussion
      ACC501 - Business Finance • acc501 quiz 2 solution discussion • • cyberian

      1
      0
      Votes
      1
      Posts
      101
      Views

      No one has replied

    • Love Uzair

      MGT411 Assignment 1 Solution and Discussion
      MGT411 - Money & Banking • mgt411 assignment 1 solution discussion • • Love Uzair

      2
      0
      Votes
      2
      Posts
      2401
      Views

      zaasmi

      mgt411 assignment 1 solutions 2021 spring.docx

    • Triggered MAN

      MTH202 Assignment 1 Solution and Discussion
      MTH202 - Discrete Mathematics • mth202 assignment 1 solution discussion spring 2021 • • Triggered MAN

      2
      1
      Votes
      2
      Posts
      266
      Views

      zareen

      @triggered-man said in assignment 1:

      Assignment No. 1 (Lectures # 1 to 9) Total Marks: 10
      Spring 2021 Discrete Mathematics (MTH202)
      Due Date: 20-05- 2021

      Please read the following instructions before attempting the solution of this assignment:

      To solve this assignment, you should have good command over 1 to 9 lectures.
      Try to consolidate your concepts that you learn in the lectures with these questions.
      Upload assignments properly through VULMS. No Assignment will be accepted through Email.
      No assignment will be accepted after the due date.
      Write your ID on the top of your solution file.
      All students are directed to use the font and style of text as is used in this document.
      Use MathType or Equation Editor etc. for mathematical symbols and equations.
      Remember that you are supposed to submit your assignment in MS-Word format any other format like scanned, images, MS-Excel, HTML etc. will not be accepted.
      Do not use colorful backgrounds in your solution files.
      This is an individual assignment (not a group assignment). So keep in mind that you are supposed to submit your own, self-made and different assignment even if you discuss the questions with your class fellows. All similar assignments (even with some meaningless modifications) will be awarded zero marks and no excuse will be accepted. This is your responsibility to keep your assignment safe from others.

      Question No.1 Marks: 10

      Let the universal set U be the set of integers and A={x∈Z|0<x≤5} and
      B={x∈Z|3≤x<9}, then find
      〖(A∪B)〗^c

      〖(A∩B)〗^c

      b68cbf54-e3c9-4991-92a9-3607667cda60-image.png

    • zareen

      CS301 Assignment 1 Solution and Discussion
      CS301 – Data Structures • assignment 1 cs301 discussion solution spring 2021 • • zareen

      2
      0
      Votes
      2
      Posts
      198
      Views

      zareen

      Sample Output
      A1 Sample Output.mp4

    • zareen

      PHY101 GDB 1 Solution and Discussion
      PHY101 - Physics • phy101 gdb 1 solution discussion spring 2021 • • zareen

      4
      0
      Votes
      4
      Posts
      325
      Views

      reelora

      @zareen said in PHY101 GDB 1 Solution and Discussion:

      It is true or wrong that Raise For Success an automobile at rest can be accelerating very fast?

    • cyberian

      CS502 Assignment 1 Solution and Discussion
      CS502 - Fundamentals of Algorithms • cs502 assignment 1 solution discussion spring 2021 • • cyberian

      6
      0
      Votes
      6
      Posts
      543
      Views

      cyberian

      Q.2
      Solution:
      Method 1
      0e7322a1-5dce-4ad9-acd1-733be402ae4b-image.png

      Method 2
      fc8e2c51-4c04-4b4e-9bd0-b2b542a413f2-image.png

      a29b0121-e9be-4b74-aea3-d49d9f189d4c-image.png

    • cyberian

      STA642 Assignment 2 Solution and Discussion
      STA642 - Probability Distributions • sta642 assignment 2 solution discussion spring 2021 • • cyberian

      1
      0
      Votes
      1
      Posts
      116
      Views

      No one has replied

    • cyberian

      STA642 Assignment 1 Solution and Discussion
      STA642 - Probability Distributions • sta642 assignment 1 solution discussion spring 2021 • • cyberian

      1
      0
      Votes
      1
      Posts
      76
      Views

      No one has replied

    • cyberian

      CS101 Quiz 1 Solution and Discussion
      CS101- Introduction to Computer • cs101 quiz 1 solution discussion spring 2021 • • cyberian

      1
      0
      Votes
      1
      Posts
      82
      Views

      No one has replied

    • O

      MTH603 Assignment 1 Solution and Discussion
      MTH603 - Numerical Analysis • assignment 1 discussion mth603 solution spring 2021 • • Ozair

      3
      0
      Votes
      3
      Posts
      122
      Views

      W

      @ozair
      1b500718-fb9a-40e5-a9f8-8cc3e51fe41e-image.png

      29811036-84e6-4aa3-bf59-06ec0fbca461-image.png

    • Product Reviews

      What is the Key summery of 8601 ?
      Research • discussion • • Product Reviews

      1
      0
      Votes
      1
      Posts
      62
      Views

      No one has replied

    • A

      SOLVED CS201 Assignment 2 Solution and Discussion
      CS201 - Introduction to Programming • assignment assignment 2 cs201 discussion fall 2020 solution • • asma zahid

      4
      0
      Votes
      4
      Posts
      1079
      Views

      zaasmi

      // CS201 Assignment 2 Solution Spring 2021 #include <iostream> #include <conio.h> using namespace std; int ShowMatrix() { //main matrix int row=2, column=2; int matrix[2][2] = { {8, -4} , {-6, 2} }; cout<<"The matrix is:"<<endl; for(int i=0; i<row; ++i) { for(int j=0; j<column; ++j) cout<<matrix[i][j]<<" "; cout<<endl; } } //Transpose int showTranspose ( ) { int transpose[2][2], row=2, column=2, i, j; int matrix[2][2] = { {8, -4} , {-6, 2} }; cout<<endl; for(i=0; i<row; ++i) for(j=0; j<column; ++j) { transpose[j][i] = matrix[i][j]; } cout<<"The transpose of the matrix is:"<<endl; for(i=0; i<column; ++i) { for(j=0; j<row; ++j) cout<<transpose[i][j]<<" "; cout<<endl; } } //determenent calculating int calculateDeterminant() { int determMatrix[2][2], determinant; int matrix[2][2] = { {8, -4} , {-6, 2} }; determinant = ((matrix[0][0] * matrix[1][1]) - (matrix[0][1] * matrix[1][0])); cout << "\nThe Determinant of 2 * 2 Matrix = " << determinant; } //Adjoint of matrix int showAdjoint() { int ch,A2[2][2] = {{8,-4},{-6,2}},AD2[2][2],C2[2][2]; //Calculating co-factors of matrix of order 2x2 C2[0][0]=A2[1][1]; C2[0][1]=-A2[1][0]; C2[1][0]=-A2[0][1]; C2[1][1]=A2[0][0]; //calculating ad-joint of matrix of order 2x2 AD2[0][0]=C2[0][0]; AD2[0][1]=C2[1][0]; AD2[1][0]=C2[0][1]; AD2[1][1]=C2[1][1]; cout<<"\n\nAdjoint of A is :- \n\n"; cout<<"|\t"<<AD2[0][0]<<"\t"<<AD2[0][1]<<"\t|\n|\t"<<AD2[1][0]<<"\t"<<AD2[1][1]<<"\t|\n"; } int main() { int cho = 0; cout<<" ||---Enter your choice---||"<<endl; cout<<""<<endl; cout<<"---Press 1 to display the matrix and its transpose---"<<endl; cout<<"---Press 2 to find adjoint and determinant of the matrix---"<<endl; cout<<""<<endl; cout<<"Press any other key to exit."; cout<<""<<endl; cin>>cho; if (cho ==1) { ShowMatrix(); showTranspose ( ); } else if (cho == 2) { showAdjoint(); calculateDeterminant(); } else system("pause"); }
    • J

      MTH101 Assignment 2 Solution and Discussion
      MTH101 - Calculus And Analytical Geometry • assignment 1 assignment 2 discussion fall 2020 mth101 solution • • jahanzaib

      8
      0
      Votes
      8
      Posts
      3253
      Views

      zaasmi

    • zaasmi

      MGT301 GDB 1 Solution and Discussion
      MGT301 - Principles of Marketing • mgt301 gdb 1 solution discussion fall 2020 gdb • • zaasmi

      2
      0
      Votes
      2
      Posts
      117
      Views

      Aqib Javaid

      @zaasmi said in MGT301 GDB 1 Solution and Discussion:

      Re: MGT301 GDB 1 Solution and Discussion

      MGT301 GDB NO.1 2020

      Digital payment services such as internet banking and mobile phone banking, hard cash continues to be avoided as it is considered to be one of the carriers of this virus.
      To further control the spread, as well as with the systematic shutdown of public dealing, it became inevitable for banks and other financial institutions to go digital entirely.
      Providing them with a digital tool that not only lets them track their financial transactions, but also sorts them in terms of priority and notifies them when to put their spending on hold could help customers better understand their financial standing.
      It’s just idea solution kindly make your GDB own your wording don’t submit same GDB.