Category: 1st Semester

Home B.Sc. CSIT 1st Semester
Post

Write a function to add, subtract, multiply, and divide two complex numbers (x +iy) and (c + id). in C

Write a function to add, subtract, multiply, and divide two complex numbers (x +iy) and (c + id). in C typedef struct {double real;double imaginary;} Complex; Complex addComplex(Complex a, Complex b) {Complex result;result.real = a.real + b.real;result.imaginary = a.imaginary + b.imaginary;return result;} Complex subtractComplex(Complex a, Complex b) {Complex result;result.real = a.real – b.real;result.imaginary = a.imaginary...

Post

Write a program for the interest charged in installments for the following case. A cassette player costs Rs. 2000. A shopkeeper sells it for Rs. 100 down payment and Rs. 100 for 21 more months. What is the monthly interest charged?

Write a program for the interest charged in installments for following case. A cassetteplayer costs Rs. 2000. A shopkeeper sells it for Rs. 100 down payment and Rs. 100for 21 more months. What is the monthly interest charged? principal = 2000 # Principal amount (cost of the cassette player)down_payment = 100 # Down payment made...

Post

Overview of Remote User Authentication Principles

What is User Authentication? Defines User Authentication as the process of verifying an identity claimed by or for a system entity. This process consists of two steps: Identification step: Presenting an identifier to the security system. (Identifiers should be assigned carefully, because authenticated identities are the basis for other security services, such as access control...

BSc.CSIT 1st Semester Digital Logic Old Questions
Post

BSc.CSIT 1st Semester Digital Logic Old Questions

BSc.CSIT 1st Semester Old Questions Subject: Digital Logic BSc.CSIT 1st Semester Digital Logic BSc.CSIT 1st Semester Digital Logic Question Year : 2065 Long Questions:Attempt any two questions: (2 × 10=20) Draw a block diagram, truth table and logical circuit of a 16 x 1 multiplexer and explainits working principle. Explain the 4-bit ripple counter and...

Introduction to Information Technology
Post

BSc.CSIT 1st Semester Introduction to Information Technology Old Questions

B.Sc. CSIT 1st Semester Old Questions Subject : Introduction to Information Technology Year: 2065 BSc.CSIT 1st Semester Introduction to Information Technology Old Questions Long Questions:Attempt any two questions: (2 × 10=20) 1.Explain the major functions of a digital computers. 2.Explain the first, second and third normal form and compare it. 3.What do you mean by...

Post

BSc.CSIT First Semester Syllabus | TU Syllabus

BSc.CSIT is a 4 year (8 semester’s) course affiliated with Tribhuvan University. The course includes principles of both Computer Science and Information Technology and shows how these principles can be applied to real-world problems. The course structure comprises of Theoretical and Practical aspect with a total of 126 credit hours.  BSc.CSIT First Semester Syllabus Overview Syllabus of BSc.CSIT First...