Skip to main content
Unijos LMS
  • Home
  • eServices
  • Course search
  • Portal
  • E-mail
  • Unijos Homepage
  • Library
  • eClass
  • Contact Us
  • More
Close
Toggle search input
Log in
Unijos LMS
Home eServices Course search Portal E-mail Unijos Homepage Library eClass Contact Us
  1. Courses
  2. Faculty of Natural Sciences
  3. Computer Science

Computer Science

Expand all

CSC 307

Master Class
Compiler Construction
Applications of Computer
BIG 805: Python Programming and optimization
Computer Application
CS 204 Introduction to File Processing copy 1
CS 403 Design & Analysis of Algorithm
CSC 101 Introduction to Computer Sc.
CSC 102: Introduction to Computer Applications
CSC 201 Computer Programming I
CSC 202: Computer Programming II
CSC 204 Introduction to File Processing
CSC 204 Introduction to File Processing copy 2
CSC 303: Computer Architecture
CSC 305 Data Structure and Algorithm
CSC 306 Systems Analysis and Design
CSC 307 Database Management and Design
CSC 309 Object-Oriented Programming
CSC 309 Object-Oriented Progrmming
CSC 401 Organisation of Programming Languages
View more
Contact site support
You are not logged in. (Log in)
Data retention summary
Get the mobile app document.addEventListener("keydown", function (event) { event.preventDefault(); // Prevent default browser behavior // Select answer choices A, B, C, D if (event.key.toUpperCase() === "A") { let choiceA = document.querySelector('.answer input[type="radio"]:nth-child(1), .answer input[type="checkbox"]:nth-child(1)'); if (choiceA) choiceA.click(); } if (event.key.toUpperCase() === "B") { let choiceB = document.querySelector('.answer input[type="radio"]:nth-child(2), .answer input[type="checkbox"]:nth-child(2)'); if (choiceB) choiceB.click(); } if (event.key.toUpperCase() === "C") { let choiceC = document.querySelector('.answer input[type="radio"]:nth-child(3), .answer input[type="checkbox"]:nth-child(3)'); if (choiceC) choiceC.click(); } if (event.key.toUpperCase() === "D") { let choiceD = document.querySelector('.answer input[type="radio"]:nth-child(4), .answer input[type="checkbox"]:nth-child(4)'); if (choiceD) choiceD.click(); } // Navigate to Next question (N key) if (event.key.toUpperCase() === "N") { let nextButton = document.querySelector('[name="next"]'); if (nextButton) nextButton.click(); } // Navigate to Previous question (P key) if (event.key.toUpperCase() === "P") { let prevButton = document.querySelector('[name="previous"]'); if (prevButton) prevButton.click(); } // Submit Quiz (S key) if (event.key.toUpperCase() === "S") { let submitButton = document.querySelector('[name="next"], [name="finishattempt"]'); if (submitButton && submitButton.value.toLowerCase().includes("submit")) { submitButton.click(); } } }); document.addEventListener("DOMContentLoaded", function () { let quizText = document.querySelector(".quizquestiontext"); if (quizText) { let speech = new SpeechSynthesisUtterance(quizText.innerText); speech.lang = "en-US"; // Change as needed speechSynthesis.speak(speech); } });
Powered by Moodle