Saturday 30 July 2016

Smart Phone Impact on compter

cbse-ugc-net-paper-i-solved-july-2016-p5

50. A person walks 10 m infront and 10 m to the right. Then every time turning to his left, he walks 5, 15 and 15 m respectively. How far is he now from his starting point?
(1) 20 m             (2) 15 m
(3) 10 m             (4) 5 m
Answer : 4

51. A is sister of B. F is daughter of G. C is mother of B. D is father of C. E is mother of D. A is related to D as
(1) Grand daughter     (2) Daughter
(3) Daughter-in-law    (4) Sister
Answer : 1

Friday 29 July 2016

January, 2013 M4.1-R4: APPLICATION OF .NET TECHNOLOGY

January, 2013
M4.1-R4: APPLICATION OF .NET TECHNOLOGY

NOTE:

1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates, who
complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS                                                                    TOTAL MARKS: 100

(PART ONE – 40; PART TWO – 60)

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 of the following statements is incorrect about delegate?
A) Delegates are reference types
B) Delegates are object oriented
C) Delegates serve the same purpose as function pointers in C and pointers to member
function operators in C++
D) Only one method can be called using a delegate.

Wednesday 27 July 2016

Vb Net Dynamic Array Tutorial

Vb .Net Dynamic Array Program

dynamic array vb.net

Public Class Form1
    Dim ar As New ArrayList, a As Integer
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

Vb Net One Dimentional array

VB.NET One Dimentional  Array

        Dim ar(4) As Integer
        For i = 0 To 4
            Console.Write("Enter {0} 'st number>> ", i + 1)
            ar(i) = Val(Console.ReadLine())
        Next
        For i = 0 To 4
            Console.Write(" {0},", ar(i))
        Next

More Example

C Sharp Visibility Mode Tutorial

C# Visibility Mode Program

