Posts

Showing posts from August, 2025

PG MSc AI Semester 3, Pattern Recognition, First Internal Examination, August 2025

PG MSc AI Semester 1, Introduction to Artificial Intelligence, First Internal Examination, August 2025

PG MSc AI Sem 3, Machine Learning, First Internal Examination, August 2025

UG BCA S1, Fundamentals of Programming using C, First Internal Examination, August 2025

UG BCA S1, Cyber Laws and Security, First Internal Examination, August 2025

PG MSc AI, S1, Computer Architecture and Parallel Programming, First Internal Examination, August 2025

PG MSc AI, S3, Bioinformatics, First internal Examination, August 2025

PG MSc AI S3,AI 010302 – Introduction to Data Analytics,FIRST INTERNAL EXAM AUGUST 2025

PG MSc AI S1,AI 010103 Database Technology and NoSql, FIRST INTERNAL EXAM AUGUST 2025

MGU UGP BCA ,S1 DIGITAL FUNDAMENTALS FIRST INTERNAL EXAMINATION , AUGUST 2025

  ANSWER KEY 1.     Explain the non-positional number system with example? A non-positional number system is a type of number system where the position of a digit does not affect its value. Each symbol or digit in the system has a fixed value, regardless of where it appears in the number. EG: - ROMAN NUMBERS 2.     Explain the terms 1’s complement and 2’s complement? The 1’s complement of a binary number is obtained by flipping all the bits: Change every 1 to 0 Change every 0 to 1   Example: Binary number: 0101 (which is 5 in decimal) 1’s complement: 1010 The 2’s complement of a binary number is obtained by: Taking the 1’s complement of the number Adding 1 to the result 🔹 Example: Binary number: 0101 (5 in decimal) 1’s complement: 1010 Add 1: 1010 + 1 = 1011 2’s complement: 1011 (which represents –5) 3.     (a) Convert the hexadecimal number 5C2 to decimal?       =(5×16^2...