Ans : Pseudo-code (derived from pseudo-code) is a compact and informal high level description of a computer programming algorithm that uses the structural conventions of some programming language. Unlike actualcomputer language such as C,C++ or JAVA, Pseudo-code typically omits details Read More …
Blog
Ques : Describe Basic Techniques for Design of Efficient Algorithm ?
Ans : There are basically 5 fundamental techniques which are used to design an algorithm efficiently: Divide-and-Conquer Greedy method Dynamic Programming Backtracking Branch-and-Bound In this section we will briefly describe these techniques with appropriateexamples. Divide & conquer technique is a Read More …
Ques : Describe Data Recovery Management
Ans : EFS designed to be implemented by a user, and is designed to be transparent; it can be used where it was not initially intended. EFS allow for Recovery Agents and the default Recovery Agent is the Administrator. These Read More …
Ques : What is IPSec ?
Ans : IPSec is a framework for ensuring secure private communications over IP networks. IPSec provides security for transmission of critical and sensitive information over unprotected networks such as the Internet. lpsec VPNs use the services defined within Ipsec to Read More …
Ques : What is NAT and ICS ?
Ans : The security systems and methods are for securing operating system and data on physical hard disk. This security system is of no use if an attacker is able to sniff network packets. Network Address Translation (NAT), is used Read More …
Ques : What is Moving Data and Permission ?
Ans : When data /files are moved from one folder to the another, what will happen to the security permission that were set to secure these files. When files that are secured on an NTFS partition, how their security settings Read More …
Ques : Describe Browsing Network Resources
Ans : When installed, Windows 2000 creates a set of folders to store program and data files. Windows folders and subfolders correspond to DOS directories and subdirectories but system folders do not. Some of the system folders are: Desktop My Read More …
Ques : Describe VBScript procedures
Ans : In VBScript there are two kinds of procedures; the Sub procedure and the Function procedure. Sub ProceduresA Sub procedure is a series of VBScript statements, enclosed by Sub and End Sub statements, that perform actions but don’t return Read More …
Ques : What is VBScript Constants ?
Ans : A constant is a meaningful name that takes the place of a number or string and never changes. VBScript defines a number of intrinsic constants. You can get detailed information about these intrinsic constants from the VBScript Language Read More …
Ques : Describe variables of VBScript
Ans : A variable is a convenient placeholder that refers to a computer memory location where you can store program information that may change while your script is running. For example, you might create a variable called Click count to Read More …