class test
    {
         int a;
        protected int b;
        public test(int a,int b)
        {
            this.a = a;
            this.b = b;
        }
        public test()
        {

C Sharp Interface Tutorial

C# Interface Program

/* Error Code Attemt to multiple inheritance
     class a
    {
    }
    class b
    {
    }
    class c:a :b

C Sharp Inheritance Tutorial

C# Inheritance Program 

 class test
    {
       
        public void show()
        {
            Console.WriteLine("\nTest Calss");
        }
    }

C Sharp Constructure Inheritance Tutorial

C# Constructure Inheritance Program 

class test
    {
        int a, b;
        public test(int x,int y)
        {
            a = x;
            b = y;
        }

C Sharp Copy Constructure Tutorial

C# Copy Constructure Program

class test
    {
        String nm1, nm2;
        public test(string nm1, string nm2)
        {
            this.nm1 = nm1;
            this.nm2 = nm2;
        }
        public test(test ob) //Copy C

C Sharp Constructure Tutorial

C# Constructure Program 

 class test
    {
        int a, b;
       
        public test(int x,int y)
        {
            a = x;
            b = y;
        }
        public test(int x)
        {
            a = b = x;

C Sharp Overriding Tutorial

C# Overriding Program

 class test
    {
        public void show()
        {
            Console.WriteLine("\nInside of test class\n");
        }
    }
    class best : test

C Sharp Properties Tutorial

C# Properties Program

 class test
    {
        int x;
        public int setX
        {
            get
            {
                return x;
            }
            set
            {

C Sharp String Tutorial

C# String Tutorial

 class Program
    {
        static void Main(string[] args)
        {
            String str;
            Console.Write("Enter your string>> ");
            str = Console.ReadLine();

C Sharp Function Overload

C# Function Overload

class test
{
        public void sum()
        {
            int a, b, c;
            Console.Write("Enter first number>> ");
            a = int.Parse(Console.ReadLine());
            Console.Write("Enter second number>> ");
            b = int.Parse(Console.ReadLine());
            c=a+b;
            Console.Write("\nA={0}\nB={1}\nSum={2}",a,b,c);
        }

C Sharp This pointer tutorial

C# This pointer tutorial

class test
    {
        int x, y;
        public test(int x, int y)
        {
            this.x = x;
            this.y = y;

C Sharp Static Class Tutorial

C# Static Class Tutorial

class testmath
    {
        public static int sum(int a, int b)
        {
            return a + b;
        }
        public static Boolean prime(int a)
        {
            int b;
            for (b = 2; b < a; b++)
            {
                if (a % b == 0)
                    break;

C Sharp Delegate

C# Delegate 

A delegate is a simple class that is used to point to methods with a specific signature, becoming essentially a type-safe function pointer.
If you have a C++ background then  thinking of them as function pointers is helpful
A delegate can be seen as a placeholder for a/some method(s).
By defining a delegate, you are saying to the user of your class 
"Please feel free to put any method that match this signature here and it will be called each time my delegate is called".
class Program
    {
        delegate int mathop(int n, int m);//funtion pointer
        public  static int sum(int a, int b)
        {
            return a + b;
        }
        public  static int multi(int a, int b)
        {
            return a * b;
        }

C Sharp Class Basics Tutorial

C# Class Basics Tutorial

class student
    {
        int roll;
        string name;
        string city;
        public void setdata(int r, string n, string c)
        {
            roll = r;
            name = n;
            city = c;

C Sharp Variable Scope

C# Variable Scope

class Program
    {
        static void Main(string[] args)
        {
            int n = 10;
            {
                int m = 20;
                {
                    int p = 30;
                    Console.WriteLine("N={0}\nM={1}\nP={2}", n, m, p);
                }

C Sharp Array Tutorial

C# Array Tutorial

class Program
    {
        static void Main(string[] args)
        {
            int[] ar = new int[5];
            for(int i=0;i<5;i++)

C Sharp Input Tutorial

C# Input Tutorial

 class Program
    {
        static void Main(string[] args)
        {
            int a, b, c;
            Console.Write("Enter First Number>> ");
            a = int.Parse(Console.ReadLine());
            Console.Write("Enter Second Number>> ");
            b = int.Parse(Console.ReadLine());

C Sharp Switch Case Tutorial

C # Switch Case Program

 class Program
    {
        static void Main(string[] args)
        {
            int i;
            Console.Write("Enter day of the week>> ");
            i=int.Parse(Console.ReadLine());
            switch(i)
            {
                case 1:

C Sharp Nested If Else Tutorial

class Program
    {
        static void Main(string[] args)
        {
            int a, b, c;
            Console.Write("Enter Three numbers>>");
            a = int.Parse(Console.ReadLine());
            b = int.Parse(Console.ReadLine());
            c = int.Parse(Console.ReadLine());

            if (a > b)

C Sharp Loop Demo

class Program
    {
        static void Main(string[] args)
        {
            int i;
            i = 1;
            while (i < 10)
            {
                Console.WriteLine(i);
                i++;
            }
            Console.WriteLine("\nFor Loop\n");
            for (int j = 1; j <= 10; j++)
            {

If-Else Demo C Sharp

class Program
    {
        static void Main(string[] args)
        {
            int age;
            Console.WriteLine("Enter your age>> ");
            age = int.Parse(Console.ReadLine());
            if (age > 18)
                Console.WriteLine("Eligible");
            else

Tuesday 26 July 2016

C++ Java Polymorphism

Stack Using Single Link List

#include<stdio.h>
#include<conio.h>
/*  **********************************
Girfa Student Help
Stack Using Single Link List
Programmer Name : Mritunjoy Sengupta
for DS program visit :http://girfahelp.blogspot.in/p/data.html
    *************************************/
typedef struct n
{
int data;
struct n *next;
}node;
node *start=NULL;
node* create(int);
void push(int);
void pop();
void print();

Double Link List Complete Program

#include<stdio.h>
#include<conio.h>

/* ************************************
Girfa Student Help
Double Link List Program
for More DS Program Visit : http://girfahelp.blogspot.in/p/data.html
Programmer Name : Mritunjoy Sengupta
   ***************************************
*/

typedef struct n
{
int data;
struct n *pre,*next;
}node;
node* start=NULL;

node* create(int);
void addfirst(int);
void addlast(int);
void addbefore(int);
void addafter(int);
void del(int);
void print();

Monday 25 July 2016

UGC Net General Paper July-16 Set4

43. What are the barriers to effective communication?
  (1) Moralising, being judgemental and comments of consolation.
  (2) Dialogue, summary and self-review.
  (3) Use of simple words, cool reaction and defensive attitude.
  (4) Personal statements, eye contact and simple narration.
Answer : 1

44. The choice of communication partners is influenced by factors of
   (1) Proximity, utility, loneliness
   (2) Utility, secrecy, dissonance
   (3) Secrecy, dissonance, deception
   (4) Dissimilarity, dissonance, deviance
Answer : 1

Single Link List Through C

#include<stdio.h>
#include<conio.h>
/* *****************************
 Girfa Student Help
 Programmer Mrityunjoy Sengupta
 for more DS Code : Visit :http://girfahelp.blogspot.com/p/data.html

   ******************************
*/
typedef struct n
{
 int data;
 struct n *next;
}node;
/* Function Prototype */
node *start=NULL;/* Global Variable point first node*/
node* create(int);/* Create dynamic space for Node */
void addbegin(int);/* Add an Item to starting position of list  */
void addlast(int);/* Add an Item to last position of list  */
void addbefore(int);/* Add item before a number */
void addafter(int); /* Add item after a number */
void del(int);
void print();
void main()
{
 int n,s,opt;
 do
 {
  clrscr();
 printf("\n1. Print\n2. Add First\n3. Add Last\n4. Add Before\n5. Add After\n6. Delete\n0. Exit\n\nEnter Your Choice>> ");
  scanf("%d",&opt);

  switch(opt)

January, 2014 M4.1-R4: APPLICATION OF .NET TECHNOLOGY

 January, 2014
M4.1-R4: APPLICATION OF .NET TECHNOLOGY

NOTE:

1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.
2. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be supplied at the table when the answer sheet for PART ONE is returned. However, candidates,who complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following
instructions therein. (1x10)
1.1 The Java and Visual Basic .NET belong to this type of programming language.
A) assembly language
B) machine language
C) high level programming language
D) object oriented programming language

