300+ TOP Wireshark Interview Questions – Answers

  1. 1. What Is Wireshark?

    Wireshark® is a network protocol analyzer. It lets you capture and interactively browse the traffic running on a computer network. It has a rich and powerful feature set and is world’s most popular tool of its kind. It runs on most computing platforms including Windows, macOS, Linux, and UNIX. Network professionals, security experts, developers, and educators around the world use it regularly. It is freely available as open source, and is released under the GNU General Public License version 2.

    It is developed and maintained by a global team of protocol experts, and it is an example of a disruptive technology.

    Wireshark used to be known as Ethereal®. See the next question for details about the name change. If you’re still using Ethereal, it is strongly recommended that you upgrade to Wireshark as Ethereal is unsupported and has known security vulnerabilities.

  2. 2. How Would You Setup Wireshark To Monitor Packets Passing Through An Internet Router?

    A system on the network can be configured and setup with wireshark. The appropriate port on the switch to which the system and internet router is connected can be configured for port mirroring. All packets passing through the switch interface to the router can be mirrored to the system on which wireshark is setup.


  3. Network Technical Support Interview Questions

  4. 3. Can Wireshark Be Setup On A Cisco Router?

    Wireshark is an executable. It can be setup on operating systems like windows and linux. It cannot be setup on a Cisco router , as it runs a proprietary operating system on which additional tools or software cannot be installed.

  5. 4. Is It Possible To Start Wireshark From Command Line On Windows?

    Yes, it is possible to start using the appropriate executable on Windows which is wireshark.exe


  6. Perl Scripting Tutorial

  7. 5. A User Is Unable To Ping A System On The Network. How Can Wireshark Be Used To Solve The Problem?

    Ping uses ICMP. Wireshark can be used to check if ICMP packets are being sent out from the system. If it is sent out, it can also be checked if the packets are being received.


  8. Perl Scripting Interview Questions

  9. 6. Which Wireshark Filter Can Be Used To Check All Incoming Requests To A Http Web Server?

    HTTP web servers use TCP port 80. Incoming requests to the web server would have the destination port number as 80. So the filter tcp.dstport==80.

  10. 7. Which Wireshark Filter Can Be Used To Monitor Outgoing Packets From A Specific System On The Network?

    Outgoing packets would contain the IP address of the system as it’s source address. So assuming that the IP address of the system is 192.168.1.2, the filter would be ip.src==192.168.1.2


  11. Python Tutorial
    Python Interview Questions

  12. 8. What’s Up With The Name Change? Is Wireshark A Fork?

    In May of 2006, Gerald Combs (the original author of Ethereal) went to work for CACE Technologies (best known for WinPcap). Unfortunately, he had to leave the Ethereal trademarks behind.

    This left the project in an awkward position. The only reasonable way to ensure the continued success of the project was to change the name. This is how Wireshark was born.

    Wireshark is almost (but not quite) a fork. Normally a “fork” of an open source project results in two names, web sites, development teams, support infrastructures, etc. This is the case with Wireshark except for one notable exception — every member of the core development team is now working on Wireshark. There has been no active development on Ethereal since the name change. Several parts of the Ethereal web site (such as the mailing lists, source code repository, and build farm) have gone offline.

  13. 9. What Kind Of Shark Is Wireshark?

    carcharodon photoshopia.


  14. Networking Interview Questions

  15. 10. What Do You Think Of Wireshark?

    It’s functional to monitor network traffic flow and see if there is not any traffic. Great freeware.


  16. Networking Tutorial

  17. 11. How To Remove Wireshark Antivirus From My Computer?

    Restart your computer and boot it in a safe mode and then you should be able to access your antivirus. if that won’t work


  18. Network Security Interview Questions

  19. 12. How Do I Use Wireshark To Find A Password In My Network?

    Wireshark cannot sniff SSL-protected (HTTPS) passwords unless an encryption key is provided: There is a different way to sniff HTTPS data (without providing a key), see here (run Wine for windows apps): Just a friendly reminder, like any other prank war, think twice before you get in trouble with the law.


  20. Network Technical Support Interview Questions

  21. 13. Doe Wireshark Work For Your Computer Only?

    I can only answer your question in general terms, since I have not actually used the Wireshark packet sniffer. I have used other packet sniffers.

    In general, packet sniffers are only useful for sniffing packets to or from the PC they are installed on. In most modern switched networks, traffic going to or from other PCs in the network is generally not seen by other PCs on the network, thus there is no way for a packet sniffer to detect it. This is because the router and switch on your network will route network traffic directly to the intended devices without broadcasting it to every device on the network.

    In order to monitor your brother’s PC you would either need a packet sniffer installed on his PC, or you would need a packet sniffer installed on the gateway device, i.e., your router.

    Alternatively, you could place your PC and your brother’s on a hub–not a switch. A hub is “dumber” than a switch in that it repeats all traffic on all ports. However this is not ideal for speed and network collision issues.


  22. Network Security Tutorial

  23. 14. Why Does Wireshark Not Detect My Wireless Cards?

    One of the worst “Achilles Heels” of many Linux Distros is, they don’t recognize WiFi devices. And, therefore, do NOT load the Device Drivers, and, WireShark won’t work without the drivers. So, find a Linux Distro that does recognize your WiFi devices..

  24. 15. How Do I Modify Wireshark Packets On The Fly?

    Wireshark is a packet capture & inspection program, not a packet injection program. What you’re asking about appears to be a man-in-the-middle attack so I’m not going to assist you in that.


  25. 4G Interview Questions

  26. 16. Why Don’t The Packets I’m Capturing Have Vlan Tags?

    You might be capturing on what might be called a “VLAN interface” – the way a particular OS makes VLANs plug into the networking stack might, for example, be to have a network device object for the physical interface, which takes VLAN packets, strips off the VLAN header and constructs an Ethernet header, and passes that packet to an internal network device object for the VLAN, which then passes the packets onto various higher-level protocol implementations.

    In order to see the raw Ethernet packets, rather than “de-VLANized” packets, you would have to capture not on the virtual interface for the VLAN, but on the interface corresponding to the physical network device, if possible.

  27. 17. How Can I Capture Packets With Crc Errors?

    Wireshark can capture only the packets that the packet capture library – libpcap on UNIX-flavored OSes, and the WinPcap port to Windows of libpcap on Windows – can capture, and libpcap/WinPcap can capture only the packets that the OS’s raw packet capture mechanism (or the WinPcap driver, and the underlying OS networking code and network interface drivers, on Windows) will allow it to capture.

    Unless the OS always supplies packets with errors such as invalid CRCs to the raw packet capture mechanism, or can be configured to do so, invalid CRCs to the raw packet capture mechanism, Wireshark – and other programs that capture raw packets, such as tcpdump – cannot capture those packets. You will have to determine whether your OS needs to be so configured and, if so, can be so configured, configure it if necessary and possible, and make whatever changes to libpcap and the packet capture program you’re using are necessary, if any, to support capturing those packets.

    Most OSes probably do not support capturing packets with invalid CRCs on Ethernet, and probably do not support it on most other link-layer types. Some drivers on some OSes do support it, such as some Ethernet drivers on FreeBSD; in those OSes, you might always get those packets, or you might only get them if you capture in promiscuous mode (you’d have to determine which is the case).

    Note that libpcap does not currently supply to programs that use it an indication of whether the packet’s CRC was invalid (because the drivers themselves do not supply that information to the raw packet capture mechanism); therefore, Wireshark will not indicate which packets had CRC errors unless the FCS was captured (see the next question) and you’re using Wireshark 0.9.15 and later, in which case Wireshark will check the CRC and indicate whether it’s correct or not.


  28. 3G Interview Questions

  29. 18. What Causes Wireshark Error?

    You probably have automake 1.5 installed on your machine (the command automake –version will report the version of automake on your machine). There is a bug in that version of automake that causes this problem; upgrade to a later version of automake (1.6 or later).


  30. Perl Scripting Interview Questions

  31. 19. What Exactly Does Wireshark Do?

    It analyses network traffic.

  32. 20. Can’t Install Wireshark?

    The program you used to download it may have downloaded it incorrectly. Web browsers and download accelerators sometimes may do this. Re-download it and check if the file is supported for your system.


  33. Berkeley Software Distribution (BSD) Interview Questions

