Information Security | MIT Syllabus | TU
Information Security Course Title: Information Security Full Marks: 45+30 Course No: MIT504 Pass Marks: 22.5+15 Nature of the Course: Theory + Lab Credit Hrs: 3 Semester: I Course…
Information Security Course Title: Information Security Full Marks: 45+30 Course No: MIT504 Pass Marks: 22.5+15 Nature of the Course: Theory + Lab Credit Hrs: 3 Semester: I Course…
Enterprise Application Course Title: Enterprise Application Full Marks: 45+30 Course No: MIT503 Pass Marks: 22.5+15 Nature of the Course: Theory + Practical Credit Hrs: 3 Semester: I Course…
Advanced Database System Course Title: Advanced Database System Full Marks: 45+30 Course No: MIT502 Pass Marks: 22.5+15 Nature of the Course: Theory + Lab Credit Hrs: 3 Semester:…
Object Oriented Analysis and Design Course Title: Object Oriented Analysis and Design Full Marks: 45 + 30 Course No: MIT501 Pass Marks: 22.5 + 15 Nature of the…
Introduction: The Masters in Information Technology (MIT) curriculum is designed by closely following the courses practiced in accredited international universities, subject to the condition that the intake students…
Azimuthal quantum number describes(a) orbital size (b) orbital orientation(c) orbital shape (d) nuclear stability
Which of the following pair have same dimension?(a) L/R and CR (b) LR and CR(c) R/L and [LC]1/2 (d) CR and 1/LC The dimensions of physical quantities are…
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…
void displayMatrix(int matrix[][3], int rows, int columns) {for (int i = 0; i < rows; i++) {for (int j = 0; j < columns; j++) {printf(“%d “, matrix[i][j]);}printf(“\n”);}}…
Write a program that uses a “for” loop to compute and prints the sum of a givennumbers of squares. #include<stdio.h> int main() {int n;int sum_of_squares = 0; }