Saturday 23 July 2016

UGC-Net-16 General Paper Set3

        31. The format of thesis writing is the same as in
(1) preparation of a research paper/article
(2) writing of seminar presentation
(3) a research dissertation
(4) presenting a workshop/conference paper
Answer : 3

32.   In qualitative research paradigm, which of the following features may be considered critical?
(1) Data collection with standardised research tools.
(2) Sampling design with probability sample techniques.
(3) Data collection with bottom-up empirical evidences.
(4) Data gathering to take with top-down systematic evidences.
Answer : 3

Wednesday 20 July 2016

Insert Record in Access Autonumber field using SQL with VB.Net

Access support auto number in table field data type as double. While using access database 
direct there is no need to provide autonumber data, Access automatically generate it.

It is good for direct working with Access but what about if you’re making a project and want to add record through some programming language like VB.net then it creates many types of  problems. Details are following


  • If attempt to insert empty value like direct working, does not support
  • If a constant is provide every time then there is not any importance of autonumber because we are not using its actual uses because auto generate number  minimize the programmer manual work by automate unique number entry to every time

Sunday 17 July 2016

July, 2014 M4.1-R4: APPLICATION OF .NET TECHNOLOGY

 July, 2014
M4.1-R4: APPLICATION OF .NET TECHNOLOGY

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question
paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 The purpose of the Common Language Infrastructure (CLI) is to provide a language-neutral
platform for the following:
A) Application development environment only
B) Both application development and execution environment only
C) Abstraction, Object of a class, Inheritance, Polymorphism
D) Application development and execution environment, including functions for exception
handling, garbage collection, security, and interoperability.

1.2 BOXING in .Net allows user to convert
A) An integer type to double
B) A reference type to a value type
C) A value type to a reference type
D) A double type to integer

January, 2015 M4.1-R4: APPLICATION OF .NET TECHNOLOGY

January, 2015
M4.1-R4: APPLICATION OF .NET TECHNOLOGY

