Category: B.Sc. CSIT

Home B.Sc. CSIT
digital marketing session
Post

CSA MMC Club Organized 5-Day Online Digital Marketing Session In Collaboration with UNICTS Nepal

CSA MMC Dang has officially wrapped up a five-days online Digital Marketing Session starting from 30th july 2025, in collaboration with UNICTS Nepal.This event has almost total 30 participants. This event aims to provide participants with practical knowledge and skills in the ever-emerging field of digital marketing.  What benefits participants got from this digital marketing...

Theory of Computation Exam Questions with Answers
Post

Theory of Computation Exam Questions with Answers

Give the DFA accepting the strings over {a, b} such that each string does not start with ab. Here’s the DFA (Deterministic Finite Automaton) that accepts strings over the alphabet {a, b} such that each string does not start with “ab”: States: q0: Initial stateq1: Accepting stateq2: Dead state (to indicate the string starts with...

CSITAN-Pokhara  New Leadership for the 2023/24 Term
Post

CSITAN-Pokhara New Leadership for the 2023/24 Term

In a significant development, the CSIT Association of Nepal – CSITAN-Pokhara bids adieu to its outgoing team, marking the commencement of a new chapter with the introduction of Team 2023/24. The organization expresses profound enthusiasm for the potential and vision inherent in the incoming leadership. Under the adept stewardship of President Sangam Giri, the newly...

Career Connect by CSITAN
Post

Unlock Your IT Future: Join Career Connect by CSITAN for Top Colleges and Dream Job Opportunities!

After completing their 12th grade, students often find themselves in a state of confusion. The myriad of questions about what to pursue, how to go about it, and the associated uncertainties can weigh heavily on their minds. Unfortunately, Nepal’s education system has yet to address this issue. Even students in the midst of their bachelor’s...

Post

B.Sc. CSIT Entrance Model Question with Answer | Physics

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 represented by different units, such as length (L), time (T), mass (M), etc. In order for two quantities to have the same dimension, they must have the...

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...