2023 2024 EduVark > Education Discussion > Entrance Exams


  #2  
April 14th, 2015, 10:36 AM
Super Moderator
 
Join Date: Mar 2012
Re: EIL Management Trainees Exam paper for CSE stream

Ok, as you want the question paper of Computer Science of EIL Management Trainees Exam paper so here I am providing you.

EIL Management Trainees Exam CS question paper

Question paper is based on the following topics

General Aptitude
Oil & energy
World affairs
Indian culture
Sports
Quantitative Aptitude
Logical Reasoning
Economics
Industry

Technical Section

Digital Logic

Minimization
Number representation and computer arithmetic point
Logic functions
Combinational and sequential circuits

Programming and Data Structures

Binary search trees
Functions
Programming in C
Recursion
Stacks
Arrays
Binary Heaps
Binding Abstract
Data types
Linked Lists
Parameter passing
Queues
Scope
Trees

Computer Organization and Architecture

Arithmetic Logic Unit and data-path
Cache and main memory
Instruction pipelining
Machine instructions and addressing modes
Secondary storage
C P U control design
Input/ Output interface
Interrupt and DMA mode
Memory interface

Theory of Computation

Undecidability
Regular languages and finite automata
Recursively enumerable sets and Turing machines

Compiler Design

Syntax directed translation
Intermediate and target code generation
Parsing
Lexical analysis
Runtime environments
Basics of code optimization

Algorithms

Analysis
Notions of space and time complexity
Design: Greedy approach
Divide-and conquer
Connected components
Shortest paths
Sorting
Asymptotic notation
Worst and average case analysis
Dynamic programming
Tree and graph traversals
Spanning trees
Hashing
Searching
Basic concepts of complexity classes P, NP, NP-hard, NP-complete

Databases

Relational model
Transactions and concurrency control
Database design
File structures
ER-model
Query languages (SQL)

Operating System

Concurrency
CPU scheduling
Deadlock
File systems
Inter-process communication
Memory management and virtual memory
Processes
Synchronization
I/O Systems
Threads

Information Systems and Software Engineering

Information gathering
Requirement Analysis
Data flow diagrams
Process specifications
Feasibility analysis

Computer Networks

LAN technologies
Routing algorithms
Flow and error control techniques
Congestion control

Question paper-


EIL Technical Questions For CSE,EIL Latest CSE Question papers,EIL Solved CSE Question papers,EIL Previous CSE Questions and Answers

1 Which of the following is/are storage class
A. Automatic
B. Static
C. Allocated
D. All of Above
Ans: D

2 What will the output of following code
{
int x = 10, y = 15;
x = x++;
y = ++y;
printf(%d, %d \n, x, y);
}
A. 10, 15
B. 10, 16
C. 11, 16
D. 11, 15
Ans:C

3 NULL Pointer can be used as
A. To stop indirection in a recursive data structure
B. As an error value
C. As a sentinel Value
D. All of Above
Ans

4 Which one of the following is not the advantages of functions?
A. Debugging is easier
B. Testing is easier
C. Recursive call is possible
D. It consumes low disk space
Ans

5 What is the result of the following statement?
x = y = z = 0;
A. x = 0, y = Null, z = Null
B. x = 0, y = 0, z = 0
C. x = 0, y = 1, z = 2
D. the statement is incorrect
Ans:B

6 What is the result of the following statement?
X = 10;
y = ++x;

A. x = 10, y = 10
B. x = 10, y = 11
C. x = 11, y = 10
D. x = 11, y = 11
Ans

7 Which of the following statement creates infinite loop?
A. for ( ; ; )
B. while ( ; ; )
C. when ( ; ; )
D. if( ; ; )
Ans:A

8 The use of break Statement
A. to terminate a case in the switch statement
B. to force immediate termination of a loop
C. Both A & B
D. Only A
Ans:C

9 to use the function tolower(), which of the following header file should include
A. string.h
B. conio.h
C. ctype.h
D. Dont need any header file
Ans: C

10 What is the function overloading?
A. Calling a function from another function
B. Having more than one functions of same name
C. Calling a function from itself
D. There is no such term in C/C++
Ans:B

11.
A.2
B.3
C.1
D.4
Ans: A

12.How do you get information from a form that is submitted using the "get" method?
A.$_GET[];
B.Request.Form;
C.Request.QueryString;
D.$_POST[];
Ans:A

13.Full form of PHP
A.PreHypertextProcessor
B.HypertextPreprocessor
C.Hypertext Postprocessor
D.PostHypertextProcessor
Ans:C

14.
A.43
B.1
C.8
D.6
Ans:B


Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 08:53 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8