section .data array db 05h,02h section .bss buff resb 02 section .text global _start _start: mov rsi,array mov r...
Home
Archive for
2014
Sorting using Python
Click here for Sorting using python Alternative Download link If any problems while downloading,click on print but...
VHDL DELD Codes and Waveforms
Click here for VHDL
JAVA Codes OSA
Click here to view JAVA Source codes for OSA
Bubble Sort in Python
def bubblesort(mylist): i=1 n=len(mylist) while i<n: j=0 while j<n-1: if mylist[j]>...
How to Download from SKNSITS Comp
Hello All ,Deep apologies for downloads problems,Follow steps below to download files. Steps: - Click Print button located left to downloa...
Display CPU Info in Java
public class CpuInfo { public static void main(String[] args) { String nameOS = "os.name"; S...
C Program to Display CPU Information
#include<stdio.h> int main() { system ("cat /proc/cpuinfo"); return 0; }
Submission Certificates
DELD Index DELD Certificate DSPS Certificate cccc MA Certificate OSA Certificate
OSA Writeup PDFs
Click here to download OSA Writeup PDFs
Program to READ and DISPLAY ASCII CONTENTS OF FILE already created
;GROUP B ASSIGNMENT ;15.Write a Program to READ and DISPLAY ASCII CONTENTS OF FILE ;I have already created 'MAL_LAB.t...
ALP to print contents of GDTR,LDTR,IDTR,TR
;This program first check the mode of processor(Real or Protected), ;then reads GDTR, LDTR, IDTR, TR & MSW and displa...
ALP to Check whether system is in Real or Protected mode (WITHOUT USING MACRO)
section .data msg1 db " System is in Protected mode",10,13 len1 equ $-msg1 msg2 db "System is...
ALP to Check whether system is in Real or Protected mode (BY USING MACRO)
section .data msg1 db 10,'Processor is in Real Mode' len1 equ $-msg1 msg2 db 10,'Processor is in Protected Mod...
OSA Lab Manual
Click here to View or Download OSA Lab Manual
OSA Group B: Perl program to read file and count lines, character and words
PDF Download Source code: #!/usr/bin/perl while(1){ print "----------------------------"; print "\r\nPress 1 to read ...
OSA Group B: Shell program to convert lowercase to uppercase
echo "Enter filename: " read fname echo "Converting all lower case letter to upper case letter of file: $fname" cat ...
Dictionary CPP
#include<stdlib.h> #include<iostream> #include<stdio.h> #include<string.h> using namespace std; class dictiona...
Java Applet to display button click events.
import java.awt.*; import java.applet.Applet; import java.awt.*; import java.awt.event.*; import java.util.ArrayList; import java.appl...
C++ program to i dentify the available memory in the system
#include<stdio.h> #include<sys/sysinfo.h> int main() { struct sysinfo myinfo; unsigned long total_bytes; sysinfo(&myinfo); ...
Sort vegetable and fruit according to customer value
#include<iostream> #include<stdlib.h> #include<string.h> using namespace std; #define MAX 50 //Vegetables class ...
PERL And Python PPTs
Click here to download PPT of PERL Click here to download PPT of Python
OSA Group B: Practical 4: C Program to assign nice values to processes and dynamically monitor them.
#include<stdio.h> #include<stdlib.h> #include<sys/resource.h> #include<unistd.h> int main() { int rc,nc; int...
OSA Group B: Practical 3: C Program to create a child Process
#include<stdio.h> #include<unistd.h> int main() { int pid; pid=fork(); if(pid==0) { printf("\n After fork")...
OSA Group B Assignments
Batch 1 - C Programming Language : Prac 1 Prac 2 Pract 3 Pract 4 Pract 5 : to identify available memory Pract 6 : start, stop an...
OSA Group B: Practical 1 and 2 PDF
Click here to download Practical 1 PDF Click here to download Practical 2 PDF
OSA Group B: Practical 2: C/C++ Program to display the list of devices connected to your system
# include <dirent.h> # include <stdio.h> # include <sys/stat.h> # include<string.h> # include<fcntl.h> void q...
OSA Practical : Group B: C/CPP Program to Display Logged in Users
#include<pwd.h> #include<sys/types.h> #include<unistd.h> #include<stdio.h> main() { struct passwd *procuid; ...
SKNSITS App : Now on Windows Phone!
Hello all! Here's the good news for all Windows Phone Users today.Now get Access to SKNSITS Comp on the go with Standalone App!
DSPS Practical : Tic Tac Toe
#include <iostream> using namespace std; char sq[10] = {'0','1','2','3','4','5',...
DSPS Practical : Binary Search Tree
#include <iostream> #include<cstdio> #include<cstdlib> using namespace std; class binary { private: struct tree {...
DSPS Practical : Doubly Circular Linked List (DCLL)
#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; struct node { int info; struct no...
Subscribe to:
Posts
(
Atom
)