300+ TOP Zebronics Technical Interview Questions – Answers

  1. 1. Is There Any On/off Switch Present In Keyboard And Mouse?

    As far keyboard as concern ON/OFF switch not present but you can wake up keyboard by pressing num lock when it is in sleep mode.

    Mouse has an inbuilt ON/OFF switch, which is present in back side of the mouse.

  2. 2. When Dongle Is Connected My Keyboard Is Working And Mouse Is Not Working?

    The product might require a fresh synchronization, please follow the below steps.

    MOUSE –
    When you insert a battery in mouse it will start with red color LED blinking and get off in 2-3 seconds, please press and hold scroll button and right click button for 2-3 sec when green LED starts blinking , please release the buttons and insert the dongle in USB port.

    KEYBOARD –
    When you insert a battery on keyboard slot green LED in front will start blink for 1-3 sec and stops, later please press connect button while you inserting dongle with a long green color LED blink it will start pairing with the dongle.


  3. TCS Technical Interview Questions

  4. 3. The Covering Distance Of My Mouse Is Very Poor?

    If battery is weak this might happen, please replace your battery with new one. You can use combo device within 9M.

  5. 4. Mouse Is Not Working But Led Is Blinking?

    1.  Press and hold scroll button and right click button.
    2.  Insert battery when you leave the hold off scroll and right click (Releasing the keys and inserting the battery must be on the same time   without any delay)
    3.  When you complete step 2 mouse will start blinking on that time please insert dongle in to USB slot.
  6. 5. How To Switch Between Different Led Modes?

    Press “FN” + “INS”   – 4modes. ( Modes can be switched by pressing this combination again.)

    Press “FN” + “HM”   – 4modes. (Modes can be switched by pressing this combination again.)

    Press “FN” + “PU”    – 4modes. (Modes can be switched by pressing this combination again.)

    Press “FN” + “DEL”  – 4modes. (Modes can be switched by pressing this combination again.)

    Press “FN” + “PD”    – 4modes. (Modes can be switched by pressing this combination again.)

    Press “FN” + “END” – 1modes.


  7. Wipro Technical Interview Questions

  8. 6. Is It Possible To Program A Key In “fn” + “end” Mode ?

    Yes,  Press twice “FN+END”, the Keyboard will enter into configuring mode. (NUM LOCK, CAPS LOCK & SCROLL LOCK LED will blink  continuously.)

    Press the keys for which you want the LEDs ON/OFF.   Once you have  done, Press  “FN+END” again to exit  this mode.

  9. 7. How To Increase/decrease The Brightness Of The Led?

    Press “FN” + “Up/down arrow key” – to change the LED brightness adjustment.


  10. Infosys Technical Interview Questions

  11. 8. How To Increase/decrease The Blinking/animation Speed Of The Led?

    1. Press “FN” +  “-”     – to Decrease the blinking/animation speed of LED
    2. Press “FN” +  “+”     – to increase the blinking/animation speed of LED.
  12. 9. How To Shift Led Movement From One Direction To Other ?

    Press “FN” + “Left/Right arrow key” – to move the led light from Left to right or Right to left.


  13. Apple Technical Interview Questions

  14. 10. How To Lock The Windows Key?

    Press “FN” + “Windows keys” – to lock the WINDOWS key function, press again to unlock. 

  15. 11. Is It Possible To Program The Backlit For Keys In Max Pro ?

    Yes, below is the detailed guide for the same

    1. Press twice “FN” +  “~”, the Keyboard will enter into configuring mode. (NUM LOCK, CAPS LOCK & SCROLL LOCK LED will blink continuously.)
    2. Now press “FN”+ “RIGHT KEY”, to change the selected color. The backlit colors will change in following order – 1.Red  2.Orange 3.Yellow  4.Green 5.light blue 6.Blue 7.Violet 8. White 9. Off.The selected backlit color will be visible in “~” key.
    3. To save the configured mode, press “FN” + “~” key once again.
    4. This custom color backlit will be saved even when keyboard is disconnected, you can select this custom color backlit by pressing “FN” + “~” key once.
  16. 12. How To Change The Led Colors?

    Press “FN” + “Right  arrow key”.


  17. TCS Technical Interview Questions

  18. 13. How To Change Fm Mode And How To Scan/save Channels?

    1. Turn on the device using power and volume button.
    2. Press reset button once.
    3. Press scan button once.
    4. Available range FM channel will be scanned and saved automatically.
    5. After scanning, pressing the scan button will allow you to change FM channels.
  19. 14. Where Did Battery Socket Located In Headphone?

    Headphone –
    On the left side of headphone is having the battery socket, please slice down the dark brown color cap to open and locate battery. Requires two AAA batteries.

    Transmitter –
    On transmitter battery socket located in bottom of the unit. Requires AAA batteries.

  20. 15. How To Connect Transmitter With Desktop/laptop/tablet/mobile Etc?

    Please use the bundled AUX cable (3.5mm on one side and two RCA female on another side) and connect RCA end with transmitter and connect 3.5mm (Stereo) end to the device you wish to connect.

  21. 16. What Is Monitor Feature And How To Use?

    This mode used for voice capture, you can keep transmitter in monitor mode on one desk and can hear voice through headphone up to distance of 10m (Without any interruption)

    1.  Turn on transmitter and headphone
    2.  Set transmitter on monitor mode
    3.  No more connection required (Cable free)
    4.  Receive transmitter signal on headphone by pressing scan button.
  22. 17. How To Connect A Mobile For Wireless Music ?

    When the speaker is in wireless mode, search for nearby BT devices in your mobile. Tap the name “ZEB-PUNCH” and connect it.(Password – 0000, if prompted).

  23. 18. What Are The Different Modes In Zeb-punch ?

    BT Wireless/Micro SD/USB/FM /AUX mode.


  24. Wipro Technical Interview Questions

  25. 19. How To Tune Fm Channels?

    1. Switch the speaker to FM mode.
    2. Connect the AUX cable to the AUX port of the speaker and leave the other end free (this cable will act as an FM  antenna).
    3. Press the Play/Pause button once to start scanning the FM channels.
    4. once the scanning is done, the speaker will start playing from first saved channel.
    5. To change the channels you can use Next/Previous buttons.
  26. 20. What Are The Different Led Indicators?

    Red LED glowing – Charging  

    Red LED turns OFF – Fully charged.

  27. 21. How To Decrease/increase The Volume Level?

    Press “-/+” to decrease/increase the volume level respectively.

  28. 22. How To Use Usb/msd Card?

    Once a USB/mSD card is inserted into the speaker, it will detect the USB/mSD card automatically start playing the songs from it.

  29. 23. What Are The Different Modes In Zeb-oliver?

    BT Wireless/Micro SD card/USB/FM/AUX.

  30. 24. How To Scan Fm Channels?

    1. Switch the speaker to FM mode.
    2. connect the AUX cable to the AUX port of the speaker and leave the other end free (this cable will act as an FM  antenna).
    3. Press and hold the Play/Pause button to start scanning for FM channels.
    4. Once the scanning is done, the speaker will start playing from first saved channel.
    5. To change the channels you can use +/- buttons.

  31. Infosys Technical Interview Questions

  32. 25. How To Use Usb/micro Sd Card?

    Once a USB/Micro SD card is inserted into the speaker, it will detect the USB/Micro SD card automatically and start playing songs from it.

  33. 26. How To Pair The L & R Speaker With Each Other?

    Turn ON both the JIVE speaker & Press and hold the Play/Pause key of any one speaker to pair both the speaker together. Sound notification is prompted once successfully connected. Both the speakers can also be disconnected by long press the Play/Pause key of any one speaker again.

  34. 27. How To Pair Both The Speaker To A Single Mobile To Stream Wireless Music?

    Once both the speakers are connected to each other with the help of the above step, Scan and discover “ZEB-JIVE” speaker on your device. Tap on “ZEB-JIVE” to connect (Password-0000, If prompted).


  35. Apple Technical Interview Questions

  36. 28. How To Pair L & R Speakers Individually With Two Different Mobiles?

    Disconnect the L & R connection of the speakers (If both the speakers are connected to each other) by long pressing the Play/Pause key of any one speaker. Sound notification is prompted once successfully disconnected. Now both the speakers can be connected individually to two different devices.

  37. 29. How To Use The Speakers In Aux Mode?

    Connect one end of the 3.5mm jack cable to the audio source Connect the other ends (Other end splits to two 3.5mm jack) of the cable to both the speakers.

  38. 30. How To Connect The Mellow Speaker To A Audio Source?

    Connect the USB of the speaker to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter) Plug the 3.5mm jack to the audio source.

  39. 31. What Is The Purpose Of The Given Controller?

    With the help of the controller, Mellow can be function in various other modes. (i.e Bluetooth,FM,USB & SD modes).

  40. 32. Using The Controller, How Can We Connect Mellow Wirelessly Via Bt?

    Connect the USB of the speaker to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter)Plug the Micro USB to the controller & the other end of the micro USB cable to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter).

    • Plug in the 3.5mm jack of the speaker to the controller.
    • When the controller is in BT mode, search for nearby devices in your mobile.
    • Tap the name “ZEB-MELLOW ” and connect it. (Password – 0000, if prompted).
  41. 33. Using The Controller, How To Tune Fm Channels In Mellow?

    Connect the USB of the speaker to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter)plug the Micro USB to the controller & the other end of the micro USB cable to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter)

    • Plug in the 3.5mm jack of the speaker to the controller.
    • When the controller is in FM mode,Press the Play/Pause button once to scan the available FM channels.
    • Once the scanning is done, the speaker will start playing the first channel. To change the channels use the next/previous buttons on the controller.
  42. 34. Using The Controller, How To Play Songs Via Usb Pendrive/sd Card?

    Connect the USB of the speaker to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter)Plug the Micro USB to the controller & the other end of the micro USB cable to a Powered USB port. (Via USB port or PC/Laptop or DC 5V adapter)

    • Plug in the 3.5mm jack of the speaker to the controller.
    • Insert a Pendrive/SD card to the controller
    • The Controller will detect the Pendrive/SD card & start playing the available audio content in the pendrive/SD card.