NOTE:
IMPORTANT INSTRUCTIONS:
1. Question Paper in English and Hindi and Candidate can choose any one language.
2. In case of discrepancies in language, English version will be treated as final.
3. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
4. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question
paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
5. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 The purpose of the Common Type System (CTS) of Common Language Runtime (CLR) is to
provide a language-neutral platform for the following:
A) Support multiple languages because it contains a type system that is common across all the
languages of only .NET Framework Application development environment.
B) CTS provides a base set of data types, where the size of integer and long variables is same
across all .NET-compliant programming languages.
C) CTS provides the data type system where int32 to represent a 4 byte integer value.
D) All of the above

Saturday 16 July 2016

July 2015 M4.1-R4: APPLICATION OF .NET TECHNOLOGY

 July, 2015
M4.1-R4: APPLICATION OF .NET TECHNOLOGY

NOTE:
IMPORTANT INSTRUCTIONS:

1. Question Paper in English and Hindi and Candidate can choose any one language.
2. In case of discrepancies in language, English version will be treated as final.
3. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
4. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question
paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
5. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 To create an object you must first create
A) Class
B) Constructor
C) Instance
D) Method

July, 2010 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

July, 2010
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be answered in
the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 By default a real number is treated as a
A) float
B) double
C) long double
D) integer
Answer

Thursday 14 July 2016

UGC Net July 16 General Paper Part2

21. Which of the following are the fundamental duties?
(a) To respect the National Flag
(b) To Protect and improve the natural environment
(c) For a parent to provide opportunities for education to his/her child.
(d) To protect monuments and places of national importance
Select the correct answer from the codes given
Codes : 
(1) (a),(b) and (c)
(2) (a),(b) and (d)
(3) (a),(c) and (d)
(4) (a),(b),(c) and (d)
Answer : 1

22. Which of the following statements are correct in respect of Niti Aayog?
(a) It is a constitutional body
(b) It is a statutory body.
(c) It is neither a constitutional body for not a statutory body
(d) It is a think-tank
Select the correct answer from the codes given below:
(1) (a) and (d)
(2) (b) and (d)
(3) (c) and (d)
(4) (b),(c) and (d)
Answer : 3

23. Which of the following core values among the institutions of higher education are promoted by the NAAC (National Assessment and Accreditation Council)?
(a) Contributing to national development.
(b) Fostering global competencies among the students.
(c) Inculcating a value system among students and teachers
(d) Promoting the optimum utilization of the infrastructure.
Select the correct answer from the codes given below:
Codes : 
(1) (a), (c) and (d)
(2) (a),(b) and (c)
(3) (a) ,(c) and (d)
(4). (a),(b),(c) and (d)
Answer : 2

24. The best way for providing value education is through
(1) discussion on scriptural text
(2) lectures/discourses on values
(3) seminars/symposia on valus
(4) mentoring/reflective sessions on values
Answer : 4

25. A college level assistant professor has planned his/her lectures with an intent to develop cognitive dimensions of students centered on skills of analysis and synthesis. Below, given are two sets of items Set - I consisting of levels of cognitive interchange and Set - II comprising basic requirements for promoting them. Match the two sets and indicate your answer by choosing the correct alternative from the code:
Set - I                                         Set - II
(Levels of Cognitive              (Basic requirements for promoting
Interchange)                            cognitive interchange)
a. Memory level                        i. Giving opportunity for discriminating examples
and non-examples of a point.
b. Understanding level               ii. Recording the important points made
during the presentations.
c. Reflective level                    iii. Asking the students to discuss various
items of information.
iv. Critically analyzing the points to be
made and discussed.
Codes:
      a   b   c
(1) ii   iv   i
(2) iii  iv   ii
(3) ii   i    iv
(4) i   ii    iii
Answer : 3

26. Which set of learner characteristics may be considered helpful in designing effective teaching-learning systems? Select the correct alternative from the codes given below:

(i) Prior experience of learners in respect of the subject.(ii) Interpersonal relationships of learner’s family friends.(iii) Ability of the learners in respect of the subject. (iv) Student’s language background.(v) Interest of students in following the prescribed dress code.(vi) Motivational-orientation of the students.Codes:
(1) (i), (ii), (iii) and (iv)             (2) (i), (iii), (iv) and (vi)

(3) (ii), (iii), (iv) and (v)            (4) (iii), (iv), (v) and (vi)

