Sign in
Sign in
Recover your password.
A password will be e-mailed to you.
Browsing Category
BCS
Software Engineering Requirements Analysis
IEEE defines a requirement:
"A condition or capability needed by a user to solve a problem or achieve an objective";
Software Requirements can be of two types:
1. Functional requirements:…
SPPU PUNE F.Y.B.C.S(COMPUTER SCIENCE) MATHEMATICS PRACTICAL NEP 2024
Introduction to Python
TYBSC COMPUTER SCIENCE java practical slips solution
1) Create a class Sphere, to calculate the volume and surface area of sphere.
(Hint : Surface area=4*3.14(r*r), Volume=(4/3)3.14(r*r*r))
class surfaceareaandvolume {
public static void main(String args)
{
double r =…
Page Replacement Algorithms in Operating Systems (OS)
1) Write the simulation program for demand paging and show the page scheduling and total number of page faults according the FIFO page replacement algorithm. Assume the memory of n frames.
#include<stdio.h>
#include<conio.h>…
preemptive scheduling algorithm using Priority
Write the simulation program for preemptive scheduling algorithm using Priority. The arrival time, first CPU bursts and process priority of different jobs should be input to the system. The output should give the Gantt chart and Turnaround…
👉Introduction to HTML👈
OVERVIEW OF HTML
HTML stands for HyperText Markup Language. HTML is the standard markup language used for creating Web pages.
HTML was…
👉 S.Y.B.C.S .DS PROGRAM SLIPS 👈
1 .Sort a random array of integers (accpet all string the value of from user)is acending order by using bubble sort alorithem...
#include<stdio.h>
void bubble(int…
C Programming Examples
1.Program to Display "Hello, World!"
#include <stdio.h>
void main()
{
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
}
2. C Program to Print an Integer (Entered…