पुनःनिर्माण विधेयक संसदद्वारा स्विकृत, अागामी बैठकमा विधेयकमाथि छ...
top ad
Saturday, November 7, 2015
Friday, June 20, 2014
Oracle
Oracle
Lab Questions
1.
Create
the table Dept based on following information.
Column
Name
Datatype
Length
Constraint
ID
Number
5
Primary
Key
Dept_name
Varchar2
50
Not
Null
CREATE
TABLE `Dept` (
`Id` int(5) NOT NULL,
`Dept_name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`Id`)
)
2.
Insert
the values in Dept table as follows.
ID
...
Monday, June 16, 2014
linux method to write practical
Aim of the ExperimentCreate a user Student and assign the password to P@ssw0rd.ObjectiveThe main objective of the experiment is to create a user and assign password. We need to use ‘useradd’ command, which is responsible for creating a new user or update default new user information.The ‘useradd’ command creates a new user account using the values specified on the command line and the values from the system. The new user account will be entered into the system files (/etc/passwd) as needed, the home directory (/home/username) will be created, and initial files copied, depending on the command...
Linux Practical
Linux Lab QuestionsCreate a user Student and assign the password to P@ssw0rd.Open terminal Switch user to root # su password: <root password>Synax: useradd <username>passwd <username>solution: # useradd Student# passwd Studentnew unix password : P@ssw0rdretype new unix password : P@ssw0rdDisplay the name of current working directory.Syntax : pwd# pwd/home/studentList all the files and directories in /etc file system.Syntax : ls <dir name># ls /etcList all the hidden files and directories in your home directory.Syntax : ls –a <dir...
Thursday, June 12, 2014
Monday, December 30, 2013
C Programming Tutorial | 1. Introduction
C Programming is a compiled programming language which means it needs a compiler to check the syntax error/s. We use CodeBlocks or Dev C++ or any easy programs for code editing, debugging and compiling.
Note:
A C-file should be saved with an extension .c
It can be saved anywhere but needs to be compiled.
You can edit the source code but cannot edit the executable files (.exe) or object file (.obj/.o)
Example:
#include<stdio.h>
#include<conio.h>
#include my_header.h
These are the linking files or header files generally seen at the...
Friday, December 13, 2013
Subscribe to:
Posts (Atom)