Thursday 8 September 2016

NIELIT A Level DATA STRUCTURE THROUGH C++ Syllabus

Objective of the Course

The objective of the course is to introduce the fundamentals of Data Structures, Abstract concepts and how these concepts are useful in problem solving.

After completion of this course student will be able to -

  • To Understand and the concepts of object oriented language such as c++
  • Analyze step by step and develop algorithms to solve real world problems.
  • Implementing various data structures viz. Stacks, Queues, Linked Lists, Trees and Graphs.
  • Understanding various searching & sorting techniques.

frame collage effect

collage frame

This is effect is pretty simple, you can also make collage effect.  It is not any new or advance feature of photo shop it’s just a trick with combination of rectangle and selection tool follow the steps

Wednesday 7 September 2016

Website selection text background color change

When you select a text from a website then you will notice that selected text background color will be blue because this is default setting. You can change selection background color for enhance your website user experience . CSS3 include selection style which enable us to accomplish this. Use following code..
selection text background color change

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Girfa Student Help </title>
<style type="text/css">
::selection {
  background: #ffb7b7; /* Global Selection Color */
 
}
.yellow::selection
{
background:#FF0;
}
.green::selection
{
background:#0C0;
}

NIELIT A Level July, 2010 A5-R4: STRUCTURED SYSTEM ANALYSIS & DESIGN

NIELIT A Level July, 2010
A5-R4: STRUCTURED SYSTEM ANALYSIS & DESIGN

PART ONE
(Answer all the questions)

1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the “tear-off” answer sheet attached to the question paper, following instructions therein. (1x10)

1.1 Which step of SDLC performs cost-benefit analysis?
A) Feasibility Study
B) Analysis
C) Design
D) None of the above
1.2 The relationships among elements within a module is called
A) Modular Coupling
B) Modularization
C) Modular Cohesion
D) None of the above