300+ TOP Kinesiologist Interview Questions [LATEST]

  1. 1. Explain Me What Is A Kinesiologist (kin)?

    kinesiologist is a health professional (also known as a human movement professional) registered with their provincial kinesiology association. Kinesiologists are human movement specialists that provide services to the public through the application of sciences such as anatomy, physiology, biomechanics, and psychomotor behaviour (BCAK).

  2. 2. Please Explain What Is A Dynamic Muscle Contraction?

    An example would be what happens when a person pushes against a wall. The muscles contract but the joint remains unmoved. A dynamic (or isotonic) contraction occurs when the force generated by the muscle causes movement in the joint. Dynamic contractions occur during most physical activities.

  3. Dental Hygienist Interview Questions

  4. 3. Explain What Is Anatomy In Medical Science?

    Anatomy is a branch of biology and medicine which can be divided into three broad areas: human anatomy, zootomy (animal anatomy), and phytotomy (plant anatomy). The word anatomy comes from the Greek ana- meaning “up”, and tome- meaning “a cutting”. Anatomy, especially in the past, has depended heavily on dissection.

  5. 4. What Is Kinesiologist Health Education?

    Kinesiologists working in health education teach people about behaviors that promote wellness. They develop and implement strategies to improve the health of individuals and communities. Community health workers collect data and discuss health concerns with members of specific populations or communities.

  6. 5. Tell Me What Is Holistic Kinesiology?

    Kinesiology, literally, is the study of body movement, encompassing holistic health disciplines which use gentle manual muscle testing to monitor information about a person’s well being. Kinesiology can assist in spiritual, emotional and structural issues.

  7. Microbiology Interview Questions

  8. 6. What Is Kinesiologist Clinical/rehabilitation?

    Kinesiologists work with individuals with disabling conditions to assist in regaining their optimal physical function. They work with individuals in their home, fitness facilities, rehabilitation clinics, and at the worksite. They also work alongside physiotherapists and occupational therapists.

  9. 7. Explain About Kinesiologist Athletic Coaches And Scouts?

    Kinesiologists who pursue a career as an athletic coach develop new talent and guide an athlete’s progress in a specific sport. They teach amateur or professional athletes the skills they need to succeed at their sport. Many coaches are also involved in scouting. Scouts look for new players and evaluate their skills and likelihood for success at the college, amateur, or professional level.

  10. Dentist Interview Questions

  11. 8. Explain Me What Is The Name Of The Study Of Muscles?

    Myology is the medical specialty concerned with the study of the structure, function, and diseases and disorders of muscles. The are many diseases and disorders of the muscular system, some of which are also diseases related to other systems of the body, such as the nervous system.

  12. 9. What Is Kinesiologist Health And Safety?

    Kinesiologists are involved in consulting with industry to identify hazards and provide recommendations and solutions to optimize the health and safety of workers.

  13. Orthopaedics Interview Questions

  14. 10. Do You Know What Is The Human Anatomy?

    In its broadest sense, anatomy is the study of the structure of an object, in this case the human body. Human anatomy deals with the way the parts of humans, from molecules to bones, interact to form a functional unit. The study of anatomy is distinct from the study of physiology, although the two are often paired.

  15. 11. What Is Kinesiologist Disability Management/case Coordination?

    Kinesiologists recommend and provide a plan of action to return an injured individual to their optimal function in all aspects of life.

  16. Psychiatry Interview Questions

  17. 12. What Do You Know About Kinesiology Physical Education Teacher?

    Kinesiologists working as physical education teachers are responsible for teaching fitness, sports and health. They help students stay both mentally and physically fit by teaching them to make healthy choices.

  18. Dental Hygienist Interview Questions

  19. 13. Tell Me When Should You Seek Out The Services Of A Kinesiologist?

    Kinesiologists cover the spectrum of rehabilitative and wellness services from the active rehabilitation of an injury through to high-performance training. Many people will be referred to a kin after seeing a physiotherapist or chiropractor to begin active rehabilitation (exercise). This involves learning proper movement mechanics, fixing muscle imbalances and building an overall strong and healthy body.

  20. 14. What Is The Meaning Of Human Anatomy?

    The term „anatomy” derives from the ancient Greek meaning „to dissect“. As in veterinary anatomy human anatomy is subdivided into macroscopic (or gross) and microscopic anatomy. Macroscopic anatomy describes structures, organs, muscles, bones etc. which are visible to the naked eye, that is macroscopic.

  21. 15. What Is Kinesiologist Ergonomics?

    Kinesiologists work in industry to assess suitability of design of workstations and provide suggestions for modifications and assistive devices.

  22. Medical Cardiology Interview Questions

  23. 16. What Is Kinesiology Athletic Training?

    Kinesiologists working in athletic training work in cooperation with physicians. Athletic trainers strive to prevent athletes from suffering injuries, diagnose them if they have suffered an injury and apply the appropriate treatment.

  24. 17. What Is Kinesiologist Management/research/administration/health And Safety?

    Kinesiologists frequently fulfill roles in all above areas, perform research, and manage businesses.

  25. Medical Assistant Interview Questions

  26. 18. What Is Kinesiologist Health Promotion?

    Kinesiologists working in the health promotion industry work with individuals to enhance the health, fitness, and well-being of the individual. Kinesiologists can be found working in fitness facilities, personal training/corporate wellness facilities, and industry.

  27. Microbiology Interview Questions

  28. 19. Do You Know What Is The Study Of Kinesiology?

    Applications of kinesiology in human-health include physical education teacher, the rehabilitation professions, such as physical and occupational therapy, as well as applications in the sport and exercise industries. Kinesiology is a field of scientific study, and does not prepare individuals for clinical practice.

  29. 20. Tell Me What Is A Kinesiologist?

    Kinesiology is the scientific study of human or non-human body movement. Kinesiology addresses physiological, biomechanical, and psychological mechanisms of movement. Applications of kinesiology to human health (i.e. human kinesiology) include biomechanics and orthopedics; strength and conditioning; sport psychology; methods of rehabilitation, such as physical and occupational therapy; and sport and exercise. Studies of human and animal motion include measures from motion tracking systems, electrophysiology of muscle and brain activity, various methods for monitoring physiological function, and other behavioral and cognitive research techniques.

  30. Medical Coding Interview Questions

  31. 21. Explain Me Who Is An Anatomy?

    Anatomy is the study of the structure and relationship between body parts. Physiology is the study of the function of body parts and the body as a whole.

