Monday 12 September 2016

NIELIT A Level Data Structure through C++ Assignment

Assignment 1

The City College has a large library consisting of books of different categories. Few are listed below:

A. Fiction           B. Biography           C. Economics            D. Mathematics
E. Sports             F. Management       G. Computers and Communication
H. Taxation         I. Law                     J. Travel

Students and teachers borrow the library books. The students can take at time two books on subjects related to studies and one book from general interest.The teachers can take at time three books on subjects related to studies and two books from general interest. The college decides to provide an online facility to inquire on the availability of books in the library. Entering any of the following
can search the books available in the library:

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;
}