Answer : 2

27. Assertion (A): The purpose of higher education is to promote critical and creative thinking abilities among students.
Reason (R): These abilities ensure job placements.
Choose the correct answer from the following code:
(1) Both (A) and (R) are true and (R) is the correct explanation of (A).
(2) Both (A) and (R) are true but (R) is not the correct explanation of (A).
(3) (A) is true and (R) is false.
(4) (A) is false and (R) is true.
Answer : 2

28. Match the items of the first set with that of the second set in respect of evaluation system. Choose the correct code:

                  Set - I                                                     Set - II
a. Formative evaluation                      i. Evaluating cognitive and co-cognitive aspects
with regularity
b. Summative evaluation                   ii. Tests and their interpretations based on a
group and certain yardsticks
c. Continuous and comprehensive             iii. Grading the final learning outcomes
evaluation                                        
d. Norm and criterion referenced      iv. Quizzes and discussions
tests   
Codes:
      a    b    c   d
(1) iv    iii   i     ii
(2) i      ii   iii   iv
(3) iii    iv   ii    i
(4) i     iii   iv   ii
Answer : 1

    29. Select the alternative which consists of positive factors contributing to effectiveness of teaching:
List of factors:
(a) Teacher’s knowledge of the subject.
(b) Teacher’s socio-economic background.
(c) Communication skill of the teacher.
(d) Teacher’s ability to please the students.
(e) Teacher’s personal contact with students.
(f) Teacher’s competence in managing and monitoring the classroom transactions.
Codes:
(1) (b), (c) and (d)                    (3) (c), (d) and (f)
(2) (b), (d) and (e)                    (4) (a), (c) and (f)

Answer : 4


30 .The use of teaching aids is justified on the grounds of

(1) Attracting student’s attention in the class room.
(2) Minimizing indiscipline problems in the classroom.
(3) Optimizing learning outcomes of students.
(4) Effective engagement of students in learning tasks.
Answer : 3

Back



January, 2011 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

January, 2011
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be
answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,
candidates, who complete PART ONE earlier than one hour, can collect the answer book for
PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 ‘C’ Programming Language was developed and written by
A) Martin Richards
B) Dennis Ritchie
C) Ken Thompson
D) Herman Hellorith
Answer 

July, 2011 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

July, 2011
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be answered in
the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 of the following cannot be checked in a switch case statement?
A) Character
B) Integer
C) Float
D) enum
Answer

Wednesday 13 July 2016

UGC Net Computer Science Genaral Paper July 16


1. In which year , the percentage profit earned by the company B is less then that of company A ?

(1) 2012

(2) 2013

(3) 2014

(4) 2015
Answer : 2
2. If the total expenditure of the two companies was ~9 lakh in the year 2012 and the expenditure of A and B were in the ratio 2:1, then what was the income of the company A in that year?

(1) 9.2 lakh

(2) 8.1 lakh

(3) 7.2 lakh

(4) 6.0 lakh
Answer : 2

January, 2012 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

January, 2012
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,candidates, who complete PART ONE earlier than one hour, can collect the answer book for
PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 What would be value of j after the following is executed?
k=17;
j=6;
if (k < 10)
j=8;
j=j+1;
j=j+2;
A) 8
B) 9
C) 7
D) 10
Answer 

July, 2012 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

 July, 2012
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be
answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates, who complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 of the following is not an unconditional control statement in ‘C’?
A) break
B) continue
C) exit()
D) while
Answer


Tuesday 12 July 2016

July- 2013 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE (Solve)

 July, 2013
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE
NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the
question paper, as per the instructions contained therein. PART ONE is NOT to be
answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,
candidates, who complete PART ONE earlier than one hour, can collect the answer book for
PART TWO immediately after handing over the answer sheet for PART ONE.
TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 In the passage of text, individual words and punctuation marks are known as
A) Constants
B) Keywords
C) Operators
D) Tokens
Answer 

January 2013 M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

 January, 2013
M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be answered in
the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)


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 If a=8, b=3 and c=-5 are integers, then value of a*b/c is
A) -4
B) -2.8
C) +2.8
D) +3
Answer