300+ TOP LanDesk Interview Questions [LATEST]

  1. 1. What Is Landesk?

    LANDesk is an asset management software system used to remotely inventory and manage desktop computers. It has the ability to report on installed software and hardware, allow remote assistance, and install operating system security patches.

  2. 2. Why Is Oit Deploying The Landesk Management Suite?

    REMOTE ASSISTANCE / EFFICIENCY : 
    OIT strives to provide the best customer service experience. With the customer’s consent and LANDesk Remote Assistance, Help Desk analysts can see exactly what the customer sees. This allows them to provide help instantly, over the phone. Field technicians can thus be deployed more quickly to attend to urgent hardware and software issues that require a physical presence.

    ASSET MANAGEMENT : 
    All workstations with the LANDesk Agent provide valuable inventory data about the machines they are installed on; such as: available storage, total RAM, and age of hardware. This will allow OIT staff and our local support partners to effectively manage the workstation management lifecycle.

    SECURITY : 
    LANDesk will enable OIT and your departmental IT support staff to address vulnerabilities remotely and quickly. LANDesk can install software patches on day one, or remotely change workstation settings to counter recently discovered security holes.

    SOFTWARE UPDATES : 
    The LANDesk Agent, combined with patch management, can ensure that all applications are up to date with the latest security fixes. LANDesk can update a variety of products from many vendors. Even AU specific applications, like the Datatel UI, can be updated through LANDesk.

    REPORTING : 
    Site administrators using LANDesk can create customized, detailed reports regarding departmental hardware and software assets.

  3. Networking Interview Questions

  4. 3. Will Landesk Work On My Macintosh Or Other Non-windows Computer?

    There is a LANDesk client for Mac OS X Tiger and Leopard, as well as a Linux client. LANDesk capabilities vary for each of the different operating systems, but inventory reporting works across all platforms.

  5. 4. Will Landesk Change Settings On My Managed Computer?

    No. The LANDesk Agent communicates exclusively with the LANDesk Core server to ensure that the managed workstation is up to date, and protected from malicious software. Additionally the Agent performs a hardware and software inventory scan, once a day when the computer is idle.

  6. Networking Tutorial

  7. 5. What Can Oit See On My Computer After Landesk Is Installed?

    LANDesk will not permit OIT to view the files on your computer. Using LANDesk, OIT can only view inventory information about the hardware components and software applications. 

    When using the Remote Assistance tool, you are able to grant permission to a Help Desk Analyst and to share your desktop with them. During a Remote Assistance session, they will see exactly what you see and be able to move the mouse cursor and type through the keyboard. Please note: permission must be granted for each session before viewing begins.

    A Remote Assistance session is just like having that person sitting with you in your office: you will be able to see each action as it is performed. You can stop the session at any time.

  8. Red Hat Linux System Administration Interview Questions

  9. 6. Is Oit Using Landesk To Monitor Staff, Faculty, Or Student Behavior?

    No. LANDesk does not monitor staff, faculty, or students; or the websites they visit. LANDesk does check to see if your software applications are up to date with the latest Microsoft patches, as well as patches from other companies such as Adobe, Apple, Corel, Dell, and Symantec. LANDesk also returns important information to administrators about the hardware installed in a university-owned workstation.

  10. 7. I Have Sensitive Information On My Workstation. Is It Vulnerable To Snooping Or Tampering Via Landesk?

    No. LANDesk does not increase risk. However, be sure that you store all important information on a network resource, like your G or I drive, to ensure that it is secure and backed up. We discourage you from storing sensitive or important information on your workstation. Please contact the IT Help Desk at 202-885-2550, helpdesk@american.edu, or AskAmericanUHelp and ask to have your workstation encrypted.

  11. Windows 10 Tutorial
    Citrix Interview Questions

  12. 8. Will Landesk Affect The Performance Of My Workstation?

    LANDesk has been deployed on over 3600 workstations, both Windows and OS X, with no adverse effects on performance.

  13. 9. How Does Landesk Handle Mobile Laptops?

    The LANDesk Agent is only active while utilizing remote assistance features and sending inventory to the Core Server. The rest of the time, it is inactive and will not interfere with network communication.

  14. SCCM Interview Questions

  15. 10. What Is Remote Assistance?

    The Remote Assistance feature in LANDesk lets you share control of your computer with an OIT Help Desk analyst. This will help OIT to more quickly and accurately troubleshoot and resolve problems. Please note: the Help Desk can not access your computer or provide remote assistance without your explicit permission. To authorize an analyst to help you remotely, you will need to click OK when presented with a remote assistance dialog box.

  16. Unix/Linux Tutorial

  17. 11. Does Remote Assistance Work When I Am Using My Workstation Off Campus`?

    Yes, Remote Assistance works with workstations that are not on AU’s network, using the LANDesk Management Gateway.

  18. Mobile Device Management Interview Questions

  19. 12. What Information Is In The Inventory And When Is It Collected?

    The inventory contains detailed information about all of the hardware components and software applications installed on your computer. It can be used to determine how much and what kind of memory is in your computer, what operating system you have, and the versions of the software that you use. The inventory tool will run no more than once per day.

    All of this information assists OIT when troubleshooting a problem with your computer. Inventory information will also help departments evaluate their current technology assets when it is time to buy new computers. The inventory tool cannot access any of your personal files.

  20. Networking Interview Questions

  21. 13. What Is Asset Management?

    Asset management is a combination of inventory control and maintenance. It helps departments answer basic questions about their computing environment, such as:

    • How many workstations do we own?
    • When did we deploy this workstation?
    • Is the workstation due for replacement?
    • Is the workstation in use?
    • Is the workstation using one of our software licenses?
    • Is the workstation up to date with the latest antivirus signatures?
  22. 14. Why Patch Management?

    Patch Management helps to safeguard AU owned computers and AU data from cyber criminals looking to exploit applications that are out of date. Patch Management keeps operating system software and applications up to date.

  23. 15. Does Patch Management Replace Cca, Which Is Au’s Current “health Check” Solution?

    No. CCA will continue to be used to ensure each workstation accessing American University’s network, logs in with AU credentials and passes a baseline health check.

  24. Citrix NetScaler Interview Questions

  25. 16. What Type Of Patches Will Be Managed?

    OIT will use LANDesk to determine which systems require Microsoft critical and recommended patches, as well as other third party software patches, such as: Adobe, Flash, and Java.

  26. 17. When Will Patches Be Installed?

    Patches will be installed on AU workstations on a standard monthly schedule. You will have an opportunity to defer standard patches for at least 7 days, by clicking the SNOOZE button. After the deferral window, the patches will be delivered to vulnerable AU owned computers that have LANDesk client installed.

    In addition, there may be a need for an out of cycle patch installation to protect against a Zero-Day threat.

  27. Windows CE .NET Interview Questions

  28. 18. What Is A Zero-day Threat?

    Zero-Day is the term used by security professionals to describe a security hole that has been discovered by cyber criminals that was unknown by software developers. If we see or hear of cyber criminals exploiting the security hole, OIT will test, and then install the appropriate patch to vulnerable systems as soon as it becomes available. This installation may occur outside of our monthly schedule.

  29. Red Hat Linux System Administration Interview Questions

  30. 19. Will My Workstation’s Performance Be Impacted When A Patch Is Being Installed?

    The performance impact of patching will depend on the type and quantity of patches being applied. However, the impact will be equal to that of installing the patches via the Windows Update site. To minimize user impact, customers are given the opportunity to defer standard patches for at least 7 days.

  31. 20. How Can I Ensure That Patches Are Installed At My Preferred Time?

    If you are keeping your applications patched and up to date, it will not be necessary for LANDesk to install patches.

  32. Citrix Xen Desktop Interview Questions

  33. 21. What Happens If A Particular Patch Is Not Compatible With My System/application?

    Before each monthly patching cycle, all patches will be inventoried and announced in Today@AU and via e-mail to our technical team leaders. These patches will be tested internally by OIT as well as by our technical team leaders. We will allow three weeks to pass from the initial release of the patch until the deployment date for end user testing, before patches become mandatory.

  34. 22. Will Patches Be Installed On My Mac?

    At this time, OS X patching has not been implemented. However, we are currently testing the use of the LANDesk Agent for OS X to patch OS X workstations.

  35. 23. What Is Landesk Desktop Manager?

    LANDesk Desktop Manager can be accessed through your computer, and contains the Software Deployment Portal and LaunchPad. The Software Deployment Portal is a feature of LANDesk that deploys software to targeted groups of users. The LaunchPad serves as a standard location for files or applications that should be standardized on all AU workstations. Both features allow OIT to place software patches and software applications in one central location, so users can update and install software from their desktops. 

  36. Unix/Linux Interview Questions

300+ TOP Ledger Interview Questions [LATEST]

  1. 1. Do You Know What Is Meant By Business?

    Business is an activity performed with the sole intention of earning profit. The activity may vary according to the scope and volume.

  2. 2. Do You Know What Is About Future Period And Adjustment Period?

    Future period means in oracle not yet opened, u can’t post any entry in this period, U can have two future periods or one displayed in calander options, adjustment period means, normally comany may have 12 months, or 13 months as per co’s requiremens, if u have 13 month, jan to dec its 12 months, addtional one month i.e dec say example 25th to 31st Dec. So here we have 13 months, additional 5 days called adjustment period, this is use full to enter additonal entries Audit time,if your dec period is closed, u may still have 5 days period to entery adjustment entries given by auditiors.

  3. Financial Accounting Interview Questions

  4. 3. Explain Why Do Companies Need Adjusting Journal Entries?

    Current account balances may not represent correct balances due to following reasons:

    a. Company made mistakes in preparing journal entries in the past.

    b. Accounting records are not updated to reflect new transactions or amount changes in previous transactions. 

    Adjusting journal entries are usually prepared at the end of an accounting period to update account balances to reflect correct balances as of the balance sheet date (the date at the end of an accounting period).

    The timing differences in recognizing revenues and expenses between accrual basis and cash basis accounting are frequently corrected by adjusting journal entries.

  5. 4. Explain Adjustments For Saving A/c Of Branches And Head Office?

    year closing of banking software which General ledger balance carried forward and which is closed. and tell me adjustment about the saving a/c of branches and Head Office for year ending operation.

  6. Financial Management Tutorial

  7. 5. Tell Me How The Sub Ledgers(ap,ar) Integrate With Gl?

    we can integrate the general ledger with subledger through reconsilation account.

  8. Book Keeping Interview Questions

  9. 6. Explain Scenario Of Multi-org. Setup?

    Meaning of Multi Org:
    Its a serverside enhancement which supports multiple organisations with single installation of oracle application product and its keep and stores data secure and safe way and seperately.

    • MULTI-ORG STRUCTURE
    • BUSINESS GROUP (HEAD COMPANY)
    • LEGAL ENTITY(SET OF BOOKS)
    • OPERATING UNIT(AP,PO,AR,FA)
    • INVENTORY ORG
  10. 7. Explain Flow In General Ledger?

    1. Define value sets : setup–> financials–> flexfield–> key–> validation–> sets.
    2. Define accounting flexfield(key flexfield) : setup–> financials–> flexfield–> key–> segment
      A. Define segments
      B .Assign value sets to segments
      c.assign the flexfied qualifiers
      d. select allow dynamic inserts or cross validate segment.
    3. define values for value sets : setup–> financials–> flexfield–> key–> validation–> values
    4. define set of books : setup–> financials–> books
    5. defining responsibility in system administrator module : security–> responsibility–> define
    6. assign your responsibility to the user in sysadmin module: security–> user–> define
    7. assign your set of books to the responsibility in sysadmin module through the profile option GL: SET OF BOOKS NAME’ : profile–> system
    8. go to your responsbility and open periods : setup–> open/close
    9. start entering transactions using journal form : journals–> enter.
  11. Bank Management Tutorial
    Financial Management Interview Questions

  12. 8. Can You Please Explain The Difference Between Nominal, Real And Personal Accounts?

    1. Accounts of assets is called Real Accounts.
    2. Accounts of persons or institutions is called Personal Account.
    3. Accounts of expenses/losses, incomes/gains is called Nominal Account.
  13. 9. Explain What Is Planning Budget In General Ledger?

    planning is generally part of controlling. however, we can plan for the general ledger accounts in finance module of sap. this can be done to prepare the variance analysis within financial accounting.

  14. Bank Reconciliation Interview Questions

  15. 10. Tell Me How To Record Retained Earnings When You Sold Company (assets Only), For Closing Of Books That Sold?

    When company dispose there assets the following transaction takes place

    Assets = Liabilities + Shareholders Equity

    Suppose assets beginning balanceis $4900and accumulated depreciation is $1900

    When you want sell, both of these should beeliminated from account book so asstes $4900 and accumulated depreciation debited by $1900,so both assetswill be clear.

    Let us come for retained earnings,

    This depends on profit or loss.

    When it is disposedit depends uponassets sold more than or less than book value.

    If more than book value is retained earnings is credited, if less than book value is retained then earningsis debited.

  16. 11. Do You Know What Is An Accrual?

    Accrual basis of accounting means that the costs or revenues of events are recognized in the period in which they occur, though the cash flows may take place in another accounting period.

    Like for a period of July 05 – October 05, if the organization was due to receive 1000K from an individual X but has not recieved yet for some reason, will recieve in November 05. It would be still be accounted for in the period July 05 – October 05 and not the period starting from November 05.

  17. Financial Statement Interview Questions

  18. 12. Tell Me What Is The Significance Of Responsibility In Oracle Applications?

    users cannot access the concurrent programs ( just like Forms) until unless the program is attached to a responsibility through a Request Group. Thus the responsibilities provide the complete security by restricting access to forms, reports, tables( through data-groups) and also to specific records ( through profile options like Set of Books Id, MO Org Id).

  19. Financial Accounting Interview Questions

  20. 13. Can You Please Explain The Difference Between Letter Of Credit And Letter Of Guarantee?

    Both Letter of Credit and Letter of Guarantee are commitment to payment by the issuer of the instrument (generally a Bank). In letter of credit, the issuer has to fulfill his commitment on fulfilling the terms and conditions of the letter of credit by the beneficiary. Whereas, on the other hand, in letter of guarantee the issuer has to make payment, when the beneficiary is unable to fulfill the terms & conditions of the letter of guarantee.

  21. 14. Tell Me Should The Cash Discounts Gl Hit The Balance Sheet As Per Us Accounting Concept? If Yes, Then Why And If No, Then Why?

    I believe that cash discounts are taken into P&L and not to the B/S.

    The journal would be :

    • Dr. Bank A/c 90
    • Dr. Cash Discount given A/c 10
    • Cr. S. Drs 100
    • So it is taken into P&L and adjusted in the Net profit itself..
    • Hence, you add the Net profit with your capital in B/S.
    • So, net effect is given there.
  22. 15. Tell Me How To Label A Reconciliation Spreadsheet For A Customer That Is Billed Monthly In Advance?

    “Prepaid Customer’ Reconcillation Details. or Advance billing Customer List.

  23. Oracle general ledger (GL) Interview Questions

  24. 16. Tell Me What Experience Do You Have With General Ledger?

    General ledger contains all the ledger accounts including vendors,customers, revenue, asset & liability account type which are ultiamtely part of Chart of Accounts applicable for a particular company code.

  25. 17. Tell Me What Are The Gaps In Gl, Ap?

    every project has 5 phases.

    1. In the first phase u define the business process. in this the client entire business structure represents.
    2. in the second phase u define the blue print according to the requirement of client as specified in business process document(1 phase).
    3. in the third phase u map the blueprint into SAP while defining and integration some problems will appear.ex posting periods,
    4. the problems appearing in the realization phase basing on blueprint are called GAP. function consultants are together solve these GAPS.
  26. Stockholders Equity Interview Questions

  27. 18. Tell Me Which Items Belong In Balance Sheet Statement And Do Not Appear In Income Statement?

    Captial A/c , Drawings a/c , Fixed assets purchasing and so on. According to the double entry system each transaction have two side debit and credit. there are some transaction satisfied with balance sheet items. For ex, advance given to manager for travelling. Mangaer is to be treated like debtors. other side cash is going outside will cash balance both items appear in assets side of the balance sheet.

  28. Book Keeping Interview Questions

  29. 19. Tell Me What Is Fiscal Year? Compare It With Normal Year?

    Fiscal Year means the financial year .In india it is April to march. In singapore it is July to june. In hongkong it is Jan to dec.

    Normal year is nothing but english calendar year jan to dec. If the company operating more than countries and it faces such a situation changes in finacial year , they will go for comparison analyis. in such that case the company may suggests all the country to follow the uniform year for make a conclusion.

  30. 20. Explain What Is An Account Assignment Model & Where Is It Used? What Are The Transaction Codes For Account Assignment Model?

    A template used for document creation in which default values are provided for the posting of a business transaction.

    An account assignment model may contain any number of G/L line items, and can be changed or enhanced as needed. Unlike sample documents, account assignment models may contain incomplete G/L line items.

    Transaction Code used – Fast Entry (F-02).

  31. Cashier Interview Questions

  32. 21. Tell Me What Is The Procedure For Creation Of Retained Earnings Account In Different Coa?

    t/code ob53, give COA and then type X or Y in pl account head and then give the account number in the acoount head…. this u can create prior to the creation of the account group reserve and surplus as well as after creating the account group…

  33. 22. What Is Your Experiences With Cash Flow Statement? How Is A Cash Flow Statement Generated?

    Cash Flow statement is a generate income, not the invoices. there are two types of cashflow

    1. Inflow:

    eg. if you received cash from your credit customers, you will decrease your debtors and it’s become inflow to your cashflow statement. Therefore, it’s mean that whenever u received in cash that is called inflow.

    2. Outflow:

    eg. if you made a payment to your suppliers, you will decrease your creditors and it’s outflow, therefore decrease in creditor is outflow.

  34. 23. Tell Me What Is The Difference Between Direct Expenses And Indirect Expenses
    What Is The Difference In Direct Income And Indirect Income?

    Direct Expenses are those expenses which are incurred in relation to manufacture of products directly Eg: Machinery repairs, Labour, Factory etc.

    Indirect Expenses are those expenses which are incurred after manufacturing of goods. Eg: Administrative Exp, Advertisement, Selling & Distribution etc.

  35. General Ledger Interview Questions

  36. 24. Explain What Is The Effect Of Not Reconciling The Expense Accounts?

    If the company is being reimbursed by another organization for the expense incurred earlier then it will be a credit to the expense account. If the expense was over accrued and the actual is lower than the accrual then it will be reversing entry reducing the expense.

  37. Financial Management Interview Questions

  38. 25. What Is Salary Computation? How To File The Salary Returns?

    Generally, the salary is computed as

    • Basic : 30 – 35% of CTC
    • HRA : 50% of Basic
    • DA : Regulated by Govt. notifications (nominal amounts)
    • CCA : Is normally a filler on negotiated salary (put the balance amount in
    • this). Otherwise, 30% of CTC
    • Gratuity : Is statutory (consider 4.81%)
    • Superannuation : 15% – 27% of basic (27% if there is no PF)
    • Leave Encashment : Taxable under provision of IT Act.

    Tax deduction is based on various things like HRA claim (least of the 3 conditions under the IT Act – could also be non-taxable if claimed properly), investments done by employee, attraction of 80C/cca, (basic, cca fully taxed based on IT slabs), etc. Please refer to the IT Act (direct taxes) or your Finance deptt for more details..)

    The above comp. structure can be tweaked or more components added based on the Co’s requirements. That needs a discussion…..It may vary co. to co. or industry to industry.

  39. 26. What Is Consolidation?

    consolidation is a gathering the information in sap for specific purpose and useful information for management.

  40. Petty Cash Interview Questions

  41. 27. Explain What Is Special Gl In Sap?

    Special GL is an GL other than the normal GL for AR and AP. Like Down payments (made or received), Bills of exchange etc.

    Yes, there would be two accounts for a particular client one normal and one special.

  42. Bank Reconciliation Interview Questions

  43. 28. Tell Me What Are The Procedures Of Elimination During Consolidation Of Financial Statements?

    After transferring the subsidiary data to the parent set of books, combine the subsidiary and parent data.

    Once parent and subsidiary data has been combined, enter eliminating journal entries.

    • Choose the State Controller’s Eliminate button to create journal entries in the parent set of books for consolidation eliminations.
    • Create elimination sets with which you can define eliminating entries that repeat every accounting period.
  44. 29. Explain Capitalization Of Internal, External Asset?

    Asset becomes capitalised when it is bought for profit motive, as an investment, and most important : when it is used.

    Asset available within an organisation – Internal Asset.

    Asset where they are present physically out of organisation – External Asset.

  45. Cash Flow Management Interview Questions

  46. 30. Suppose 2 Companies Are There, They Have Maintained Separate Chart Of Accounts, How Can You Consolidate Their Activities?

    In this case you have to have a additional field in the COA called “Alternate Account”. Your month end consolidated reports must be based on the alternate account.

    Example:
    Retail sales company has 52000.000 as the Purchase account Property Management Co. has 54240.912 as the Purchase account Both these account will have a common “alternate” account example CO52000.000

    Please note
    – If you are using alternate accounting; ensure “Account Creation” is in the hands of “Central” finance so that they can allocate a “alternate number”.

  47. 31. Tell Me What Is How To Exceed The Funding Budget Amount Limit In The Actual Journal?

    We can exceed the funding budget through using alternative depreciation methods and through borrowing short term loans.

  48. 32. What Is Gl Reconciliation?

    GL Reconciliations are list of items that make up a GL account. For example, list of current unreversed accruals in a Sundry Creditors Balance sheet account. The items in Reconciliation should be identified and regularly monitored on a monthly basis to ensure items reverse out in late periods or are charged out to P&L.

  49. 33. Explain What Are Ptd, Qtd And Ytd?

    1. period to date for ex – can be same as YTD if period = 1 year
    2. quarter to date for ex – 1st qtr of calender year – Jan,Feb,Mar, All financial items (revenue+expenses) Jan-Feb is QTD Feb
    3. year to date for ex – if fiscal year Jan-Dec – all financial items (revenue + expenses) from Jan-Aug is YTD Aug.
  50. Financial Statement Interview Questions

  51. 34. Can You Please Explain The Difference Between Single Entry System & Double Entry System?

    Single entry system use only Debit or Credit only. If the payment made there is only one one debit only but Double entry system means for every Debit there is opposite Credit also there.

    Example :

    • cash payment made some one
    • debit for party at the same time credit to Cash.
  52. 35. Explain What Are The Factors To Determine The Net Profit?

    the factors are:

    1. sales or Incomes
    2. indirect incomes, misc, income
    3. direct expense and indirect expense
    4. depreciation
    5. tax.
  53. 36. What Is Suspense Account?

    Suspense account is a temporary arrangement. This arrangement is made to make trial balance agree.

  54. Oracle general ledger (GL) Interview Questions

  55. 37. What Is Chart Of Account?

    Chart of Accounts is nothing but list of G/L Accounts used by the one r more company codes….the chart of accounts contains the account no & account name.the chart of accounts is the operating chart of accounts used for the daily postings in company code.

  56. 38. Can You Please Explain The Difference Between General Ledger And Final Accounts?

    General ledger includes all ledgers after adjusting the balance where as final accounts is arranging ledger balance to get profit and loss as well as to know the finacial position.

  57. 39. What Is Journal Entry?

    Non Cash Transactions Should be Recorded In Journal Entry.

    For Ex:

    • Salaries A/c Dr xxxxx
    • To Salaries Payble A/c xxxx.
  58. 40. Tell Me What Is Meant By Group Chart Of Accounts In Sap Fico?

    in sap fico we have three types of chartof accounts:

    1. group chart of accounts
    2. country specific chart of accounts
    3. operative chart of accounts

    group chart of accounts

    the purpose of GCOA is to consolidate all the company codes balance sheet into one. the main purpose of this one is to external reporting.

  59. Stockholders Equity Interview Questions

  60. 41. Are Reconciliations Part Of Financial Statements?

    yes reconciliation is necessary in financial statement.

  61. 42. Tell Me How Would You Account For The Leasing Of A Vehicle?

    • Vehicle a/c dr-FA
    • To lease agreement a/c-Liabilitie
    • lease a/cdr-indirect exp
    • To cash/Bank-current assets
    • expense off the payment of lease from th p&l a/c
  62. Cashier Interview Questions

  63. 43. Tell Me What Is The Process Flow For General Ledger?

    Gl set ups> open the periods of gl > create/reverse journal entries> post and review> conversion , revaluation, translation, consolidation can be run > review/correct balances > run accounting reports> close gl periods.

  64. 44. Explain What Is The Difference Between Ledger And General Ledger?

    The General Ledger Contains all transaction records including Product Details, Rate, Qty, Cheq No Bank Name, Debit Amount, Credit and Balances where as Ledger Contains Simple transactions which is included debit, credit and Balances.

  65. 45. Explain Impact In Books At The Time Of Merger?

    Problem statement- There are 2 Regions in a country REGION X & REGION- Y REGION X is closed and GL Trial Balance (TB) is transferred to REGION Y books ( X-TB is uploaded in Y books like a journal we do normally)- No Sub Ledger (SL) level transfer was done There was 1 invoices lying AP SL in X books ( xx722002 )- for 1000 GBP When TB was uploaded in Y books xx722002 was automatically credited by 1000 GBP in Y books Questiion 1- in this scenario are we going to have a mismatch in AP-SL of Y books if yes then how to correct the same. 

  66. 46. Tell Me Why Depreciation Is Not Charged On Land?

    Land is such an asset whose value goes on increasing, unlike other assets whose value gets reduce over a period of time. depreciation is charged on assets so that when in future , asset will be replace we will have money to purchase new asset. But in case of land this not happens that is why depreciation is not hcarged on land.

  67. 47. Tell Me Reconciled Checks Display In Bank Reconciliation. How Do I Get Rid Of Them?

    To remove these checks from Bank Reconciliation, you must reconcile them outside of Bank Reconciliation.

  68. 48. What Is Balancing Of Ledger Account?

    To know the net effect of all the business transactions recorded in the ledger account, the accounts need to be balanced.

    Thus, Balancing of Ledger Account means the balances of Debit and Credit side should be equal and this involves following steps: 

    1. First total of both the sides are taken.
    2. Secondly difference between the totals of both the sides is calculated.
    3. If the debit side is in excess to the credit side then place the difference on the credit side by writing By Balance c/fd.
    4. If the total of credit side is in excess to the debit side, place the difference on the debit side by writing To Balance c/fd.
    5. After placing the difference on the appropriate side, make sure the totals of both the sides are equal.
  69. 49. What Is Ledger Posting?

    All the business transactions are first recorded in Journal or Subsidiary books in a chronological order when they actually take place and from there the transactions of similar nature are transferred to Ledger and this process of transferring is called as Ledger Posting.

  70. 50. What Is A Ledger?

    Ledger is the book where the transactions of similar nature pertaining to a person, asset, liability, income or expenditure are drawn from the journal or subsidiary books where the transactions are recorded in a chronological order and posted account wise in the Ledger account. Ledger maintains all types of accounts i.e. Personal, Real and Nominal Account.

  71. 51. What Are The Purposes Of Maintaining Control Ledgers?

    Purposes of maintaining control ledgers are:

    • Sundry Debtors
    • Sundry Creditors
    • Advances to Staff
  72. 52. What Is Control Ledgers?

    In a business, sometimes it is not feasible to carry accounts of all the suppliers and customers in the main ledger. In such cases apart from General or main ledger, the control ledgers are maintained. Control ledgers records the individual accounts. In the end of the period, balance shown in the main ledger has to tally with the balance in the individual ledger accounts maintained in the control ledger.

300+ TOP Log Shipping Interview Questions [LATEST]

  1. 1. Which Edition Support Log Shipping?

    • SQL Server 2005 – Enterprise, Standard, and Workgroup
    • SQL Server 2008 – Enterprise, Standard, Web, and Workgroup
    • SQL Server 2008 R2 – Datacenter, Enterprise, Standard, Web, and Workgroup
    • SQL Server 2012 – Enterprise, Business Intelligence, Standard, and Web
  2. 2. Who Can Setup Log Shipping?

    Members of Sysadmin fixed server role

  3. Database system concepts Interview Questions

  4. 3. Required Recovery Models In Log Shopping?

    Full or Bulk logged Recovery Model

  5. 4. Which Jobs Are Created In Log Shipping?

    On Primary server
    – Backup job

    On Secondary Sever –
    Copy, Restore and Alert Jobs

  6. Database system concepts Tutorial

  7. 5. Whether Log Shipping Supports Automatic Failover?

    No, it support only manual failover.

  8. IDMS (Integrated Database Management System) Interview Questions

  9. 6. Login Can Be Transferred Through Manual Failover?

    No, you have to create logins and users on secondary server.

  10. 7. Types Of Secondary Server?

    Restoring Mode and Stand by mode

  11. Structured Query Report (SQR) Interview Questions

  12. 8. Difference Between Restoring Mode And Stand By Mode In Log Shopping?

    Restoring mode –
    Database is in restoring mode.  You can not access the database.

    Stand by mode –
    Database is in read-only node.  You can select the data from the database.  This database can be used for reporting purpose.

  13. 9. What Are The Benefits Of Log Shipping?

    • Easy to setup/configure
    • Easy to maintain
    • Easy to failover
    • Can have multiple secondary servers
    • Can be configure with mirroring or replication.
  14. SQL Server Replication Interview Questions

  15. 10. What Are The Drawbacks Of Log Shipping ?

    • Need to manage each database separately
    • Does not support automatic failover.
    • Logins can not be moved automatically
  16. 11. Which System Database Store Log Shipping Related Information?

    Msdb

  17. Sql Server Dba Interview Questions

  18. 12. What Is The Difference Between Log Shipping 2000 And 2005?

    Log shipping 2005 uses link Server to communicate between Primary, Monitor, and Secondary Servers.

    For 2000, Check connectivity of Primary, Monitor, and Secondary Servers.

    Please note, always check remote connections are enabled on all servers.

  19. Database system concepts Interview Questions

  20. 13. How To Monitor Log Shipping?

    • Reports-
      Transaction log shipping standard report
    • 3rd party tool
    • SQL Server System tables and stored procedures
  21. 14. Default Time Of Log Shopping ?

    15 minutes

  22. 15. Full Form Of Tuf?

    Transaction Undo file

  23. Oracle Real Application Clusters Interview Questions

  24. 16. List Of Tables Used In Log Shipping?

    Primary server Tables:

    Log_shipping_primary_databases, Log_shipping_monitor_primary, log_shipping_monitor_error_detail, log_shipping_monitor_alert

    Secondary server Tables:

    Log_shipping_secondary_databases, Log_shipping_monitor_secondary, Log_shipping_monitor_error_detail, Log_shipping_monitor_alert, Log_shipping_monitor_history_detail, Log_shipping_secondary

  25. 17. Backup Can Be Compressed In Log Shipping?

    Yes, SQL server 2008 onwards

  26. Database Replication Interview Questions

  27. 18. How To Troubleshoot Log Shipping Issues?

    • Check error log for issue
    • Check backup, copy, and restore job history.
    • Check Log shipping standard report
  28. IDMS (Integrated Database Management System) Interview Questions