FirstRanker.com

Search results for: “life”

  • J2ME Interview Questions

    www.firstranker.com
    J2ME – Interview Questions
    What is J2ME
    Java 2, Micro Edition is a group of specifications and technologies that pertain to Java on small devices.
    The J2ME covers a wide range of devices, from pagers and mobile telephones through set-top boxes and
    car navigation systems.
    The J2ME world is divided into configurations and profiles, specifications that describe a Java
    environment for a specific class of device.
    What is a profile ?
    A profile defines the type of device supported. The Mobile Information Device Profile (MIDP), for example,
    defines classes for cellular phones. It adds domain-specific classes to the J2ME configuration to define
    uses for similar devices.
    Two profiles have been defined for J2ME and are built upon CLDC: KJava and MIDP. Both KJava and
    MIDP are associated with CLDC and smaller devices.
    Profiles are built on top of configurations. Because profiles are specific to the size of the device (amount
    of memory) on which an application runs, certain profiles are associated with certain configurations.
    A skeleton profile upon which you can create your own profile, the Foundation Profile, is available for
    CDC.
    What is a configuration?
    In J2ME, a configuration defines the minimum Java runtime environment for a family of devices: the
    combination of a Java virtual machine (either the standard J2SE virtual machine or a much more limited
    version called the CLDC VM) and a core set of APIs. CDC and CLDC are configurations.
    What is MIDP and CLDC.
    MIDP:
    The Mobile Information Device Profile (MIDP) is a specification for a J2ME profile. It is layered on top of
    CLDC and adds APIs for application life cycle, user interface, networking, and persistent storage.
    CLDC:
    The Connected, Limited Device Configuration (CLDC) is a specification for a J2ME configuration. The
    CLDC is for devices with less than 512 KB or RAM available for the Java system and an intermittent
    (limited) network connection. It specifies a stripped-down Java virtual machine1 called the KVM as well as
    several APIs for fundamental application services. Three packages are minimalist versions of the J2SE
    java.lang, java.io, and java.util packages. A fourth package, javax.microedition.io, implements the Generic
    Connection Framework, a generalized API for making network connections.
    What is RMS?
    The Record Management System (RMS) is a simple record-oriented database that allows a MIDlet to
    persistently store information and retrieve it later. Different MIDlets can also use the RMS to share data.
    What is difference between j2se, j2ee and j2me?
    J2SE is considered the foundation edition of the Java platform and programming environment in which all
    other editions are based. J2EE is the edition of the Java 2 platform targeted at developing multi-tier
    enterprise applications. J2EE consists of a set of specifications, APIs and technologies defining
    enterprise application development. J2EE technology providers expose tools, frameworks and platforms
    that handle a good deal of the details of enterprise application infrastructure and behavior. J2EE
    implementations enjoy all of the features of the Java 2 Standard Edition (J2SE) platform with additional
    frameworks and libraries added to support distributed/Web development.
    What are the optional packages?
    An optional package is a set of J2ME APIs providing services in a specific area, such as database access
    or multimedia.
    www.firstranker.com
    Unlike a profile, it does not define a complete application environment, but rather is used in conjunction
    with a configuration or a profile. It extends the runtime environment to support device capabilities that are
    not universal enough to be defined as part of a profile or that need to be shared by different profiles.
    J2ME RMI and the Mobile Media RMI are examples of optional packages.
    How is data written into RMS?
    Information is stored in the record store in records, and each record is an array of bytes. The methods to
    save to and retrieve from a record store all represent the record as an array of bytes.
    What is profiling?
    The J2ME Wireless Toolkit includes a profiler, a tool that collects statistics on your application as it runs.
    After the run ends, you can see which methods in your application were called, how many times they
    were called, and how much time these calls took.
    What is preverifier?
    Preverification is a new phase in the development and deployment cycle for Java applications designed
    to run on theJ2ME CLDC.
    Preverification performs certain checks on the Java bytecodes ahead of runtime. If this first verification
    pass is ok, the preverifier annotates the classfiles (using standard Java bytecode “attributes”, so that
    these are still plain old Java bytecodes and will be executable in VMs not aware of the benefits of
    preverification), and then saves the annotated class files or passes them along to the next tool in the
    compile chain.
    When the KVM attempts to run execute a J2ME CLDC-based application, it checks the Java class files for
    these preverification annotations. Proper annotations in the class files guarantee that certain compile-time
    checks were made, and so the KVM can pass through its own verfication and security checks much faster
    and start executing the application more quickly.
    Sun’s CLDC reference implementation SDK includes the ‘preverify’ tool. You use the tool after compiling
    your code via javac (or your favorite Java compiler).
    What is obfuscator
    Obfuscation is a technique used to complicate code. Obfuscation makes code harder to understand when
    it is decompiled, but it typically has no affect on the functionality of the code. Obfuscation programs can
    be used to protect Java programs by making them harder to reverse-engineer.
    What is a MIDlet
    A MIDlet is an application written for MIDP. MIDlet applications are subclasses of the
    javax.microedition.midlet.MIDlet class that is defined by MIDP.
    What is MIDlet suite
    MIDlets are packaged and distributed as MIDlet suites. A MIDlet suite can contain one or more MIDlets.
    The MIDlet suite consists of two files, an application descriptor file with a .jad extension and an archive
    file with a .jar file. The descriptor lists the archive file name, the names and class names for each MIDlet
    in the suite, and other information. The archive file contains the MIDlet classes and resource files.
    What is OTA
    A major new feature of MIDP is its ability to dynamically deploy and update applications over-the-air
    (OTA). OTA provisioning, previously supported only as a recommended practice, is now required as part
    of the MIDP 2.0 specification. The MIDP specification defines how MIDlet suites are discovered, installed,
    updated and removed on mobile information devices. MIDP also enables a service provider to identify
    which MIDlet suites will work on a given device, and obtain status reports from the device following
    installation, updates or removal.
    The MIDP OTA provisioning model ensures a single, standard approach to MIDP application deployment
    that works across the broad range of mobile devices. The MIDP OTA provisioning model has been
    defined and adopted by leading device manufacturers and service providers to deliver a reliable, secure
    provisioning solution.
    www.firstranker.com
    What are the mandatory attributes?
    For example: CLDC-1.0
    MicroEdition-Configuration
    MicroEdition-Profile
    MIDlet-<n>
    MIDlet-Jar-Size
    MIDlet-Jar-URL
    MIDlet-Name
    MIDlet-Vendor
    MIDlet-Version
    What are high level UI and low level UI?
    The Mobile Information Device Profile (MIDP) has two APIs for modifying the user interface (UI), referred
    to as the highlevel and low-level APIs.
    The high-level API requires you to use task-oriented abstractions to define what the user interface does.
    You have no real control over what gets drawn on the screen &mdash; the java virtual machine selects
    the best approach for the device. The User interface, buttons are standard and no modification can be
    done.
    The low-level API is aimed squarely at j2me game developers. Unlike the high-level API, the low-level API
    gives you complete access to the screen and to input events. The game developer can modify the screen
    or UI as required.
    The game developer can either the high-level API or the low-level API, but not both.
    J2me package for low level UI is javax.microedition.lcdui.*;
    What is customItem?
    CustomItem is customizable by subclassing to introduce new visual and interactive elements into Forms.
    Subclasses are responsible for their visual appearance including sizing and rendering and choice of
    colors, fonts and graphics.Subclasses are responsible for the user interaction mode by responding to
    events generated by keys, pointer actions, and traversal actions.
    What is CVM
    The Compact Virtual Machine (CVM) is an optimized Java virtual machine1 (JVM) that is used by the
    CDC.
    What is 3G
    Third generation (3G) wireless networks will offer faster data transfer rates than current networks. The
    first generation of wireless (1G) was analog cellular. The second generation (2G) is digital cellular,
    featuring integrated voice and data communications. So-called 2.5G networks offer incremental speed
    increases. 3G networks will offer dramatically improved data transfer rates, enabling new wireless
    applications such as streaming media.
    What is 3GPP
    The 3rd Generation Partnership Project (3GPP) is a global collaboration between 6 partners: ARIB,
    CWTS, ETSI, T1, TTA, and TTC. The group aims to develop a globally accepted 3rd-generation mobile
    system based on GSM.
    What is 802.11
    802.11 is a group of specifications for wireless networks developed by the Institute of Electrical and
    Electronics Engineers (IEEE). 802.11 uses the Ethernet protocol and CSMA/CA (carrier sense multiple
    access with collision avoidance) for path sharing.
    What is API
    An Application Programming Interface (API) is a set of classes that you can use in your own application.
    Sometimes called libraries or modules, APIs enable you to write an application without reinventing
    www.firstranker.com
    common pieces of code. For example, a networking API is something your application can use to make
    network connections, without your ever having to understand the underlying code.
    What is AMPS
    Advanced Mobile Phone Service (AMPS) is a first-generation analog, circuit-switched cellular phone
    network. Originally operating in the 800 MHz band, service was later expanded to include transmissions
    in the 1900 MHz band, the VHF range in which most wireless carriers operate. Because AMPS uses
    analog signals, it cannot transmit digital signals and cannot transport data packets without assistance
    from newer technologies such as TDMA and CDMA.
    What is CDC
    The Connected Device Configuration (CDC) is a specification for a J2ME configuration. Conceptually,
    CDC deals with devices with more memory and processing power than CLDC; it is for devices with an
    always-on network connection and a minimum of 2 MB of memory available for the Java system.
    What is CDMA
    Code-Division Multiple Access (CDMA) is a cellular technology widely used in North America. There are
    currently three CDMA standards: CDMA One, CDMA2000 and W-CDMA. CDMA technology uses UHF
    800Mhz-1.9Ghz frequencies and bandwidth ranges from 115Kbs to 2Mbps.
    What is CDMA One
    Also know as IS-95, CDMAOne is a 2nd generation wireless technology. Supports speeds from 14.4Kbps
    to 115K bps.What is CDMA2000 Also known as IS-136, CDMA2000 is a 3rd generation wireless
    technology. Supports speeds ranging from 144Kbps to 2Mbps.
    What is CDPD
    Developed by Nortel Networks, Cellular Digital Packet Data (CDPD) is an open standard for supporting
    wireless Internet access from cellular devices. CDPD also supports Multicast, which allows content
    providers to efficiently broadcast information to many devices at the same time.
    What is cHTML
    Compact HTML (cHTML) is a subset of HTML which is designed for small devices. The major features of
    HTML that are excluded from cHTML are: JPEG image, Table, Image map, Multiple character fonts and
    styles, Background color and image, Frame and Style sheet.
    What is Deck
    A deck is a collection of one or more WML cards that can be downloaded, to a mobile phone, as a single
    entity.
    What is EDGE
    Enhanced Data GSM Environment (EDGE) is a new, faster version of GSM. EDGE is designed to support
    transfer rates up to 384Kbps and enable the delivery of video and other high-bandwidth applications.
    EDGE is the result of a joint effort between TDMA operators, vendors and carriers and the GSM Alliance.
    What is ETSI
    The European Telecommunications Standards Institute (ETSI) is a non-profit organization that
    establishes telecommunications standards for Europe.
    What is FDMA
    Frequency-division multiple-access (FDMA) is a mechanism for sharing a radio frequency band among
    multiple users by dividing it into a number of smaller bands.
    What is Foundation Profile
    The Foundation Profile is a J2ME profile specification that builds on CDC. It adds additional classes and
    interfaces to the CDC APIs but does not go so far as to specify user interface APIs, persistent storage, or
    www.firstranker.com
    application life cycle. Other J2ME profiles build on the CDC/Foundation combination: for example, the
    Personal Profile and the RMI Profile both build on the Foundation Profile.
    What is Generic Connection Framework
    The Generic Connection Framework (GCF) makes it easy for wireless devices to make network
    connections. It is part of CLDC and CDC and resides in the javax.microedition.io package.
    What is GPRS
    The General Packet Radio System (GPRS) is the next generation of GSM. It will be the basis of 3G
    networks in Europe and elsewhere.
    What is GSM
    The Global System for Mobile Communications (GSM) is a wireless network system that is widely used in
    Europe, Asia, and Australia. GSM is used at three different frequencies: GSM900 and GSM1800 are
    used in Europe, Asia, and Australia, while GSM1900 is deployed in North America and other parts of the
    world.
    What is HLR
    The Home Location Register (HLR) is a database for permanent storage of subscriber data and service
    profiles.
    What is HTTPS
    Hyper Text Transfer Protocol Secure sockets (HTTPS) is a protocol for transmission of encrypted
    hypertext over Secure Sockets Layer.
    What is i-appli
    Sometimes called “Java for i-mode”, i-appli is a Java environment based on CLDC. It is used on handsets
    in NTT DoCoMo’s i-mode service. While i-appli is similar to MIDP, it was developed before the MIDP
    specification was finished and the two APIs are incompatible.
    What is IDE
    An Integrated Development Environment (IDE) provides a programming environment as a single
    application. IDEs typically bundle a compiler, debugger, and GUI builder tog ether. Forte for Java is Sun’s
    Java IDE.
    What is iDEN
    The Integrated Dispatch Enhanced Network (iDEN) is a wireless network system developed by Motorola.
    Various carriers support iDEN networks around the world: Nextel is one of the largest carriers, with
    networks covering North and South America.
    What is i-mode
    A standard used by Japanese wireless devices to access cHTML (compact HTML) Web sites and display
    animated GIFs and other multimedia content.
    What is J2ME WTK
    The J2ME Wireless Toolkit is a set of tools that provides developers with an emulation environment,
    documentation and examples for developing Java applications for small devices. The J2ME WTK is
    based on the Connected Limited Device Configuration (CLDC) and Mobile Information Device Profile
    (MIDP) reference implementations, and can be tightly integrated with Forte for Java
    What is Java Card
    The Java Card specification allows Java technology to run on smart cards and other small devices. The
    Java Card API is compatible with formal international standards, such as, ISO7816, and industry-specific
    standards, such as, Europay/Master Card/Visa (EMV).
    What is JavaHQ
    www.firstranker.com
    JavaHQ is the Java platform control center on your Palm OS device.
    What is JCP
    The Java Community Process (JCP) an open organization of international Java developers and licensees
    who develop and revise Java technology specifications, reference implementations, and technology
    compatibility kits through a formal process.
    What is JDBC for CDC/FP
    The JDBC Optional Package for CDC/Foundation Profile (JDBCOP for CDC/FP) is an API that enables
    mobile Java applications to communicate with relational database servers using a subset of J2SE’s Java
    Database Connectivity. This optional package is a strict subset of JDBC 3.0 that excludes some of
    JDBC’s advanced and server-oriented features, such as pooled connections and array types. It’s meant
    for use with the Foundation Profile or its supersets.
    What is JSR
    Java Specification Request (JSR) is the actual description of proposed and final specifications for the
    Java platform. JSRs are reviewed by the JCP and the public before a final release of a specification is
    made.
    What is KittyHawk
    KittyHawk is a set of APIs used by LG Telecom on its IBook and p520 devices. KittyHawk is based on
    CLDC. It is conceptually similar to MIDP but the two APIs are incompatible.
    What is KJava
    KJava is an outdated term for J2ME. It comes from an early package of Java software for PalmOS,
    released at the 2000 JavaOne show. The classes for that release were packaged in the com.sun.kjava
    package.
    What is kSOAP
    kSOAP is a SOAP API suitable for the J2ME, based on kXML.
    What is kXML
    The kXML project provides a small footprint XML parser that can be used with J2ME.
    What is KVM
    The KVM is a compact Java virtual machine (JVM) that is designed for small devices. It supports a subset
    of the features of the JVM. For example, the KVM does not support floating-point operations and object
    finalization. The CLDC specifies use of the KVM. According to folklore, the ‘K’ in KVM stands for kilobyte,
    signifying that the KVM runs in kilobytes of memory as opposed to megabytes.
    What is LAN
    A Local Area Network (LAN) is a group of devices connected with various communications technologies
    in a small geographic area. Ethernet is the most widely-used LAN technology. Communication on a LAN
    can either be with Peer-to-Peer devices or Client-Server devices.
    What is LCDUI
    LCDUI is a shorthand way of referring to the MIDP user interface APIs, contained in the
    javax.microedition.lcdui package.
    Strictly speaking, LCDUI stands for Liquid Crystal Display User Interface. It’s a user interface toolkit for
    small device screens which are commonly LCD screens.
    What is MExE
    The Mobile Execution Environment (MExE) is a specification created by the 3GPP which details an
    applicatio n environment for next generation mobile devices. MExE consists of a variety of technologies
    including WAP, J2ME, CLDC and MIDP.
    www.firstranker.com
    What is MIDP-NG
    The Next Generation MIDP specification is currently under development by the Java Community Process.
    Planned improvements include XML parsing and cryptographic support.
    What is Mobitex
    Mobitex is a packet-switched, narrowband PCS network, designed for wide-area wireless data
    communications. It was developed in 1984 by Eritel, an Ericsson subsidiary, a nd there are now over 30
    Mobitex networks in operation worldwide.
    What is Modulation
    Modulation is the method by which a high-frequency digital signal is grafted onto a lower-frequency
    analog wave, so that digital packets are able to ride piggyback on the analog airwave.
    What is MSC
    A Mobile Switching Center (MSC) is a unit within a cellular phone network that automatically coordinates
    and switches calls in a given cell. It monitors each caller’s signal strength, and when a signal begins to
    fade, it hands off the call to another MSC that’s better positioned to manage the call.
    What is PCS
    Personal Communications Service (PCS) is a suite of second-generation, digitally modulated mobilecommunications
    interfaces that includes TDMA, CDMA, and GSM. PCS serves as an umbrella term for
    second-generation wireless technologies operating in the 1900MHz range
    What is PDAP
    The Personal Digital Assistant Profile (PDAP) is a J2ME profile specification designed for small platforms
    such as PalmOS devices. You can think of PDAs as being larger than mobile phones but smaller than
    set-top boxes. PDAP is built on top of CLDC and will specify user interface and persistent storage APIs.
    PDAP is currently being developed using the Java Community Process (JCP).
    What is PDC
    Personal Digital Cellular (PDC) is a Japanese standard for wireless communications.
    What is PDCP
    Parallel and Distributed Computing Practices (PDCP) are often used to describe computer systems that
    are spread over many devices on a network (wired or wireless) where many nodes process data
    simultaneously.
    What is Personal Profile
    The Personal Profile is a J2ME profile specification. Layered on the Foundation Profile and CDC, the
    Personal Profile will be the next generation of PersonalJava technology. The specification is currently in
    development under the Java Community Process (JCP).
    What is PersonalJava
    PersonalJava is a Java environment based on the Java virtual machine1 (JVM) and a set of APIs similar
    to a JDK 1.1 environment. It includes the Touchable Look and Feel (also called Truffle), a graphic toolkit
    that is optimized for consumer devices with a touch sensitive screen. PersonalJava will be included in
    J2ME in the upcoming Personal Profile, which is built on CDC.
    What is PNG
    Portable Network Graphics (PNG) is an image format offering lossless compression and storage
    flexibility. The MIDP specification requires implementations to recognize certain types of PNG images.
    What is POSE
    Palm OS Emulator (POSE).
    www.firstranker.com
    What is PRC
    Palm Resource Code (PRC) is the file format for Palm OS applications.
    What is Provisioning
    In telecommunications terms, provisioning means to provide telecommunications services to a user. This
    includes providing all necessary hardware, software, and wiring or transmission devices.
    What is PSTN
    The public service telephone network (PSTN) is the traditional, land-line based system for exchanging
    phone calls.
    What is RMI
    Remote method invocation (RMI) is a feature of J2SE that enables Java objects running in one virtual
    machine to invoke methods of Java objects running in another virtual machine, seamlessly.
    What is RMI OP
    The RMI Optional Package (RMI OP) is a subset of J2SE 1.3’s RMI functionality used in CDC-based
    profiles that incorporate the Foundation Profile, such as the Personal Basis Profile and the Personal
    Profile. The RMIOP cannot be used with CLDC based profiles because they lack object serialization and
    other important features found only in CDC-based profiles. RMIOP supports most of the J2SE RMI
    functionality, including the Java Remote Method Protocol, marshalled objects, distributed garbage
    collection, registry-based object lookup, and network class loading, but not HTTP tunneling or the Java
    1.1 stub protocol.
    What is RMI Profile
    The RMI Profile is a J2ME profile specification designed to support Java’s Remote Method Invocation
    (RMI) distributed object system. Devices implementing the RMI Profile will be able to interoperate via RMI
    with other Java devices, including Java 2,Standard Edition. The RMI Profile is based on the Foundation
    Profile, which in turn is based on CDC.
    What is SIM
    A Subscriber Identity Module (SIM) is a stripped-down smart card containing information about the
    identity of a cell-phone subscriber, and subscriber authentication and service information. Because the
    SIM uniquely identifies the subscriber and is portable among handsets, the user can move it from one
    kind of phone to another, facilitating international roaming.
    What is SMS
    Short Message Service (SMS) is a point-to-point service similar to paging for sending text messages of
    up to 160 characters to mobile phones.
    What is SOAP
    The Simple Object Access Protocol (SOAP) is an XML- based protocol that allows objects of any type to
    communicated in a distributed environment. SOAP is used in developing Web Services.
    What is SSL
    Secure Sockets Layer (SSL) is a socket protocol that encrypts data sent over the network and provides
    authentication for the socket endpoints.
    What is T9
    T9 is a text input method for mobile phones and other small devices. It replaces the “multi-tap” input
    method by guessing the word that you are trying to enter. T9 may be embedded in a device by the
    manufacturer. Note that even if the device supports T9, the Java implementation may or may not use it.
    What is TDMA
    Time Division Multiple Access (TDMA) is a second-generation modulation standard using bandwidth
    allocated in the 800 MHz, 900 MHz, and 1900MHz ranges.
    www.firstranker.com
    What is Telematics
    Telematics is a location-based service that routes event notification and control data over wireless
    networks to and from mobile devices installed in automobiles. Telematics makes use of GPS technology
    to track vehicle latitude and longitude, and displays maps in LED consoles mounted in dashboards. It
    connects to remote processing centers that turn provide server-side Internet and voice services, as well
    as access to database resources.
    What is UDDI
    Universal Description, Discovery, and Integration (UDDI) is an XML-based standard for describing,
    publishing, and finding Web services. UDDI is a specification for a distributed registry of Web services.
    What is UMTS
    Developed by Nortel Networks, Universal Mobile Telecommunications Service (UMTS) is a standard that
    will provide cellular users a consistent set of technologies no matter where they are located worldwide.
    UMTS utilizes W-CDMA technology.
    What is VLR
    The Visitor Location Register (VLR) is a database that contains temporary information about subscribers.
    What is WAE
    The Wireless Application Environment (WAE) provides a application framework for small devices. WAE
    leverages other technologies such as WAP, WTP, and WSP.
    What is WAP
    Wireless Application Protocol (WAP) is a protocol for transmitting data between servers and clients
    (usually small wireless devices like mobile phones). WAP is analogous to HTTP in the World Wide Web.
    Many mobile phones include WAP browser software to allow users access to Internet WAP sites.
    What is WAP Gateway
    A WAP Gateway acts as a bridge allowing WAP devices to communicate with other networks (namely the
    Internet).
    What is W-CDMA
    Wideband Code-Division Multiple Access (W-CDMA), also known as IMT-2000, is a 3rd generation
    wireless technology. Supports speeds up to 384Kbps on a wide-area network, or 2Mbps locally.
    What is WDP
    Wireless Datagram Protocol (WDP) works as the transport layer of WAP. WDP processes datagrams
    from upper layers to formats required by different physical datapaths, bearers, that may be for example
    GSM SMS or CDMA Packet Data. WDP is adapted to the bearers available in the device so upper layers
    don’t need to care about the physical level.
    What is WMA
    The Wireless Messaging API (WMA) is a set of classes for sending and receiving Short Message Service
    messages.
    What is WML
    The Wireless Markup Language (WML) is a simple language used to create applications for small
    wireless devices like mobile phones. WML is analogous to HTML in the World Wide Web.
    What is WMLScript
    WMLScript is a subset of the JavaScript scripting language designed as part of the WAP standard to
    provide a convenient mechanism to access mobile phone’s peripheral functions.
    What is WSP
    www.firstranker.com
    Wireless Session Protocol (WSP) implements session services of WAP. Sessions can be connectionoriented
    and connectionless and they may be suspended and resumed at will.
    What is WTLS
    Wireless Transport Layer Security protocal (WTLS) does all cryptography oriented features of WAP.
    WTLS handles encryption/decryption, user authentication and data integrity. WTLS is based on the fixed
    network Transport Layer Security protocal (TLS), formerly known as Secure Sockets Layer (SSL).
    What is WTP
    Wireless Transaction Protocol (WTP) is WAP’s transaction protocol that works between the session
    protocol WSP and security protocol WTLS. WTP chops data packets into lower level datagrams and
    concatenates received datagrams into useful data. WTP also keeps track of received and sent packets
    and does re-transmissions and acknowledgment sending when needed.

  • TCS Placement Paper August 2010 New Pattern

    TCS New Test Pattern-2010

    TCS PAPER(21 n 22nd aug,2010)

    HAI frns…
    i hav attended tcs written nd wrote some Qns, i vl b vry USEFUL, preapre these b4 gng 2 xam, u wl at atleast 10-12 Qns dirctly frm these..

    u will find most of d q’s to be lengthy and thr is sme info given in d
    q which is not used to get d ans….they js hv made d q’s lengthy to
    kill time….but d q’s r easy….so all i cn say abt d paper is to
    test our managment of time..

    tcs paper consists of 35 q’s to be answrd in 1 hr….

    i atmptd 27 of thm and got some time left to do 2 q’s but thot of
    reviewn d answrd q’s…..i thot it was a good to ans some nd get thm
    right than answerin many…

    i hve placed the q’s as i remember….so dont completely rely on
    them….but these topics r sure to be covered in the exam….

    ? A man bought 1 orange per rupee, 2 palms per rupe n 3 grapes per rupe, & he spent 7 rupees to buy fruits for his 2 chidren equally?(its very lengthy, I made it simple). Wat r the fruits??
    ANS: 1 orange 2 palms 3 grapes
    ? One third of a no. is 2 more dan 1/6th of dat no. find no.
    Ans. 12
    ? they hav given length of thickness and som length of wire and bla bla, at d last 3 lines dey given current and voltage and asked to find resistance.
    Ans.V=IR, r=v/i
    ? find d 11 digit no using 1,2,3,4,5 and repetitions allowed which is divisible by 4.
    Ans. Not solved but solve and go
    ? A says lies in Thursday , Friday , Saturday and B says lies in Monday, Tuesday and Wednesday. On wat day both says truth.
    Ans. Sunday.
    ? A man stood in front of paint and said I?ve no brthrs and sis?s , his father is d son of my father. Wat is d relation of the person in the paint to d man.
    Ans. Son
    ? Old women said no of days of my grand daughter = no of months my daughters is?
    And my age in no of years is= no of weeks of my grand daughter . sum of their ages is 115. Find d old women age?
    Ans. Solve it
    ? Alies have some gloves and socks, in three colours 18 red, 32 blue, 42 green. Find d probability dat she picks up radomnly each pair of gloves for three colours.
    Ans. Solve it
    ? Find d minimum no dat divides 2850 to make it a perfect square.
    Ans. 5
    ? X,y,z r three sons. X elder, z youngest, x=y+3, x=3z, difference of some of the 2 children is 3. Find d elder age?
    Ans. 15

    ? a tailor has 37.5m of cloth and he has to make pieces out a meter of a cloth. How many pieces he can make?
    Ans. It is in RS Agarval.
    ? The ratios of ages if a:b is 6:5 and sum of their ages 77. After how many years their ages will be in the ratio 8:7?
    Ans.14
    ? The given sum of two no?s and product of those two no?s and asked to find sum of d squares of those no.
    Ans.(a+b)(a+b)=a2+b2+2ab
    ? They hav given 2 Q?s on ages and their avgs.
    ? A tank is filing 10 in ltrs in 1st day, 20 in 2nd day, 40 in 3rd day and 80 on 4th day and so on. If 1/8th of the tank is filled in 23 days then how many days it take to fill dat tank completely.
    Ans. 26

    ? One Qstn on series.
    9,16,19,34,39,?,79
    Ans.69
    ? A pot contains 1L of milk and another pot contains 1L tea. If 10ml of tea is taken and poured in d pot of milk and 10ml from d mixer is taken and poured in Tea. Then which of the following is correct.
    ? Tea pot contains more milk
    ? Milk pot contains more milk like this (I did not remember properly.)
    ? A man from A to B at a speed of x kmph and B to A at a speed of y kmph. Find d avg speed of journey.
    Ans. 2xy/(x+y)
    ? Samrat, arun and damma went to d hill and weighed individually first and 2 at a time and finally all d three. The last weight is 191. Find d avg of all combinations.
    Ans. 4(191/7).
    ? Given that (84*84*84-54*54*54) / (84*84+84*54+54*54)== ????
    Ans: Its jstly in formula of (a^3 ? b^3) / (a^2+a*b+b^2)= (a-b)
    So 84-54= 30(ans)
    ? While his journey, a traveler saws a bear in north side of india, and travelled trought out country along with that bear ,, due to wheather And climatic conditions , on that they gave unnessary stuff and finally asks whts the color of bear.
    Ans : polar bear doest changes its color so answer ia WHITE
    ? On probability a die and a pack of cards are used simultaneously, whts the sum of two is grater than 7 will cum recurrently
    ? 8 b. 9 c, 10 d. 8 or 9
    I got 8 as answer bt I m not sure..
    ? Here is jumbled world containing PCERTEAE
    Ans : aftr reassigning the word whts that word represents
    ? City b, bird c. Animal d. none
    I don?t knw the answer, once check dictionary
    ? A room has dimesions like x m length and y m breadth and gave that room has density and humidity and so on unnecessary stuff abt 5 lines??.bt the question is abt area of that room
    Ans : (x*y) Sq,m
    25:
    (a*a*a – b*b*b)/(a*a + a*b + b*b)

    they gave some values instead of a , b like a=79 and b=61 for
    me…..
    ans a-b=79-61
    26 (4x + 2y)/2x + y) = ? wen x = 2y

    solvin jus by substitutn..

    27 . a factory prepares some product X and the cost of production
    consists of 3 parts – labour, raw materials and elec cost and the
    ratio in wich tthe c.p. is distributd is 43 resp…if the labour
    costs 100$ thn wt is d total cost?

    ans: 4 parts = 100$ tot c.p = 4+6+3 = 13 parts = 13 * 25 $

    28 thr will be some changes due to changes in the beahaviour of animals wen thr changes in d climatic conditions…..a man is a
    researcher on d behaviour on bears….he goes 1 mile north 4m his station 2 follow a bear and then follows it to 1mile east collars the
    bear wid some indicator and returns back to the station moving 1 mile south….wt color is the bear
    optns : white, brown, black,……
    ans : i think is white

    29 the ages of two of my 3 grandchildren differ by 2 or 3 yrs(i
    dont rmbr perfctly)….and the eldest is 3 times older thn the
    youngest wt is d age of the eldest?

    ans: i got is 15 yrs as i remember and i got dis only while checkin d options…….dis type of q is 4m numbers chapter in any quant buk…

    30 thr is a mercedes wich moves at a speed of 48kmph and a ferrari at a speed 4 times d mercedes…if the dist is 947 km thn wt
    is d time taken by mercedes?
    ans: time = dist / speed i placed d q very clearly but
    he gave a lot of matter to kill d tym and confuse us…..

    31 B is a water tank….water flows into it at such a rate dt d water in dt will be 10lt, 20lt, 40 lt, 80 lt,….after 1hr, 2hr, 3
    hr,……after 19 hrs d tank filles upto 1/16th…..wt is d time it takes to gt filled completely…..i dont rembr dis correctly but do
    dis type of q 4m pipes and cisterns chapter i think….

    ans: i didnt atmpt dis q as dis takes tym nd for sure to make a mis in calc…..

    32 half of a no is 6 more thn 1/6th of d no….wt is d no..?

    33 thr r 100 houses in a street and a prime no (wich is b/w 140
    and 180) no of shops and each house must have stairs of 100 so in all
    how many 7’s are thr???…..i dont rembr d q correctly

    ans : i didnt ans d q it takes a lot of time….

    34 jumble these letters P E T E R A K A….wt is it?

    optns: fruit, vegtable , city, bird

    ans i dint ans dis

    35 a gal hsa cubes of 7 in vol….she uses d cubes to make a block of 9cubes in length and 4 cubes in width and 7 cubes in
    depth….if she only kept d boundaries how many cubes does she stil need to complete d block?

    ans: (9-2) * (7-2) * (4-2) = 70

    36 how many 10 digit nos can be formed using 1,2,3,4,5 wich are
    divisible by 4 reptitions are allowed?

    ans: divisible by 4 – last two digits must be divisible by 4
    so d chances for d last two digits must be in {12, 24, 32, 44, 52}
    the last two digits cn b filled in 5 ways and d rest
    8 digits in 5 ways each so d ans is 5 to d pow 9…..he gave d ans in
    complete after solvin…..u dont hv to calc…. js check d optn wich
    has units digit 5…dt will be ans…

    Hi frnds they?ve given very long Q?s and lengty Q?s but i kept it simple here. They r time killing, read only last few lines to solve the Q?s.
    prepare all the above, u may get some of these Q?s.

    i may have placed some q’s wrongly…so conc on d topic thn d q….they will be changin d nos in d q’s…..jus be perfect wid the
    nos chapter in qny good quant buk…..and manage time well….dont wast much time on d q wich u dont know…skip it….first do d easy
    q’s make sure u read all d q’s i got some easy q’s in d last and dificult in d middle….d first 10-15 a’s are proably easy…..js manage time well make sure u do more thn 25 correctly u will get thru….
    V shud rockkkkk…………….

    TCS Paper on 27th May 2010 @ Vardhaman College of Engineering, Hyderabad

    Pattern
    ======>NO VERBAL

    Some questions whichare

    1.area of trapezium?
    2.if a person moves 15km straight and turns 45km right and moves 15km straight then how much distance he needs to walk to reach starting point?
    3.if pqrstu implies qrstuv then abcdefg implies what?
    4.if there are 30 cans out of them one is poisoned if a person tastes very little he will die within 14 hours so if
    there are mice to test and 24 hours ,how many mices are required to find the poisoned can?
    5.if atlantic is found in atlantic ocean ,india is found in
    indian ocean then which of the following cases are true
    6.if a and b are mixed in 3:5 ration and b,c are mixed in 8:5 ration if the final mixture is 35 litres,find the amount
    of b in the final mixture
    7.1!+2!+….50!=?

    ================================================== ======================================

    TCS Paper on 15th March 2010 @ RCC Institute Of Information Technology, Kolkata

    APTITUDE TEST:
    Enlish: 32 Q,20M
    10 -synnonym
    10-antonym
    I got anly 4 common .
    For antonym U prepare from all Model test parer of barron 12 . Don’t wast time for preparing synnonym becoz there are lots of synnonym so u can,t collct all synnonym.
    6-fill in the blank .Exatly this fill in the blank came in my paper.

    2. FILL THE BLANKS:

    Observe the dilemma of the fungus; it is a plant, but possesses no chlorophyll. While all other plants put the sun?s energy to work for them combining the nutrients of ground and air into the body structure._____1______.Chlorophyll is found in these other plants which, having received their energy free from the sun, relinquish it__2__.

    In this search of energy, the fungus has become the earth?s major source of rot and decay. Wherever you see mould forming on a piece of bread, or a pile of leaves turning to compost, or a bloom down tree becoming pulp on the ground, _____3___.

    With fungus action, the earth would be pooled high with_____4______.

    In fact, certain plants which contain resins that are ____5_______. Specimen of the redwood tree, for instance can still be found ______6________.

    You are watching a fungus acting
    Resting on the forest floor centuries after having been cut down
    Responsible for decomposition of much plant life
    Fungus must look elsewhere for an energy supply
    Cannot produce their own store of energy
    The dead plant life of past centuries
    At some point in their cycle either to animal or to fungi
    Fungus is vastly different from other plants
    Toxic to fungi will last indefinitely.

    One large passage-6marks.
    I answer all question from passage in guess becos i have no time to read whole passage care fully.

    QUANTITATIVE: 38 Q-40 M
    ALL CAME FROM PREVIOUS YR QUESTION. U SHOULD KEEP ON UR MEMORY THE ANSWER OF EACH QUESTION .
    THERE IS 3 Q FROM VENN DIAGRAM & 3 FROM PIE CHART.

    1. Two pencils costs 8 cents, then 5 pencils cost how much
    Sol: 2 pencils ? 8 cents => 1 pencil ? 4 cents
    Therefore 5 pencils cost = 5 * 4 = 20 cents

    2. A work is done by two people in 24 min. one of them can do this work a lonely in 40 min. how much time required to do the same work for the second person.
    Sol: (A+B) can do the work in = 1/24 min.
    A alone can do the same work in = 1/40 min.
    B alone can do the same work in = (A+B)?s ? A?s = 1/24 ? 1/40 = 1/60
    Therefore, b can do the same work in = 60 min

    3.A car is filled with four and half gallons of oil for full round trip. Fuel is taken 1/4 gallon more in going than coming. What is the fuel consumed in coming up?
    Sol Before the trip, car is filled with = 4 ? gallon of oil
    Let ?X? be the quantity of fuel consumed for the trip in one direction
    The fuel consumed while going = X + ?
    The fuel consumed while coming = X
    Therefore, the fuel consumed for the trip = (X + ?) + X = 4 ?
    ? 2X + ? = 4 ? => 2X = 4 ? – ? => 2X = 4 ? => X= 2. approx
    Therefore the fuel consumed while coming = 2 gallon

    4. Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low temperature and highest temp. is 100 degrees. Then what is the low temp?
    Sol: 40 deg.

    5. A person, who decided to go to weekend trip should not exceed 8 hours driving in a day. Average speed of forward journey is 40 m/h. Due to traffic in Sundays, the return journey average speed is 30 m/h. How far he can select a picnic spot?
    a) 120 miles
    b) Between 120 and 140 miles
    c) 160 miles
    Answer: 120 miles

    6. A person was fined for exceeding the speed limit by 10mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was traveling at a speed of 35 mph, find the speed limit.
    Sol: Let ?x? be the speed limit
    Person ?A? was fined for exceeding the speed limit by = 10mph
    Person ?B? was fined for exceeding the speed limit by = twice of ?A?
    = 2*10mph=20mph given that the second person was traveling at the speed of 35mph => 35mph ? 20mph = 15mph
    Therefore the speed limit is =15 mph

    7.A bus started from bus stand at 8.00am, and after 30 minutes staying at destination, it returned back to the bus stand. The destination is 27 miles from the bus stand. The speed of the bus is 18mph. In return journey bus travels with 50% fast speed. At what time it returns to the bus stand?
    Sol: 11.00am

    8.In a mixture, R is 2 parts S is 1 part. In order to make S to 25% of the mixture, how much r is to be added?
    Sol: One Part

    9. Wind flows 160 miles in 330 min, for 80 miles how much time required.
    Sol:

    10. With 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels
    Sol: ( 5 miles )

    11. A storm will move with a velocity of towards the center in hours, at the same rate how much far will it move in hrs.
    Sol: ( but the answer is 8/3 or 2 2/3 )

    12. In a two-dimensional array, X (9, 7), with each element occupying 4 bytes of memory, with the address of the first element X (1, 1) is 3000; find the address of X (8, 5).
    Ans: 3212

    13. In the word ORGANISATIONAL, if the first and second, third and forth, forth and fifth, fifth and sixth words are interchanged up to the last letter, what would be the tenth letter from right?
    Ans:I

    14. What is the largest prime number that can be stored in an 8-bit memory? Ans : 251

    15. Select the odd one out?..a. Java b. Lisp c. Smalltalk d. Eiffel.

    16. Select the odd one out a. SMTP b. WAP c. SAP d. ARP

    17. Select the odd one out a. Oracle b. Linux c. Ingress d. DB2

    18. Select the odd one out a. WAP b. HTTP c. BAAN d. ARP

    19. Select the odd one out a. LINUX b. UNIX c. SOLARIS d. SQL SEVER

    20. Select the odd one out a. SQL b. DB2 c. SYBASE d. HTTP

    21. The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied?
    Ans: 0.5%(SQRT 101N)

    22. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work?
    Ans: 16

    23. In which of the system, decimal number 184 is equal to 1234?
    Ans: 5

    24. Find the value of the 678 to the base-7.
    Ans: 1656

    25. Number of faces, vertices and edges of a cube
    Ans: 6 8 12

    26. Complete the series 2, 7, 24, 77,__
    Ans: 238

    27. Find the value of @@+25-++@16, where @ denotes “square” and + denotes “square root”.
    Ans: 621

    28. Find the result of the following expression if, M denotes modulus operation, R denotes round-off, T denotes truncation: M(373,5)+R(3.4)+T(7.7)+R(5.Cool
    Ans:19

    29. If TAFJHH is coded as RBEKGI then RBDJK can be coded as?
    Ans: qcckj

    30. G(0)= -1, G(1)=1, G(N)=G(N-1) – G(N-2), G(5)= ?
    Ans: – 2

    31. What is the max possible 3 digit prime number?
    Ans: 997

    32. A power unit is there by the bank of the river of 750 meters width. A cable is made from power unit to power plant opposite to that of the river and 1500mts away from the power unit.The cost of the cable below water is Rs.15/- per meter and cost of cable on the bank is Rs.12/-per meter. Find the total of laying the cable.
    Ans : 1000 (24725-cost)

    33. The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied?
    Ans:0.5%(SQRT 101N)

    34. In Madras , temperature at noon varies according to -t^2/2 + 8t + 3, where t is elapsed time. Find how much temperature more or less in 4pm to 9pm.
    Ans: At 9pm 7.5 more

    35. The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it is sent?
    Ans: 30

    36. A man, a woman, and a child can do a piece of work in 6 days. Man only can do it in 24 days. Woman can do it in 16 days and in how many days child can do the same work?
    Ans: 16

    37. Which of the following are orthogonal pairs?
    a. 3i+2j b. i+j c. 2i-3j d. -7i+j
    Ans: a, c

    38. If VXUPLVH is written as SURMISE, what is SHDVD?
    Ans: PEASE

    39. If A, B and C are the mechanisms used separately to reduce the wastage of fuel by 30%, 20% and 10%.What will be the fuel economy if they were used combined.
    Ans: 20%

    40. What is the power of 2? a. 2068 b.2048 c.2668

    41. Complete the series. 3, 8, –, 24, –, 48, 63. Ans: 15.35

    42. Complete the series. 4, -5, 11, -14, 22, — Ans: -27

    43. A, B and C are 8 bit no’s. They are as follows:
    A -> 1 1 0 1 1 0 1 1
    B -> 0 1 1 1 1 0 1 0
    C -> 0 1 1 0 1 1 0 1
    Find ((A-B) u C)=? Hint: 109?. A-B is {A} – {A n B}

    44. A Flight takes off at 2 A.M from northeast direction and travels for 11 hours to reach the destination, which is in northwest direction. Given the latitude and longitude of source and destination. Find the local time of destination when the flight reaches there?
    Ans: 7 am

    45. A can copy 50 papers in 10 hours while both A & B can copy 70 papers in 10 hours. Then for how many hours required for B to copy 26 papers?
    Ans: 13

    46. A is twice efficient than B. A and B can both work together to complete a work in 7 days. Then find in how many days, A alone can complete the work?
    Ans: 10.5

    47. A finish the work in 10 days. B is 60% efficient than A. So how many days do B takes to finish the work?
    Ans :100/6

    48. A finishes the work in 10 days & B in 8 days individually. If A works for only 6 days then how many days should B work to complete A’s work?
    Ans: 3.2 days

    49. Given the length of the 3 sides of a triangle. Find the one that is impossible? (HINT: sum of smaller 2 sides is greater than the other one, which is larger)

    50. Find the singularity matrix from a given set of matrices? (Hint det(A)==0))

    51. (Momentum*Velocity)/(Acceleration * distance). Find units.
    Ans: mass

    52. The number 362 in decimal system is given by (1362) x in the X System of numbers find the value of X a} 5 b) 6 c) 7 d) 8 e) 9

    53. Given $ means Tripling and % means change of sign then find the value of $%$6-%$%6

    54. My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with coordinates 36N70W. What is the local time when my plane landed?
    6:00 am b) 6:40am c) 7:40 d) 7:00 e) 8:00
    (Hint: Every 1 deg longitude is equal to 4 minutes. If west to east add time else subtract time)

    55. 7 8 9 11 13 ?? 19

    56. there is a question like log.42=?,log.43=?.then log.41==?

    CRITICAL REASONING:
    Entirely from Barron?s 12th edition 5 Model Test Papers at the end. Those who don?t have barrons, you can obtain it from the Internet and get the book in a pdf format. The questions asked are from these?

    Model test 1: Section5 – qns 1-4 (motorist), qns 13-16 (red and brown)
    Section6 – qns 1-4 (conservative,democratic), qns 8-11 (latin, sanskrit), qns 12-18 (joe,larry,ned), qns 19-22 (a causes b)
    Model test 2: Section1 – qns 19-22 (wallachia and rumelia) —
    Section6 – qns 8-12 ( ashland , liverpool), qns 13-16 (spelunker) —
    qns 17-22 (pesth) —i got this one too
    Model test 3: Section6 – qns 1-4 (all Gs are Hs)
    Model test 4: Section5 – qns 8-11 (horizontal row), qns 19-22 (a,b,c cause d)
    Section6 – qns 8-12 (spanish, italian), qns 13-16 (all As, Bs), qns 17-22 (progressive federal party)
    Model test 5: Section3 – qns8-11 (museum), qns 19-22 (A is the father)
    Section7- qns 1-5 (prahtu, brahtu)

    TCS OFF CAMPUS 23rd August 2010 at NIET Noida.

    1) Written test

    Q1 What is the value of x+4y/x-2y. Given x/2y=2

    Ans: 4.

    Q2 Animals show different bahavioural changes at different environments.

    A scientist at his research lab go 1 mile to north direction to study behaviour changes by bear. there he follow a bear towards east direction

    for 1Km but has not radio collard it. Then he return to south direction by travelling 1 Km. What is the colour of bear.(Nothing is missing in this question).

    1 Grey 2 White 3 Black 4 Yello

    Ans White.There is no definite logic of this question, but because scientist go in north direction so its colour is white, because at the north pole bear are white.

    Q3: There are 10 reading spots in a room. Each reading spot has a round table. Each round table has 4 chair. If different no of persons are sitting at each reading spot. And if there are 10 persons inside the room

    then how many reading spots donot have atleast a single reader.

    (1) 5 (2) 6 (3) 7 (4) None

    Ans 6. because different no of persons are sitting on round table. So possible differnt combinations for 10 people will be 1 2 3 4. because max 4 people can sit on round table. so round tables left are 6.

    Q4:Make a usual word by rearranging these alphabets tpreiki. What is this word.

    (1) City (2) Bird (3) Country (4) Fruit

    Ans. Bird. Its PERIKIT. somebody told me its perikit. Confirm exact spelling from net.

    Q5 tracking————————————————————

    ———————————————————- a person do rock climbing at an altitude of 800 m.He go up by 7 mph. and come down by 9 mph. what was his av speed.

    Ans (7+9)/2=8.

    Q6 A boy want to make a cuboid of dimension 5m, 6m, 7m. from small cubes of .03 m3. later he realized he can make same cuboid by making it hollow. Then it take some cubes less. What is the no. of these cube.

    Ans. Vol of solid cuboid= 5*6*7=210 m3.

    Vol of its inner cuboid by removal of which the cuboid will be hollow= (5-2)*(6-2)*(7-2)=60 m3

    Then ans will be 60/.03

    Us samay mera dimag nahi chala to ye question maine attempt nhi kiya. maine har 1 dim se 2 minus kiya. ispe dhyan se sochna.

    Q7. half of a no. is greater then 1/6 of same no. by 2. what is the no.

    Ans. 6

    Q8 Two years ago A was 6 times older than B. Now he is 2 times older than B. What is the age of A.

    Ans. Age of A=5, Age of B= Two and half.

    Q9 A man haning no siblings looks at the portrait of a person and says father of this person is father of me.

    Ans : He himself

    Q10 There are three brothers, two of them having the age difference of three years.The Elder brother is 2 more years older than

    sum of the age of other two brothers. What is the age of elder brother.

    (1)7 (2)10 (3)12 (4)15

    Ans 15 years. The age of other two brothers is 5, 8years.

    Q11 By which no 2880 should be divided with a swaller no that it becomes a complete square.

    Ans 5(Make sure of it)

    Q12 What is thew value of (78*78*78-45*45*45)/(78*78+78*45+45*45)

    Ans 78-45=33. a3-b3=(a-b)(a2+ab+b2)

    Q13 ———————————————————————–

    —————————————then value of voltage and current was given. Then Resistance was required to be calculated.

    Q14 Alice lies on Mon, Tue, Wed and tells truth rest of the days. Bob lies on Thu, Fri, Sat and tells truth rest of the days.

    Both make a statement.Yesterday was one of the day when i lie to people. which day they made the statement.

    Ans: Thursday.

    Q15 A man buy a new ferrari car whose speed is three time of of his older car.His older car 45 mph. If his new car travelled a distance

    of 945 mile. Then how much time his car has taken.

    Ans 7.

    Q16 A man has some goats and piegons.Then no. of legs were given and we were asked to find no. of piegons.

    q17 there is a plot of 35m * 12m. and 1 sq m reuire 100 bricks then hw many bricks r required to cover whole areal of plot
    ans. 35*12*100

    ================================================== ========================================

    TCS: Dated- 22nd August 2010 at Reva Institute, Bangalore

    The written test consists of some questions.

    1. One man want to build a wall the length and breadth of the wall are 20, 30 respectively. He need 35 bricks for one square centimeter then how many bricks he need?

    Ans:l*b*35(no of bricks needed for sqcm)

    2. one person had three children.he has 7 pennis.then how he can distribute the fruits among his child by folloing conditions.

    a)he can get one water millon for 1 penny.

    b)he can get 2 oranges for 1 penny.

    c)he can get 3 grapes for 1 penny.

    Ans:2 water millon 1 orange 1 grape

    3. . 1/3 rd of a number is more 3 than the 1/6th of a number then find the number?

    Ans:18

    4. In Tnagar many buildings were under residential category.for buildings they number as 1 to 100. For shops, corporation numbered between 150 and 200 only prime numbers. how many time 6 will appear in building numbering?
    Ans:
    For 1 to 10 – 1 six
    2 to 20 – 1 six
    Similarly upto 59 we utilise six, 5 times
    from 60 to 69 (including 66) – 11 times
    from 70 to 100 – 3, hence ans = 5+11+3 = 19
    Ans:19.

    5. one grand father has 3 grand child.eldest one age is 3 times of the youngest child age.sum of two youngest child age is more than two of eldest one age.find the eldest one age?
    Ans: 15(we can easily predict from options, as we take y as 15)

    6.difrence b/w two nubers is 4.and their product is 17.then find the sum of their squers?

    Ans: 70 (By using (x-y)2=x2+y2-2xy)

    7. I dont remember exactly the question, one logical problem stating the colour of beer?
    Ans: white.

    8. find category from following Jumbled letters, parakeet(answer)
    Ans: bird(category)
    9. which is the smallest digit when devides the 2880 gives perfect squre.?

    Ans:5(we can easily predict from options, as we devides them with 2880)

    10. one question like. formule?
    Ans: here you can use the (a-b)3=(a-b)(a2+ab+b2)formule).

    11. I don?t have any brothers and sisters.by pointing a picture that man said that his father is my fathers .son then who is he?
    Ans:his son.

    12. 6 persons standing in queue with different age group, after two years their average age will be 43 and seventh person joined with them. hence the current average age has become 45. find the age of seventh person?
    Solution: Here the question appear as an easy one, but carried a lot of unwanted sentences and unwanted datas(i dint mention above) in exam which may confuse u on solving technique.

    So now we can compute x from above equation. (x = 41, 6x = 246)
    Let now we compute y, ((6x+y)/7) = 45, as we have value of x, compute y.
    Ans: 69

    13.The ratio b/w the ages of two pwrsons is 6:5.and sum of there ages is 77 then how many years later there ratio becomes 8:7?

    Ans: we can easily predict from options

    14. Horse started to chase dog as it relieved stable two hrs ago. And horse started to ran with average speed 22km/hr, horse crossed 10 mts road and two small pounds with depth 3m, and it crossed two small street with 200 mts length. After traveling 6 hrs, 2hrs after sunset it got dog. compute the speed of dog?
    Ans: As we have speed and travel time of horse, we can get distance travelled by it…
    Hence d = 22*6 = 132km,
    Exactly this 132km was travelled by dog in 8 hours (as it started two hours earlier).
    Hence speed of dog = 132/8 = 16.5km/hr
    Ans:16.5km/hr.

    15..six friends go to pizza corner there r 2 types of pizzas.and six different flavors r there they has to select 2 flavors from 6 flavors what?s chanses to select?

    Ans:6C2

    16.3, 22 , 7, 45, 15, ? , 31
    Solution: Here it appear simple, because it arranged in arranged in sequence manner, but the actual question was some what twist mentioning fibonacci series and more over question was in statements (no numbers).. hence first try to understand the question well.
    here let group alternate terms 3,7,15,31 (3+4 =7, 7+8 =15, 15+16=31)
    Similarly for second group (22,45,? (22+23 = 45, 45+46 = 91) hence ans is 91.
    17.cycles and 4 wheelors problem?

    Ans: We can easily predict from options

    18.some irrivvelent data.in last two lines problem will be there.

    One man walks certain distance with 5 kmph.and walk back the same

    Ans: A

    19.A and B tanks r there.1/8th of the tank B is filled in 22Hrs.what is time to fill the tank full?

    Ans: I don?t know.

    20.5 friends went for week end party to Mc donalds restrurent and there they measure there weights .some irrrrrrrrrrrrrrrrilevent data.finel measure is 155 kg then find the average weight of 5 people?

    Ans: 155/5=31

    21.2 pots r there.1st pot is filled with ink and 2nd pot is filled with water.take 1 spoon of ink from 1st pot and pore it in 2nd pot.and take 1 spoon of mixture from 2nd pot and pore it in 2nd pot then which one of following is true?

    Ans: Water in 1st pot is less than the ink in 2nd pot.

    22:One electronic problem?

    Ans: V=IR

    23.There r ten spots in library and each spot has 4 tables and ten readers ar there . sorry I don?t remember complete question?

    Ans: None

    24:lion and tiger r there.lion lies on Monday,tues,wends and tiger lies on thurs,frid,sat.

    Lion said that today is one of those days when I lies.

    Tiger said that today is one of those days when I lie too.Then find today?

    Ans: Thursday
    ================================================== ========================================

    Date: 22nd August 2010 @ SJB College Of Eng, Bangalore

    1. Which is the smallest no divides 2880 and gives a perfect square?

    a.1 b.2 c.5 d.6

    Ans: c

    2. Two bowls are taken, one contains water and another contains tea.one spoon of water is added to second bowl and mixed well, and a spoon of mixture is taken from second bowl and added to the second bowl. Which statement will hold good for the above?

    (Ans: second liquid in first bowl is smaller than the first mixture in second bowl)

    3. Form 8 digit numbers from by using 1, 2,3,4,5 with repetition is allowed and must be divisible by4?
    a.31250 b.97656 c.78125 d.97657

    Ans: c

    4. Rearrange and categorize the word ?RAPETEKA??

    Ans: bird

    5. One problem on (a3-b3)/(a2+ab+b2)

    Ans: ?a-b?

    6. In school there are some bicycles and 4wheeler wagons.one Tuesday there are 190 wheels in the campus. How many bicycles are there?

    Ans: 15

    7. Key words in question (Fibonacci series, infinite series, in the middle of the question one number series is there?.I got the series 3 12 7 26b 15?

    Ans:54
    (Logic: 3*2+1=7 12*2+2=26

    7*2+1=15 26*2+2=54)

    8. A lies on mon, tues, wed and speak truths on other days, B lies on thur, fri, sat and speaks truths on other days ?one day a said I lied today and B said I too lied today. What is the day?

    9. Man, Bear, North, South, walks.

    Ans: White

    10. A father has 7 penny?s with him and 1 water melon is for 1p, 2chickoos for 1p, 3 grapes foe 1p.he has three sons. How can he share the fruits equally?

    Ans: 1 watermelon,2chickoos,1grape

    11. (1/2) of a number is 3 times more than the (1/6) of the same number?

    Ans: 9

    12. There are two pipes A and B. If A filled 10 liters in hour B can fills 20 liters in same time. Likewise B can fill 10, 20, 40, 80,160?.if B filled in (1/16) th of a tank in 3 hours, how much time will it take to fill completely?

    Ans:7 hours

    13. KEYWORDS:T.Nagar,Chennai,1-100,prime numbers b/n 140-180,How many 2?s are there?

    Ans: 20 (Not only 2?s ,1?s,3?s,4?s,5?s,6?s,7?s,8?s,9?s,0?s also 20)

    14. A man is standing before a painting of a man and he says I have no bro and sis and his father is my father?s son?

    Ans: His son
    15. One question has last part like difference between two terms is 9 and product of two numbers is 14, what is the squares of sum of numbers?

    Ans:109
    16. What is the value of [(3x+8Y)/(x-2Y)]; if x/2y=2?

    Ans:10 {the numerical may change)
    17. A pizza shop made pizzas with to flavours.in home there are ?N? different flavors, in that ?M? flavors are taken to made pizza.in how many ways they can arrange?

    (Logic: NcM )
    18. One grandfather has three grandchildren, two of their age difference is 3, eldest child age is 3 times youngest child?s age and eldest child?s age is two times of sum of other two children. What is the age of eldest child?

    Ans:15
    19. KEYWORDS: one organization ,material labor and maintenance are in the ratio of 47,the material cost is:100,what is the total cost?

    Ans: 425
    20. KEYWORDS: density, reluctance, sensitivity, voltage ,current, what is the resistance Formula is ?R=V/I?

    21. In a market 4 man are standing .the average age of the four before 4years is 45,aftyer some days one man is added and his age is 49.what is the average weight of all?

    Ans: 49
    22. KEYWORDS: Sports readers,10 tables,4chairs per table, each table has different number of people then how many tables will left without at least one person?

    Ans : 6
    23. KEYWORDS: Die, card, coin, b/n 2 to 12

    Ans: All are equal
    24. In a school for a student out of a 100 he got 74 of average for 7 subjects and he got 79 marks in 8th subject. what is the average of all the subjects?

    Ans: 74.625
    25. In a question ,last part has ,the ages of two people has the ratio of 6:6 and by adding the numbers we get 44,after how many years the ratio would be 8:7?

    Ans: 8
    26.One train travels 200m from A to B with 70 km/ph. and returns to A with 80kmph, what is the average of their speed?

    27. Two years before Paul?s age is 2times the Alice age and the present age of Paul is 6times the Alice. what is the presents Paul?s age???( 3years) ?u try to solve this question once?

    ================================================== ========================================

    Date 22nd August 2010 At REVA College, Bangalore

    1. There is ferarri and benz car, benz speed is say 10kmph and it cover 10 km.And if ferarri goes with 3 times faster than benz.So in how much time ferarri could take to cover same distance.
    sol: as speed of ferarri is 3*10=30 so time will be 10/30

    2. If one lady have 3 daughter and any of out 3 have diff, of ages is 3. And oldest is 3 times of more than 2 than yougest after 2 years then tell the age of oldest daughter.
    Solution: let x is youngest ,y middle ,z oldest. so y-x=3, z-y=3, and z=2=2(x+2) and put the option answer try to get condition.(sorry i forgot option but pattern ll be same)

    3.One question like that ,there is fabonaci series and you have to find one number ..clue-it based on series

    4.area of trapezium?

    5.if a person moves 15km straight and turns 45km right and moves 15km straight then how much distance he needs to walk to reach starting point?

    6.if pqrstu implies qrstuv then abcdefg implies what?

    7.if there are 30 cans out of them one is poisoned if a person tastes very little he will die within 14 hours so if there are mice to test and 24 hours ,how many mices are required to find the poisoned can?
    .if atlantic is found in atlantic ocean ,india is found in
    indian ocean then which of the following cases are true

    8.if a and b are mixed in 3:5 ration and b,c are mixed in 8:5 ration if the final mixture is 35 litres,find the amount { a/b=3*8/5*8 and b/c=8*5/5*5 a/b/c=2425 ans=40*35/(24+40+35)=1400/89

    Ans=15.79}
    of b in the final mixture

    9.1!+2!+….50!=3*10^64?

    and the rest are like passage questions ,be sure to find the answer as soon as possible within 15 seconds,if you are not
    able to do in 15 seconds then skip it and give a try at last.

    10. There was a scientist who after doing research , found that color of skin of animals

    vary with change in distance.One day he started to chase a beer .He walked 1 mile

    towards north , then turned and walked 1 mile towards east and then caught the beer and

    radio-ribboned the beer
    Then he left the beer at that spot and returned to his base-station taking a turn towards
    south (walked 1 mile towards south).Then what was the color of beer at that spot?
    a)white(ans)
    b)brown
    c)black
    d)grey

    11.) 6 persons standing in queue with different age group, after two years their average age will be 43 and seventh person joined with them. hence the current average age has become 45. find the age of seventh person?

    Solution: Here the question appear as an easy one, but carried a lot of unwanted sentences and unwanted datas(i dint mention above) in exam which may confuse u on solving technique.
    Let x be current average age of first 6 persons in queue and current age of seventh person be y. Then 6x will become the sum of those 6 persons age.

    Now, let compute the sum of those 6 persons after two years, 6x+12 (as each and individual increase their age by 2). hence its average become (6x+12)/6 = 43 (give in question itself).

    So now we can compute x from above equation. (x = 41, 6x = 246)

    Let now we compute y, ((6x+y)/7) = 45, as we have value of x, compute y.

    Ans: 69
    12) Horse started to chase dog as it relieved stable two hrs ago. And horse started to ran with average speed 22km/hr, horse crossed 10 mts road and two small pounds with depth 3m, and it crossed two small street with 200 mts length. After traveling 6 hrs, 2hrs after sunset it got dog. compute the speed of dog?
    Ans: As we have speed and travel time of horse, we can get distance travelled by it…
    Hence d = 22*6 = 132km,
    Exactly this 132km was travelled by dog in 8 hours (as it started two hours earlier).
    Hence speed of dog = 132/8 = 16.5km/hr
    Ans:16.5km/hr.

    13) 3, 22 , 7, 45, 15, ? , 31

    Solution: Here it appear simple, because it arranged in arranged in sequence manner, but the actual question was some what twist mentioning fibonacci series and more over question was in statements (no numbers).. hence first try to understand the question well.

    here let group alternate terms 3,7,15,31 (3+4 =7, 7+8 =15, 15+16=31)
    Similarly for second group (22,45,? (22+23 = 45, 45+46 = 91) hence ans is 91.

    14) In Tnagar many buildings were under residential category.for buildings they number as 1 to 100. For shops, corporation numbered between 150 and 200 only prime numbers. how many time 6 will appear in building numbering?
    Ans:
    For 1 to 10 – 1 six
    2 to 20 – 1 six
    Similarly upto 59 we utilise six, 5 times

    from 60 to 69 (including 66) – 11 times

    from 70 to 100 – 3, hence ans = 5+11+3 = 19

    Ans:19.

    13)((4x+3y)+(5x+9y))/(5x+5y) = ? as (x/2y) = 2

    Ans: 2(simple algebra, i think u no need of explanation)

    15) If we subract a number with y, we get 4 increase of number, once it got divided by y itself.. Find that number??
    Ans: 12 (we can easily predict from options, as we take y as 6)

    16) Jumbled letters, parakeet(answer)
    Ans: bird(category)

    17) one question like. (209*144)^2 + (209*209)+(209*144)+(144*144) = ?
    Ans: here you can use calc, many(4 to 5) questions were depend upon calc alone.(no need problem solving technique).

    1Cool Im only son for my parents. (some irrelevant statements in the middle to distract u).The man in picture is my father’s son.(some irrelevant statements).who is he?
    Ans: he himself(blood relation type of question).ans .his son

    19) It is the class with the seating arrangement in 4 rows and 8 columns. When the teacher says ‘start’ the girl who is sitting in first row and first column will say 1, then the next girl sitting behind her will say 4, the next girl sitting behind that girl will say 7, in a particular order each girl is telling a number, the following girls told 10, 13 next turn is yours what u will say?16

    20) A man is standing in front of a painting of a man, and he tells us the following: Brothers and sisters have I none, but this man’s father is my fathers son. Who’s on the painting?
    a) The Son
    b) The Father
    c) Himself ; const html Riddle1

    Sol = The Solution: His son
    An Explanation
    We can replace my fathers son by myself since he is the only child. Now remains: This man s father is myself, so this man is his son.
    21) It is dark in my bedroom and I want to get two socks of the same color from my drawer, which contains 24 red and 24 blue socks. How many socks do I have to take from the drawer to get at least two socks of the same color?
    a) 2
    b) 3
    c) 48
    d) 25 ; Solution: 3

    TCS Papers On Date 22nd August 2010 @ Vardhaman College

    The online test consists of some questions given are below:

    1. A scientist in Antarcitic region conducts research on bears, came to know that bears changes according to the location .once he moves 1 mile towards north ,then he moves 2 miles towards east, then 1 mile towards south. now the color of bear he found will be in :
    a. Black.

    b. White.

    c. Brown.

    d. Grey.

    Clue: you must not try to answer above ques. In direction sense because no relevant data reg . directions in the answers were given, but logically answer is white because in the antarcitic region i.e polar region bears are in white color.

    2. The difference of 2 no?s is 9 , product is 29 then what is the sum of the squares of the two numbers is:

    Ans:136

    Clue: (a-b)^2 = a^2 +b^2 – 2ab

    3. One question like ?((509 * 509*509) ? (229*229*229)/((509-229)*((509*509)+(509*229) + (229*229) is: ( not sure of no?s but model is same)

    Clue: solve using (a^3-b^3) formula also for some ques( a^3 +b^3).
    4.find the least no which when divides 2880 gives a perfect square:

    Options are: 3,4,5,6

    Ans:5 ( 2880/5 = 576 )

    5.if a word PARTEEK.. SOME THING LIKE THAT if reversed gives a word.the word is belonging to:

    Clue: ans is BIRD because the word when reversed is PARKEET which belongs to the family of birds.

    6. One question on ages like iam having 3 grand children the difference between two of them is 3 years . the eldest grand son is thrice that of the youngest grandson. Some of the ages of the two younger ones is some X times that of elder one. What is the present age of the elder one:

    Ans is 15 for the question given to me.

    7. one question on relations : a person says that I have no brother or sister .pointing to a photograph he says that that man?s father?s son is his father or some thing like that but question is so easy don?t be hurry u can easily answer it.

    8. one question like there are 2 tanks A and B .for filling 1 litre in the tank A it fills tank B in 10,20,30,40,50?.. in this ratio. Find the time taken to fill the 1/8th of tank B.

    9. there are 2 cans filled with spirit and water .if a spoon of water is taken and added to can B now can B is well shaked . now if a spoon of spirit is taken from can B and added to can A.

    a. Quantity of spirit in can A is more than quantity of water in can B.

    b. Quantity of spirit in can A is less than quantity of water in can B.

    c. Ratio of quantity of mixture of spirit in can A is more.

    d. Ratio of quantity of mixture of water in can B is more.

    Not sure of options but answers are like that

    10. a question like a wire is wound whose resistance is some 132.44647 ohms ?..if a voltage of 30 mv ,296 mA current is applied to it what is the resistance ??

    Clue: use formula R= V/I. beware of voltage & current particularly kilo or milli etc.. units.

    11. one question on finding perimeter of rectangle.

    12. one question on series like A B C D E F G H????.. ( CONSIDER VALUES IN PLACE OF ABCD?S) . FIND the next term.

    Clue: take alter native terms in the series find their difference,now consider next alternative items their difference is also the same now add the difference to the corresponding series last term.

    13. there are two persons paul and Jay .Paul lies on Monday,Tuesday,Wednesday and the remaining days he speaks truth.Jay lies on Thursday,Friday,Saturday and the remaining Days he speaks truth.once they meet each other,in their conversation Paul says that yesterday is the day one among those I lie. Jay also says that yesterday I also lie. what is that day?

    a) Sunday.

    b) Tuesday.

    c) Thursday.

    d) Wednesday

    ================================================== =========================================

    TCS Paper on 14th August 2010 at Thakur College of Engg, MUMBAI

    The written test consists of 35 questions.
    All questions are APTITUDE questions .No verbal,No passages etc. Only Aptitude. Based on blood relations, percentages, profilt-loss etc.
    Time :1 hour
    There is Negative marking: -0.33 for each wrong answer

    1.
    form meaningful word from given letter : ARPAEEKT and tell meaning of that
    word
    1.THE BIRD
    2. THE ANIMAL
    3.
    4.
    ans: THE BIRD—parakeet

    2.
    There is a lab asistant.who went 1 mile to north.1mile to
    east………………………………………. …….killed a
    bear.Returned to
    lab……………………………………….. …………………………..
    …………………………….
    ………………………………….What is the colour of the bear??
    1.WHITE
    2.Black
    3.blue
    4.
    ans : WHITE

    (REMEMBER THE ANS OF 1st two questions)

    3.
    A pony ran away from stable she went to new york then went to US then to
    mumbai ran through grass
    ………………………………………….. ..
    ………………………………………….. …Horse cought her after
    4 hours…………………then pony went to sky……………
    ………………………If speed of horse is 35kmph and he left stable 3
    hrs after pony left stable then what is speed of pony?
    1.
    2.
    3.
    4.
    ans
    PONY ran for total 7 hrs
    same dist covered by horse in 4 hrs with 35 kmph
    thus dist of horsr 35X4
    speed of pony—-35X4/7

    4.
    Mumbai building dept decide to give numbers to building………..1-30
    numbers were given to industrial buildings…1-100 were given to
    res.buildings
    ……………
    ………………..
    …………………….Find how many number of 2’s were used while
    numbering res.buildings(2 number kiti vela aala??)
    1.18
    2.19
    3.20
    4.21
    ans : 19

    5.
    find (31*31*31/44*44*44)*(87*87*87/56*56*56)
    1.
    2.
    3.
    4.
    USE CALCI(calculator is allowed atleast in our batch it was allowed)

    6.
    A toy train can make 10 sounds sound changes aftr every 4
    min……………..
    ……………………………….
    ……………………………………
    now train is defective and can make only 2 sounds……………..
    ………………………………………….. ………………………….
    find probability that same sound is repeated 3 times consecutively(1 OUT OF
    __)?
    1.16
    2.8
    3.12
    4.4
    ANS:
    (1/2)*(1/2)*(1/2)=(1/Cool
    thus 1 out of 8

    7.
    resistance is X ohm voltage Y then wat is current
    1.
    2.
    3.
    4.
    ans:V=IR

    8.
    if a prson points at a photo nd say d person in dis picture iz son of my
    fathers son wat iz reln
    1.
    2.
    3.
    4.

    9.
    I have 3 grandsons………………………………….. ..
    age diff btw 2 of grandsons X yrs
    1st grandson is twice elder than younger one
    adiition off ages of all the three is y
    thn what is age of eldest grandson??(there is some value in X and Y)
    1.
    2.
    3.
    4.

    10.
    Ferrari is leading car manufacturer.*Ferrari S.p.A.* is an Italian sports
    car ………………………………….

    it has enjoyed great success.
    If Mohan’s Ferrari is 3 times faster than his old MERCEDES wich gave him 35
    kmph
    if Mohan travelled 490 km in his ferrari
    the hw much time(hours) he took??
    1.8
    2.4
    3.7
    4.7.33
    (options may b diff)

    11.
    lion rat stayin in jungle happily…………………………………….
    ………………………………………….. …………………………….
    Lion lies on : MON TUE WED
    RAT lies on :WED THURS SAT
    if lion says : I didnt lie yesterday
    RAT says : e1 i didnt lie yesterday
    so what day is today??
    1.
    2.
    3.
    4.

    12.
    the ratio of current age of X and Y is 5:7,after hw many years der age ratio will b 7:9?

    13.
    Inspired by fibonacci series sanket decided to create is own series which is 1,2,3,7,7,22,15,67,….
    lik dis,then what no come immediately before 63?

    ans= 202

    xpalnaton ;check altenate no.1,3,7,15=====>n*2+1
    similarly 2,7,22,67=======>n*3+1
    so series is 1,2,3,7,7,22,15,67,31,202,63……..

    14.
    exactly similar to above qn

    15.
    valentine day 14 feb 2005,was celebrated by n and u on monday,he was very happy,he n she……..
    ………den day on 14 feb 2010???(similar to dis some date qn was der)

    16.
    by using 1,2,3,4,5,how many 5 digit no. can be formed which is divisible by 4,repetation of no. is allowed??

    17.the cost 1 plum is 1 cent ,2 apples is 1 cent,3 banana is 1 cent……..
    if rahul buys same amount of fruits for his 3 sons spending 7 cent den what amount of fruit each child will get??

    ans: 1 plum ,2 apple,1 banana
    xplanation:7/3=2.333 cents for each child
    according to ans given for d sum each child will get 1 plum ,2 apple,1 banana

    18.
    2880 is divided by which smallest no. so we get no. which is perfect square???
    ans= 5
    xplanation 2880/5=576

    19.der r to prime no……..(with some nonsence stuff)…………..
    den addition of two prime no is 13,n multiplication is 21,den wat r some of der squares?

    xplanation : XY=21 and X+Y=13…solve using calci..ans of X & Y will b in points..den x2+y2=??

    20.
    smita was makin 1 design …..(again some nonsence)….size of larger cube to be made is 5*5*5……..
    using smaller cubes of 1*1*1….she created solid larger cube ..den she decided to make hollow cube…
    den hw many 1*1*1 cubes rqd to make hollow larger cube

    ans= 104

    xplanation (25+25)+(15+15)+(12+12)=104

    21.
    2X/5Y=5X/3Y…den wat is x/y (some easy some)

    22.
    A pizza parlor provides pizzas…there wer 2 toppings available initially peperoni and salami…
    but now they,ve introduces 8 new toppings (some names) to select from……
    a person wishes to buy two DIFFERENT pizzas of NEW topping….in how many ways he can do that??

    ans : 8 X 7=56

    23.
    person travels to….(some nonsence stuff)…..if he goes from A to B with speed of 4kmph and
    returns back to B with speed of 5 kmph….what is his avg. speed of journey??(values may b different)

    ans: 4.44(its NOT 4.5)
    explaination : 2PQ/(P+Q)===2*4*5/(4+5)=4.44kmph

    24.
    there is a dice having value frm 1 ..6 on each face……and a pack of cards having face card aces …..
    (hugh chunk of nonsense)……when 2 dies are thrown and their scores are added then which sum will come max number of times??
    1.8
    2.9
    3.10
    4.11
    Ans: 8
    explanation : 8—-2,6 3,5 4,4
    9—-4,5 3,6
    10—-5,5 4,6
    11—- 5,6
    thus 8’s probability is more

    25.”
    susha brought terilon cloth and rope to (some nonsence nw jst go to last 2 lines)….”….
    if rope is 153 mtr long and it is to be cut into pieces of 1 mtr long then how many times will she have to cut it??
    ans : 152 times

    26.
    (dnt remembr the xact q but procedure was somethn lyk this)
    …………………….8th year–1/1024,, 9th year–1/512,, 10th year–1/256 then aftr hw many years 1/32???
    ans: 13

    27
    (some q on this formula)(a3-b3) n (a+b)2=a2+b2+2ab

    28.
    there are 2 cans A and B one of MILK and other of Water resp. , both of same qty……
    first one teaspoon of milk from A can was added to B can…
    then one teaspoon from B can was added to A can then wich of the folloe\wing is true..
    1.Can A contain more milk than water in can B
    2.Can A contain less milk than water in can B
    3.both contain same qty of milk and water
    4.
    Ans : option–2

    29.
    probability sum on gloves,jackets and somethn lyk that(moderate sum)

    30.
    there are some 2 wheelers and 4 wheelers parked ……..(some nonsense)………..total number of wheels present is X(some value)
    then how many 4 wheelers wer there (i dont remembr whole sum exactly)
    (but it was easy ,q cud b solved by considering each and every options given as ans)

    31.
    If a pipe can fill the tank within 6 hrs but due to leak it took 30 min more
    now if the tank was full hw much tym will it take to get emptyed through the leak??(i dont remembr whole sum exactly)(lil bit tricky sum)

    32.
    Avg wt of class is X kg(some number) after adding wt of the teacger avg wt of class becomes Y kg then wat is the wt of the teacher??

    ================================================== ========================================

    Dated: 14th August 2010 At ITER, BHUBANESWAR

    APTITUDE QUESTION(35)

    1. 6 persons standing in queue with different age group, after two years their average age will be 43 and seventh person joined with them. hence the current average age has become 45. find the age of seventh person?

    Solution: it is given as after 2 yr average age wiil be 43 so now the average is 2 yr.

    After addition of 7th person avg is 45 so 7th person wiil be 45+(6*(45-4))

    Ans: 69

    2. Horse started to chase dog as it relieved stable two hrs ago. And horse started to ran with average speed 22km/hr, horse crossed 10 mts road and two small pounds with depth 3m, and it crossed two small street with 200 mts length. After traveling 6 hrs, 2hrs after sunset it got dog. compute the speed of dog?

    Ans: As we have speed and travel time of horse, we can get distance travelled by it…

    Hence d = 22*6 = 132km,

    Exactly this 132km was travelled by dog in 8 hours (as it started two hours earlier).

    Hence speed of dog = 132/8 = 16.5km/hr

    Ans:16.5km/hr.

    3. 3, 22 , 7, 45, 15, ? , 31

    Solution: Here it appear simple, because it arranged in arranged in sequence manner, but the actual question was some what twist mentioning fibonacci series and more over question was in statements (no numbers).. hence first try to understand the question well.

    here let group alternate terms 3,7,15,31 (3+4 =7, 7+8 =15, 15+16=31)

    Similarly for second group (22,45,? (22+23 = 45, 45+46 = 91) hence ans is 91.

    4. In Tnagar many buildings were under residential category.for buildings they number as 1 to 100. For shops, corporation numbered between 150 and 200 only prime numbers. how many time 6 will appear in building numbering?

    Ans:

    this type of question if it is asked how many 2,3,4,5,6,7,8,9 then you bindly write the answer as 20.but for 1 answer wiil be 21 as 100 is included

    5. ((4x+3y)+(5x+9y))/(5x+5y) = ? as (x/2y) = 2

    Ans: as x=2y put the value and get the answer.

    6: If we subract a number with y, we get 4 increase of number, once it got divided by y itself.. Find that number??

    Ans: 12 (we can easily predict from options, as we take y as 6)

    7. I dont remember exactly the question, one logical problem stating the colour of beer?
    Ans: white.what ever the question about the color of beer means you wrote the answer as white because polar beer.this question is very lengthy don?t burther about that.

    8. Jumbled letters, parakeet(answer)
    Ans: bird(category)

    9. one question like. (209*144)^2 + (209*209)+(209*144)+(144*144) = ?
    Ans: here you can use calc, many(4 to 5) questions were depend upon calc alone.(no need problem solving technique).

    10. Im only son for my parents. (some irrelevant statements in the middle to distract u).The man in picture is my father’s son.(some irrelevant statements).who is he?

    A toy train can make 10 sounds sound changes aftr every 4
    min……………..
    ……………………………….
    ……………………………………
    now train is defective and can make only 2 sounds……………..
    ………………………………………….. ………………………….
    find probability that same sound is repeated 3 times consecutively(1 OUT OF
    __)?
    1.16
    2.8
    3.12
    4.4
    ANS:
    (1/2)*(1/2)*(1/2)=(1/Cool
    thus 1 out of 8

    11.
    …………………………………………
    ………………………………………….. ….
    ………………………………………….. …………………………
    ………………………………………….. …………………………..
    resistance is X ohm voltage Y then wat is current
    1.
    2.
    3.
    4.
    ans:V=IR

    12. I have 3 grandsons………………………………….. ..
    age diff btw 2 of grandsons X yrs
    1st grandson is twice elder than younger one
    adiition off ages of all the three is y
    thn what is age of eldest grandson??(there is some value in X and Y)
    1.
    2.
    3.
    4.

    13. Ferrari is leading car manufacturer.*Ferrari S.p.A.* is an Italian sports
    car ………………………………….

    It has enjoyed great success.
    If Mohan’s Ferrari is 3 times faster than his old MERCEDES wich gave him 35
    kmph
    if Mohan travelled 490 km in his ferrari
    the hw much time(hours) he took??
    1.8
    2.4
    3.7
    4.7.33
    (options may be different)

    114
    lion rat stayin in jungle happily…………………………………….
    ………………………………………….. …………………………….
    Lion lies on : MON TUE WED
    RAT lies on :WED THURS SAT
    if lion says : I didnt lie yesterday
    RAT says : e1 i didnt lie yesterday
    so what day is today??
    1.
    2.
    3.
    4.

    14. The ratio of current age of X and Y is 5:7,after hw many years der age ratio will b 7:9?

    15. Inspired by fibonacci series sanket decided to create is own series which is 1,2,3,7,7,22,15,67,….
    lik dis,then what no come immediately before 63?

    ans= 202

    xpalnaton ;check altenate no.1,3,7,15=====>n*2+1
    similarly 2,7,22,67=======>n*3+1
    so series is 1,2,3,7,7,22,15,67,31,202,63……..

    16. By using 1,2,3,4,5,how many 5 digit no. can be formed which is divisible by 4,repetation of no. is allowed??

    Ans-last 2 place should be divisible by 4

    So possible values at last place are 12,24,32,44,52 this can be arranged in 5 ways

    The rest 3 places can be filled in 5*5*5 way so total is 5^4

    17. The cost 1 plum is 1 cent ,2 apples
    <!–[if !vml]–><!–[endif]–>

    is 1 cent,3 banana is 1 cent……..
    if rahul buys same amount of fruits for his 3 sons spending 7 cent den what amount of fruit each child will get??
    ans: 1 plum ,2 apple,1 banana xplanation:7/3=2.333 cents for each child according to ans given for d sum each child will get 1 plum ,2 apple,1 banana

    18. 2880 is divided by which smallest no. so we get no. which is perfect square???
    ans= 5
    xplanation 2880/5=576 sure sort question.

    19. There are to prime no……..(with some nonsence stuff)…………..
    den addition of two prime no is 13,n multiplication is 21,den wat r some of der squares?
    Explanation : XY=21 and X+Y=13…solve using calci..ans of X & Y will b in points..den x2+y2=??

    20. Smita was makin 1 design …..(again some nonsence)….size of larger cube to be made is 5*5*5……..
    using smaller cubes of 1*1*1….she created solid larger cube ..den she decided to make hollow cube…
    den hw many 1*1*1 cubes rqd to make hollow larger cube
    Ans= 104

    Explanation (25+25)+(15+15)+(12+12)=104

    21. 2X/5Y=5X/3Y…den wat is x/y

    22. A pizza parlor provides pizzas…there wer 2 toppings available initially peperoni and salami.
    but now they,ve introduces 8 new toppings (some names) to select from……
    a person wishes to buy two DIFFERENT pizzas of NEW topping….in how many ways he can do that??
    ans : 8 X 7=56

    23. Person travels to….(some nonsence stuff)…..if he goes from A to B with speed of 4kmph and
    returns back to B with speed of 5 kmph….what is his avg. speed of journey??(values may b different)

    Ans: 4.44(its NOT 4.5)
    Explaination : 2PQ/(P+Q)===2*4*5/(4+5)=4.44kmph

    24. There is a dice having value frm 1 ..6 on each face……and a pack of cards having face card aces …..
    (hugh chunk of nonsense)……when 2 dies are thrown and their scores are added then which sum will come max number of times??
    1.8
    2.9
    3.10
    4.11
    Ans: 8
    Explanation : 8—-2,6 3,5 4,4
    9—-4,5 3,6
    10—-5,5 4,6
    11—- 5,6
    thus 8’s probability is more

    25. ”susha brought terilon cloth and rope to (some nonsence nw jst go to last 2 lines)….”….if rope is 153 mtr long and it is to be cut into pieces of 1 mtr long then how many times will she have to cut it??
    Ans : 152 times

    26. There are some 2 wheelers and 4 wheelers parked ……..(some nonsense)………..total number of wheels present is 240
    then how many 4 wheelers wer there
    Ans-
    This can be done by looking at the option first check the no of bicycles and then multiply it by 2.

    And then substract the multiplication value from 240 if the value is divided by 4 then that is the answer

    27. 1/3 of a number is 6 more than 1/6 of that number then what is the number

    Ans=x/3=x/6+6
    36
    28. The cost of making a robot consists of material cost,repairing cost,coloring cost and is in the ratio 35.if the material cost is 1200 then find out the cost of the robot.
    Ans- simple 3 part is 1200 so 3+4+5=12 part=?

    29. There are pepsi 1 litre & oil 1 litre .it is given as 1 spoon of pepsi is aken and is mixed with Oil. Then 1 spoon oil&pepsi is taken and is mixed with pepsi then which of the condition holds true.

    Ans-the amount of pepsi in oil is mre than amount of oil in pepsi.

    30. An tank is filled with water .in first hour 10 lit ,in second hour 20 lit and in 3 rd hour time 40 lit.if time taken to fill ? of the tank is 5 hr.what is the time required to fill up the tank.
    Ans-as the water is filled as twice speed.and in 5 the hour ?.so in 6 hour ?.so answer 7 th hour.

    TCS Paper on 29th August 2010 @ SRMCEM, Lucknow

    Question 1: There is a toy train that can make 10 musical sounds. It makes 2 musical sounds after being defective. What is the probability that same musical sound would be produced 5 times consecutively? ( 1 of _____) ?
    Answer: 1/2 * 1/2 * 1/2 * 1/2 * 1/2 = 1/32
    32 will be the answer.
    (My friends got similar question with “3 times consecutively”; for that the answer would be Cool

    Question 2: Peter and Paul are two friends. The sum of their ages is 35 years. Peter is twice as old as Paul was when Peter was as old as Paul is now. What is the present age of Peter?
    Luckily, I had this question twice. Initially I left it because of the confusing statement but when I got the same question second time with different names of the friends (Pooja and Prasad) then I gave a little extra time and solved it.
    Answer: 20 years. I simply substituted the answers in the statement to find the best fit, because the statement in the question was pretty confusing.

    Question 3: The ages of two friends is in the ratio 5:6. After how many years will the ages be in the ratio 7:8?
    Answer: 10 years.

    Question 4: (There was a long story, I’ll cut short it). There are 5 materials to make a perfume: Lilac, Balsalmic, Lemon, Woody and Mimosaic. To make a perfume that is in demand the following conditions are to be followed: Lilac and Balsalmic go together. Woody and Mimosaic go together, Woody and Balsalmic never go together. Lemon can be added with any material. (Actually they had also mentioned how much amount of one can be added with how much quantity of the other; but that’s not needed for the question.) All of the following combinations are possible to make a perfume EXCEPT:
    1) Balsalmic and Lilac
    2) Woody and Lemon
    3) Mimosaic and Woody
    4) Mimosaic and Lilac
    Answer: Mimosaic and Lilac. I have made the question here really easy to understand. But the actual question was in a twisted language and it was difficult to find the answer. It took me some time to get to the answer.

    Question 5: A girl has to make pizza with different toppings. There are 8 different toppings. In how many ways can she make pizzas with 2 different toppings.
    Answer: 8 * 7 = 56

    Question 6: A triangle is made from a rope. The sides of the triangle are A cm, B cm and C cm. (I do not remember the numerical value). What will be the area of the square made from the same rope?

    Question 7: What is the distance of the z-intercept from the x-intercept in the equation ax+by+cz+d=0. (I do not remember the values of a,b,c,d)

    Question 8: An athlete decides to run the same distance in 1/4th less time that she usually took. By how much percent will she have to increase her average speed?
    Answer: 33.33%

    Question 9: A horse chases a pony 3 hours after the pony runs. Horse takes 4 hours to reach the pony. If the average speed of the horse is 35 kmph, what s the average speed of the pony? (This question was really long with loads of irrelevant statement)

    These are a few questions that I could recall. I made through the aptitude round by attempting 16 questions. Next was Technical Interview Round.

    Technical Interview:
    Here I will discuss the technical questions that were asked to me and also the questions asked to my friends.

    Question 1: Write the pointer representation of a[i][j][k].

    Question 2: i = 5
    i++, ++i, –i, i–, 5
    What will be the output if it is printed?

    Question 3: How will you insert a new node between any two nodes in a linked list? Write the code.

    Question 4: How will you find a particular data in the linked list?

    Question 5: What is MD5?

    Question 6: What is RSA? Explain its principle.

    Question 7: There is a triangle and 3 ants on each vertex of the triangle. The 3 ants start to move randomly along the edges of the triangle. What is the probability that two ants will collide?

    Question 8: What is the difference between C and C++?

    Question 9: What do you mean by polymorphism?

    Question 10: Give an example of polymorphism with code.

    Question 11: What do you mean by OOP?

    Question 12: What is inheritance?

    Question 13: What is a friend function?

    Question 14: What is an abstract class?

    Question 15: Suppose there is a number 235 such that sum of first two digits is equal to the third digit. How many such 3 digits number are possible?

    Question 16: Why is the VIRTUAL keyword used in C++?

    Question 17: Which keyword is written to use a variable declared in one class in the other class?

    Question 18: Suppose a code is written in C and you want to use that code in C++. How can you do that?

    Question 19 What do you mean by DML?

    Question 20: Is there any language other than SQL where DML is used? If yes, then which?

    Question 21: How many normal forms do we have?

    Question 22: Here is a tic-tac-toe game which is being played by 2 people:
    x o _
    o _ _
    x o x

    _ represent the blank spaces. Who played the last chance (x or o)?

    Technical Questions asked to my friends:

    Question 1: What is a transaction? Properties of Transaction?

    Question 2: What “condition” will be written in the if statement such that both Hello World are printed when the following code is executed.

    if(condition)
    {
    printf(“Hello”);
    }
    else
    {
    printf(“World”);
    }

    Question 3: What will be the output of the following code?
    int i=5;
    printf(“%d, %d, %d”, i++, i, ++i);

    Which C compiler do you use? (My friend said TURBO)
    What will be the output of above code in TURBO compiler? (He said SAME)
    No! It will not be the same.

    After the technical round, there was an MR i.e. Managerial Round.
    It was just a 2-3 minutes round. The interviewer asked me to introduce myself. Then asked about my father. Then core values and strengths. Your hobbies? Which latest novel have you read?

    Next was the HR round. This was a little time taking round as the technical one.

    Question 1: Introduce yourself?
    Question 2: Your family background; father, mother, siblings.
    Question 3: How does TCS earns its revenues? How it does its business?
    Question 4: What was the need of bringing Information Technology in India?
    Question 5: There is a round cake. You have 3 chances to cut the cake. Divide the cake into 8 pieces in these 3 chances.
    Question 6: Suppose if I reject you today, what will you do next?
    Question 7: You have a good communication skill. Why is it so? Is it because of your schooling or family atmosphere? Whom do you give the credit for this?
    Question 8: What are your strengths? Give 2 examples of your life incidents that portray this strength in you.
    Question 9: What are your weaknesses?

    TCS Paper on 29 August 2010 At SALT LAKE, KOLKATA

    1) Now pet’s age is to times when paul was once. But at that time paul’s age=pet’s current age ,how old is pet?

    2) Block has 10,9,5 size, how many unit cube is needed to make a block of that size?

    3) 23 people are there, they are shaking hands together, how many hand shakes possible, if they are in pair of cyclic sequence.

    Ans-22

    4) 10men and 10 women are there, they dance with each other, is there possibilty that 2 men are dancing with same women and vice versa.

    Ans-never

    5) A lady took out jacket and gloves, which are avialable in blue 26, yellow 30 and red 56. Power goes off, she can distinguish between gloves and jacket but not in colors. What’s the possibilty their she will pick up pair of gloves of each color

    6) B is taller than j and 3 pillers. P is shorter than B and 2 pillers is j shorter/taller than P?

    Ans-irrelevant question

    7) Sangakara and ponting selects batting by using a dice, but dice is biased so to resolve ponty takes out a coin, what is the probability that dice shows correct option.

    Cool In school there are some bicycles and 4wheeler wagons. One Tuesday there are 58 wheels in the campus. How many bicycles are there?

    Ans: 7

    9. Two bowls are taken, one contains water and another contains tea.one spoon of water is added to second bowl and mixed well, and a spoon of mixture is taken from second bowl and added to the second bowl. Which statement will hold good for the above?

    (Ans: second liquid in first bowl is smaller than the first mixture in second bowl)

    10. Which is the smallest no divides 2880 and gives a perfect square?

    a.1 b.2 c.5 d.6
    Ans: c

    11. Form 8 digit numbers from by using 1, 2,3,4,5 with repetition is allowed and must be divisible by4?

    a.31250 b.97656 c.78125 d.97657
    Ans: c

    12. One problem on (a3-b3)/(a2+ab+b2)

    Ans: ?a-b?

    13. Rearrange and categorize the word ?RAPETEKA??

    Ans: bird(parakeet)

    14. Key words in question (Fibonacci series, infinite series, in the middle of the question one number series is there?.I got the series 3 12 7 26 15 b ?

    Ans:54

    (Logic: 3*2+1=7 12*2+2=26

    7*2+1=15 26*2+2=54)

    15. A father has 7 penny?s with him and 1 water melon is for 1p, 2chickoos for 1p, 3 grapes foe 1p.he has three sons. How can he share the fruits equally?

    Ans: 1 watermelon,2chickoos,1grape

    16. A lies on mon, tues, wed and speak truths on other days, B lies on thur, fri, sat and speaks truths on other days.. one day a said I lied today and B said I too lied today. What is the day?

    17. Man, Bear, North, South, walks.

    Ans: White

    18. (1/2) of a number is 3 times more than the (1/6) of the same number?

    Ans: 9(for any no it can be true)

    19. There are two pipes A and B. If A filled 10 liters in hour B can fills 20 liters in same time. Likewise B can fill 10, 20, 40, 80,160?.if B filled in (1/16) th of a tank in 3 hours, how much time will it take to fill completely?

    Ans:7 hours

    20. KEYWORDS:T.Nagar,Chennai,1-100,prime numbers b/n 140-180,How many 2?s are there?

    Ans: 20 (Not only 2?s ,1?s,3?s,4?s,5?s,6?s,7?s,8?s,9?s,0?s also 20)

    21. One question has last part like difference between two terms is 9 and product of two numbers is 14, what is the squares of sum of numbers?
    Ans:109

    22. A man is standing before a painting of a man and he says I have no bro and sis and his father is my father?s son?

    Ans: His son

    23. What is the value of [(3x+8Y)/(x-2Y)]; if x/2y=2?
    Ans:10 {the numerical may change)

    24. A pizza shop made pizzas
    with to flavours.in home there are ?N? different flavors, in that ?M? flavors are taken to made pizza.in how many ways they can arrange?
    (Logic: NcM )

    25. One grandfather has three grandchildren, two of their age difference is 3, eldest child age is 3 times youngest child?s age and eldest child?s age is two times of sum of other two children. What is the age of eldest child?
    Ans:18

    26. In a market 4 man are standing .the average age of the four before 4years is 45,aftyer some days one man is added and his age is 49.what is the average weight of all?
    Ans: 49

    27. KEYWORDS: one organization ,material ,labor and maintenance are in the ratio of 47,the material cost is:100,what is the total cost?
    Ans: 425

    28. KEYWORDS: density, reluctance, sensitivity, voltage ,current, what is the resistance Formula is ?R=V/I?

    29. KEYWORDS: Sports readers,10 tables,4chairs per table, each table has different number of people then how many tables will left without at least one person?
    Ans : 6

    30. KEYWORDS: Die, card, coin, b/n 2 to 12
    Ans: All are equal

    31. In a school for a student out of a 100 he got 74 of average for 7 subjects and he got 79 marks in 8th subject. what is the average of all the subjects?
    Ans:

    the xtra 5 marks will be distributed in 8 semester, 5/8=.625
    74+.625=74.625

    32. In a question ,last part has ,the ages of two people has the ratio of 6:5 and by adding the numbers we get 44,after how many years the ratio would be 8:7?
    Ans: 8

    33. Two years before Paul?s age is 2times the Alice age and the present age of Paul is 6times the Alice. what is the presents Paul?s age???( 3years) ?u try to solve this question once?

    34.One train travels 200m from A to B with 70 km/ph. and returns to A with 80kmph, what is the average of their speed?

    TCS PAPER on 21st AUGUST 2010 AT AJAY KUMAR GARG ENGINEERING COLLEGE ,GHAZIABAD

    PAPER PATTERN:

    SYLLABUS:

    The computer based test had questions :-

    Area and Perimeter, Probability, Problems on Ages, Pipes and Cisterns, Ratio and Proportion some logical questions, blood relations, percentages, profit-loss, area, direction sense etc.

    ROUNDS:

    1) Written

    2) Technical

    3) HR

    4) Managial round

    MEMORY BASED PAPER:

    1. A man whose age is 45 yrs has 3 sons named John,jill,jack. He went to a park weekly twice.he loves his sons very much. On a certain day he find # shopkippers sailing different things. An apple cost 1penny, 2chocalate costs 1penny.& 3 bananas cost 1 penny. He has bought equal no. of apple, chocolate & banana for each son. If the total amount he invest is 7 penny then how many he has bought from each piece for his son?
    a)1app,1cho,1 banana

    b)1 app,2cho,3 banana

    c)1app,2cho,1banana

    D)2 app,2cho,2 banana

    2. A scientist was researching on animal behavior in his lab. He was very interested in analyzing the behavior of bear. For some reason he travelled 1mile in north direction & reached at north pole.there he saw a bear .he then followed the bear around 1 hr with a speed of 2km/hr in east direction.After that he travelled in south direction & reached at his lab in2 hrs. Then what is the colour of the bear? I think ans is white
    a)white b)black c)gray d)brown

    3. How many 9 digit numbers are possible by using the digits 1,2,3,4,5 which are divisible by 4 if repetition of digits is allowed?

    4. Calcutation based on A^3-B^3 formula

    5. A long story based ALICE AND WONDER LAND after that simple age question .

    6. Question based on V=I*R but in dis question most of data given are ridiculas like volume ,density,length,height similar long story are given

    7. A direct question on blood relation.

    8. A big Question describing a story ARYABHATT AND HIS DAUGHTER LILAVATI
    After that a number is given eg 2088.by what if we divide the number it ll become a perfect square?

    9. 1st a story. Then a simple ratio problem. The question was if the ratio of age of two persons is 5:6,sum of present age is 33,then in how many years the ratio of their age becomes 7:8?
    a)3 b)4 c)5 d)6

    10. A very big story.on Tuesday college parking place have only 4wheelers & bicycles,total no of wheels was 182,yhen what is the possible no of bicycles?
    a)20 b 19 c 18 d 17

    11. Simple question bt big one on average age.sth like a,b,c weigheted separately 1st a,b,c ,then a& b,then b&c ,then c&a at last abc,the last weight was 167,then what will be the avg weight of the 7 weight?

    12. Arrange the jumbled letters to make a perfect word RGTEI(sth like this). Find to which category it belong? (plz do not these type q becoz its time consuming)
    A)town b)vegetable c)animal d) bird

    13) Simple puzzle based on IQ
    3 persons a,b,c were there A always says truth,B lies on Monday,tusday,& Wednesday.but C lies on thrusday,Friday & saturday .one day A said?that B & C said to A that? B said ?yesterday way one of the days when I lies?,C said that?yesterday way one of the days when I lies too?.then which day was that?
    Ans: a Sunday b thrusday c saterday d?.

    14) A girl has to make pizza with different toppings. There are 8 different toppings. In how many ways can she make pizzas with 2 different toppings.
    Answer: 8 * 7 = 56

    15) Peter and Paul are two friends. The sum of their ages is 35 years. Peter is twice as old as Paul was when Peter was as old as Paul is now. What is the present age of Peter?

    16) Question based on pipe & ciston (geometrical series)
    A and B tanks r there.1/8th of the tank B is filled in 22Hrs.what is time to fill the tank full?

    17) 5 friends went for week end party to Mc donalds restrurent and there they measure there weights .some irrrrrrrrrrrrrrrrilevent data.finel measure is 155 kg then find the average weight of 5 people?
    ans:155/5=31

    1Cool 2 pots are there.1st pot is filled with ink and 2nd pot is filled with water.take 1 spoon of ink from 1st pot and pore it in 2nd pot.and take 1 spoon of mixture from 2nd pot and pore it in 2nd pot then which one of following is true?
    ans: Water in 1st pot is less than the ink in 2nd pot.

    19) There r ten spots in library and each spot has 4 tables and ten readers ar there . 10 student come into liberary and want 2 study in how many ways that they sit in d liberary so that no chair would be blank?
    ans :1

    Technical Interview:
    1) Basic C
    2) Programm of palindrom
    3) Same prom via pointer
    4) Difference b/w structure & union
    5) Question based on networking
    6) Question based on tcp/ip & osi layer and their function
    7) My final year project
    Cool Industrial traing
    9) Some questin based on switching theory
    10) Kirchaff voltage law
    11) Purpose of k-map
    12) Addition of a+b in microprocessor

    HR & Managial round:

    1) Weakness

    2) Question based on weakness

    3) Microprocessor question

    4) Difference b/w p4 & core2 dua microprocessor

error: Content is protected !!