Monday 11 July 2016

Passing more than one control to single java script function

The Javascript function has built in object called arguments like this pointer in C++. When a function of Java script is called all the arguments, copy to built in arguments array. You use this array as normal as another array following code is a demo of my word..


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Multiple Argument to Java Script Function : Girfa</title>
<script language="javascript">
function read_data()
{

var i;

for(i=0;i<arguments.length;i++)
{
var ob=document.getElementById(arguments[i]);
s1.innerHTML=s1.innerHTML +  ob.value +  '<br>';
}
}
</script>
</head>

M3-R4: PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE January, 2014

January, 2014
M3-R4: PROGRAMMING & PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,candidates, who complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 What will be output if you will compile and execute the following c code?
#include<stdio.h>
int main(){ int a=5; float b;
printf("%d",sizeof(++a+b)); printf(" %d",a); return 0;}
A) 2 6
B) 4 6
C) 2 5
D) 4 5
Answer

M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE July, 2014


M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE
July, 2014

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions.
2. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question
paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 Which of the following function declaration need not have a return statement in its body?
A) int a(char *s)
B) void b(int a[], int n)
C) float *c()
D) short d(long x)
Answer

1.2 Identify the correct sequence of steps to run a program
A) link, load, code, compile and execute
B) code, compile, link, execute and load
C) code, compile, link, load and execute
D) compile, code, link, load and execute
Answer

M3-R4: PROGRAMMIMG AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE January, 2015


M3-R4: PROGRAMMIMG AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
IMPORTANT INSTRUCTIONS:

1. Question Paper in English and Hindi and Candidate can choose any one language.
2. In case of discrepancies in language, English version will be treated as final.
3. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
4. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question
paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
5. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates,
who complete PART ONE earlier than one hour, can collect the answer book for PART TWO
immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 The two type of file structures existing in VSAM file are
A) Key sequenced structures, entry sequenced structures
B) Key sequenced structure, exit sequenced structures
C) Entry sequenced structures, exit sequenced structures
D) None of the above

View

M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE July, 2015


M3-R4: PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE

NOTE:
IMPORTANT INSTRUCTIONS:

1. Question Paper in English and Hindi and Candidate can choose any one language.
2. In case of discrepancies in language, English version will be treated as final.
3. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
4. PART ONE is to be answered in the OMR ANSWER SHEET only, supplied with the question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the answer book.
5. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,candidates, who complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 “OMR” answer sheet supplied with the question paper, following instructions therein. (1x10)

1.1 Which of the following is the correct order of evaluation for the below expression?
z = x + y * z / 4 % 2 - 1
A) * / % + - =
B) = * / % + -
C) / * % - + =
D) * % / - + =

View Answer

Sunday 10 July 2016

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN-July-12

Page 1 of 4 July, 2012
M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be
answered in the answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However,candidates, who complete PART ONE earlier than one hour, can collect the answer book for
PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS
 TOTAL MARKS: 100

(PART ONE – 40; PART TWO – 60)
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 E-mail message can be protected by
A) Encryption
B) Caching
C) Mirroring
D) Shadowing
Answer

M2-R4 INTERNET TECHNOLOGY AND WEB DESIGN-Jan-13

 January, 2013
M2-R4 INTERNET TECHNOLOGY AND WEB DESIGN
NOTE:
1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and
PART TWO contains FIVE questions.
2. PART ONE is to be answered in the TEAR-OFF ANSWER SHEET only, attached to the
question paper, as per the instructions contained therein. PART ONE is NOT to be answered in the
answer book.
3. Maximum time allotted for PART ONE is ONE HOUR. Answer book for PART TWO will be
supplied at the table when the answer sheet for PART ONE is returned. However, candidates, who
complete PART ONE earlier than one hour, can collect the answer book for PART TWO immediately after handing over the answer sheet for PART ONE.

TOTAL TIME: 3 HOURS TOTAL MARKS: 100
(PART ONE – 40; PART TWO – 60)

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 TCP is a commonly used protocol at
A) Applications layer
B) Network layer
C) Transport Layer
D) Physical Layer
Answer

Tuesday 5 July 2016

Marquee