.
 Vyom World.com  . Let's Touch the Sky Together!  
.
. . . . . . .
 Home
VyomWorld.com Home
Free Magazines!
VyomLinks.com Home
JobsAssist.com Home
Vyom Network
Contact Us
 Jobs & Careers
Resume Submitter
Placement Papers
IT Companies Directory
Computer Jobs
Interview Questions
Online Exams
Vyom Career eMag.
 Fun
Send FREE SMS!
SMS Jokes
 Source Codes Library
Source Codes Home
ASP Source Codes
C Source Codes
C++ Source Codes
COBOL Source Codes
Java Source Codes
Pascal Source Codes
Submit Source Codes
 GATE
GATE an Overview
GATE Preparation
Study Materal
 GRE
GRE an Overview
GRE Questions
GRE Preparation
GRE Universities
 TOEFL Preparation
TOEFL Resources
 GMAT Preparation
GMAT Resources
 MBA Preparation
MBA Resources
 Networking Concepts
Networking Concepts
 Testing Preparation
Testing Resources
 Webmasters
Free Traffic Builder
Webmaster Articles
Web Hosting
 Tutorials
Hardware Tutorial
1500 Free eBooks New!
 FREE Publications
Vyom Career eMag.
 
.
Get 9,000+ Interview Questions & Answers in an eBook.


  • 9,000+ Interview Questions
  • All Questions Answered
  • 5 FREE Bonuses
  • Free Upgrades

    Get it now!


    Post your Resume to 5800+ Companies
    Reliable Web Hosting

  •  
     
     
    Get 9,000+ Interview Questions with Answers in an eBook
    Home » Placement Papers » BlueStar Placement Papers » BlueStar : Placement Paper 5

    New Click here to Download 2010 Latest placement papers of this company New


    BlueStar: Placement Paper 2002,MESRA










    ORDER MAY BE DIFFERENT.

    30 qs on apti and time : 20 min.

    1.complete the series
    1 6 3 7 5 8 7 ?
    ans: 9

    2. if circle is one octagon is
    2 4 6 8 or 10

    3.pick the odd one out
    bend shave chop whittle shear

    4.2 persons start from a pt. and go in opposite
    directions. After going 3 km they turn left and
    walk 4
    km .how far r they now?
    Ans: 10 km

    5.there was a ques on work something like 2
    typists
    type 2 papers in 4 hrs then in how much time will 5
    typists take or something like that
    answer is 6 .


    6. there were 2 ques on proverbs u were supposed
    to tell the meaning.they were easy.
    birds of same feathers flock together .
    ans . person is known by the company he keeps
    don't count ur chicks before they r hatched
    ans .

    7 jumbled letter hcpraateu is parachute .

    8 seema likes 225 but not 428 , 900 but not 811 she likes 

    1. 1600(ans)
    2 .819


    9 . ans grass , scape ( two qs ) put a word before and after 
    to generate a new word . ans . land

    10 . QUIET IS TO SOUND THEN DARKNESS IS TO 
    1 SUNLIGHT(ANS)

    11 . BREAK , LIGHT , TIME 
    ADD A 3 LETTER WORD TO MAKE A NEW WORDs ( ans .day)

    12 . odd mann out 
    1 bend 2 sheer 3 chop 4 . 5 whittle ( ans bend)


    13 . 1/4 sec -> 6 feet then 10 sec === 240 feet

    14 . fig banana, apple etc (ans . 25)


    15 1/5 of 1/8 of etc ( ans .5)


    16 anlogy : potato : raddish

    17 . a word used in a senetence ( a person with preconcieved opinion)
    ans : prejudice .

    18 . 3 cent me 5 pencil then 60 cent me kitna pencils etc 


    19 . there are 1200 elephant 400 are pink and some are blue ,some with both colors 
    1 true 2 false ( ans . false)


    20 vowel b/w j and t
    ans . o

    21 . how many 7's b/w 1 and 100

    22 . odd mann out cat , dog , hampster , rabbit ,elk

    23 . in party a husband a wife , their two sons with wives and 4
    children from each son then total no' of peoples in party
    ans 14.







    technical



    /*****************BLUE STAR BIT,MESRA 2002****************/
    there were two sections A and B
    section A was mandatory
    section B contained 4 parts. u have to solve problems of any two parts 


    /******************Section 'a'*******************************/

    20 questions were asked

    1.configuration of an UART in serail communication has 
    a.clock signal
    b.baud rate,stop bit,data length
    c.both
    d.none

    2.deadlock happens when two process waiting for the resources used by each other in this condition
    a.both process knows that they are waiting for each other
    b.one process knows that other is waiting
    c.both a and b
    d.none

    3.physical memory location in running program is resolved by
    a.linker
    b.compiler
    c.loader
    d.none

    4.task switching is switching between 
    a.process
    b.threads
    c.concurrent part in same progarm
    d.all

    5.in 2-pass compiler
    a.identifier can be used without its declaration
    b.indentifier should be declared before its first use.
    c.both
    d.none

    6.difference between functional/ordinary SDLC and object-oriented SDLC is
    a.in functional SDLC the develpoment time is more than design time
    b.in object oriented SDLC ,design time is more than development time.
    c.both
    d.none

    7.which of the following is not a bus-interface for a microprocessor
    a.ISA
    b.AGP
    c.PCI
    d.ICE

    8.which of the following statement are true for structure 
    a. a structure can contain a pointer to itself.
    b. structure can be compared
    c.both
    d.none

    9.which is not defined as codd's rule of RDBMS
    a.comprehensive data sub language rule
    b.view updates.
    c.physical data dependency
    d.integrity dependency

    10.encryption means
    a.text to cipher
    b.cipher to text
    c.
    d.

    11. in microprocessor over clocking will result in
    a.overheating
    b.malfunctioning
    c.
    d.

    12.cache is
    a..ROM
    b.RAM
    c.PROM
    d.EPROM

    13.unix os implements two types of pipes ,one is formatted and other is
    a.low level pipes
    b.high level pipes
    c.middle level pipes
    d.none

    /*******************section B ********************************/

    -------part A (c and unix, 10 questions were asked)-----

    1.void main()
    {
    extern int a;
    a=10;
    printf("%d",sizeof(a));
    }
    will
    a. give linker error- a not defined
    b. print 10
    c. give compiler error
    ans a;
    2.int a[10];
    a[0]=12;
    a[12]=17;
    printf("%d,%d",a[0],a[12]);
    will compiler show any error?
    ans no;
    3.socket() is a
    a.system call
    b. library function
    c.both
    d. none
    ans b;
    4.the parameter of sizeof operatror is
    a.data type
    b.variable
    c.both
    d.none
    ans c;
    5.the argument of switch command is of type
    a.character
    b.integer
    c.both
    d.all of the above

    6.


    -------part b(c++ ,10 question)----

    1. differance between pointer and referance

    2.inheritance of a class is relationship like
    a. IS A(answer) 
    b. HAS A
    c.
    d.

    3.In c++ differance between structure and class
    a.
    b.
    c.
    d.access specifier (answer)

    4.default parameter implies 
    5.

    guidelines: have a command on these topics
    virtual functon
    multiple inheritance( 2 questions)
    operator overloading












    New Click here to Download 2010 Latest placement papers of this company New




    Looking for Job? Upload your resume here for MAXIMUM Exposure!

    Get 15 Freshers Jobs everyday!

    We work hard to collect each & every job for you. From all possible sources, the most exhaustive and authentic Freshers Jobs Information.

    You don't need anything else!
    Get Freshers Jobs in your mail:


    .


    Recently Updated: New Placement Papers added.

    Vyom Network : Web Hosting | Dedicated Server | Free SMS, GRE, GMAT, MBA | Online Exams | Freshers Jobs | Software Downloads | Programming & Source Codes | GRE Preparation | Jobs, Discussions | Software Listing | Free eBooks | Free eBooks | Free Business Info | Interview Questions | Free Tutorials | International Business Information | IAS Preparation | Jokes, Songs, Fun | Free Classifieds | Free Recipes | FAQs | Free Downloads | Bangalore Info | Tech Solutions | Project Outsourcing, Web Hosting | GATE Preparation | MBA Preparation | SAP Info | Excellent Mobiles | Software Testing | Interview Questions | Freshers Jobs | File Extension Directory


    Copyright ©2003-2010 Vyom Technosoft Pvt. Ltd., All Rights Reserved. Read our Privacy Policy

    Page URL: http://www.vyomworld.com/placementpapers/bluestar-placement-paper-5.asp