300+ TOP Visual Basics Interview Questions – Answers

  1. 1. How Do You Register A Component?

    Compiling the component, running REGSVR32 MyDLL.dll

  2. 2. What Does Option Explicit Refer To?

    All variables must be declared before use. Their type is not required.


  3. Pascal programming Interview Questions

  4. 3. What Are The Different Ways To Declare And Instantiate An Object In Visual Basic 6?

    Dim obj as OBJ.CLASS
    Set obj = New OBJ.CLASS
                   or
    Set obj = CreateObject (“OBJ.CLASS”)

  5. 4. Name The Four Different Cursor Types In Ado And Describe Them Briefly.

    Forward Only:
    Fastest, can only move forward in recordset.
    Static:
    Can move to any record in the recordset. Data is static and never changes.
    KeySet:
    Changes are detectable, records that are deleted by other users are unavailable, and records created by other users are not detected
    Dynamic:
    All changes are visible.


  6. Pascal programming Tutorial

  7. 5. Name The Four Different Locking Type In Ado And Describe Them Briefly.

    LockPessimistic: Locks the row once after any edits occur.
    LockOptimistic: Locks the row only when Update is called.
    LockBatchOptimistic: Allows Batch Updates.
    LockReadOnly: Read only. Can not alter the data.


  8. MS Access Interview Questions

  9. 6. What Are The Ado Objects? Explain Them. Provide A Scenario Using Three Of Them To Return Data From A Database.

    Connection:
    Used to make a connection between your app and an external data source, ie, sql server
    Command:
    Used to build queries, including user-specific parameters, to access records from a data source
    Recordset:
    Used to access records returned from an SQL query. With a recordset, you can navigate returned records. You can also add, modify or delete records.

  10. 7. List Out Controls Which Does Not Have Events

    shape, line controls


  11. MS Access Tutorial
    VB.NET Interview Questions

  12. 8. To Set The Command Button For Esc, Which Property Has To Be Changed ?

    Cancel

  13. 9. What Is Ole Used For ?

    Object linking and embedding, for using to other object classes like word, excel , autocad objects in our own applications, only thing we have to add reference for these objects.


  14. VBA For Excel Interview Questions

  15. 10. Which Controls Have Refresh Method?

    Checkbox, comna, combo, list, picture, ADo control, Data,Datagrid, Datareport,Dir list biox, filelistbox etc.


  16. VB.NET Tutorial

  17. 11. Early Binding Vs Late Binding – Define Them And Explain?

    Early binding allows developers to interact with the object’s properties and methods during coding permits the compiler to check your code. Errors are caught at compile time. Early binding also results in faster code
    Eg : Dim ex as new Excel.Application

    Late binding on the other hand permits defining generic objects which may be bound to different objectsyou could declare myControl as Control without knowing which control you will encounter. You could then query the Controls collection and determine which control you are working on using the TypeOf method and branch to the section of your code that provides for that type
    Eg : Dim ex as Object

    set ex =CreateObject(“Excel.Application”)


  18. ASP.NET Interview Questions

  19. 12. Can I Send Keystrokes To A Dos Application?

    AppActivate (”C:windowssystem32cmd.exe”) ‘ Appilcation caption
    SendKeys (”SA”) ’For sending one string
    SendKeys “% ep”, 1 ’ For sending Clipboard data to Dos 


  20. Pascal programming Interview Questions

  21. 13. How Do I Make A Menu Popup From A Commandbutton

    Private Sub Command1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
       If Button = 2 Then
           PopupMenu Menuname
       End If
    End Sub


  22. VBA For Excel Tutorial

  23. 14. What Is Option Base Used For In Vb6 ?

    Option Base is to set the Index of the Array to start from 0 or 1.Like option explicit.. declare “Option base 1″ at the top. now the array will start from Index By default the index starts from 0.

  24. 15. How To Copy Text To The Windows Clipboard And From It.

    Clipboard.SetData and Clipboard.GetData


  25. Fox Pro Interview Questions

  26. 16. Which Method Of Recordset Is Used To Store Records In An Array.

    getrows


  27. ASP.NET Tutorial

  28. 17. What Is The Default Property Of Datacontrol?

    Caption


  29. Tableau Interview Questions

  30. 18. Which Property Of Textbox Cannot Be Changed At Runtime

    Alignment property, Tab Index etc


  31. MS Access Interview Questions

  32. 19. Describe In Process And Out Of Process Component?

    In-process component is implemented as a DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component. An out of process component is implemented as an EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s because communications between client and component must be marshalled across process boundaries


  33. Tableau Tutorial

  34. 20. Under The Ado Command Object, What Collection Is Responsible For Input To Stored Procedures?

    The Parameters collection. 


  35. VB Script Interview Questions

  36. 21. What Is The Differences Between Flexgrid And Dbgrid Control?

    Microsoft FlexGrid (MSFlexGrid) control displays and operates on tabular data. It allows programmatically sort, merge, and format tables containing strings and pictures. DBgrid is A spreadsheet-like bound control that displays a series of rows and columns representing records and fields from a ADO Recordset object.

  37. 22. What Are Different Types Of Activex Components Available In Vb 6.0 ?

    Standard EXE, ActiveX EXE, ActiveX DLL, ActiveX document, and ActiveX Control.


  38. VB Script Tutorial

  39. 23. How May Type Of Controls Are Available In Vb6 ?

    Intrinsic controls – Default controls of VB6, These control are always available in VB6 Toolbox.

    ActiveX controls – .These are extra controls which can be added into toolbox and this control having separate files (.ocx). Must be deployed separately along with application in other system.


  40. Advanced C# Interview Questions

  41. 24. Describe Inprocess And Out Of Process ?

    An in-process component is implemented as a DLL called ActiveX DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component. Each client app that uses the component starts a new instance of it.

    An out of process component is implemented as an EXE called ActiveX EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s because communications between client and component must be marshalled across process boundaries. A single instance of an out of process component can service many clients.


  42. VB.NET Interview Questions

  43. 25. What Is The Difference Between Image And Picture Box Controls?

    The sizing behavior of the image control differs from that of the picture box. It has a Stretch property while the picture box has an AutoSize property. Also picture box is a container control and support most of the graphics method.

  44. 26. What Is The Difference Between A Function And A Sub (method) ?

    Function always return a value, wheras am method may or may not return value.


  45. Visual Source Safe Interview Questions

  46. 27. What Is The Default Property Of Datacontrol ?

    Connect property


  47. VBA For Excel Interview Questions

  48. 28. What Are Different Types Of Recordset Available In Ado ?

    a) Table-type Recordset – Hold records from single table and can add, edit and delete.
    b) Dynaset-type Recordset – Can hold editable records from multiple tables.
    c) Snapshot-type Recordset – Hold read only records from multiple tables,
    d) Forward-only-type Recordset – Hold read only records from multiple tables without cursor.
    e) Dynamic-type Recordset -Holds editable records from multiple tables and changes done by other user also visible.

  49. 29. What Is The Difference Between Listbox And Combo Box?

    Both are display list of items, however in combo box user can edit the item.

  50. 30. What Is The Difference Modal And Moduless Window?

    A modal form has exclusive focus in that application until it is dismissed. Moduless form are not required exclusive focus and it is default when we show any form.

  51. 31. What Is The Object And Class?

    Class is template from we can create objects, Objects are instantiate of a class. For example car is a class and Maruti 800, Maruti Zen are objects of car class.

  52. 32. How Objects On Different Threads Communicate With One Another?

    Processes communicate with one another through messages, using Microsoft’s Remote Procedure Call (RPC) technology to pass information to one another.

  53. 33. What Is The Query Unload And Unload Event In Form?

    Query unload event occurs in a first and then unload event occurs, in MDI form we can trac child form closing status by using this event.


  54. ASP.NET Interview Questions

  55. 34. What Are Different Locking Type Available In Ado.

    a) LockPessimistic – Locks the row once after any edits occur.
    b) LockOptimistic – Locks the row only when Update is called.
    c) LockBatchOptimistic – Allows Batch Updates.
    d) LockReadOnly – Read only. Cannot alter the data.

  56. 35. Name Different Ado Objects?

    a) Connection
    b) Command
    c) Recordset
    d) Field

  57. 36. What Is The Difference Between A Property Let And Property Set ?

    Let used to set value for ordinary variable and Set used to set value for object variable.


  58. Fox Pro Interview Questions

  59. 37. What Is The Difference In Passing Values Byref Or Byval To A Procedure?

    a) ByRef -pass the address of variable not value
    b) ByVal – pass the value 

  60. 38. What Is Autoredraw Event Of Form And Picturebox ?

    Automatically redraw the outputs.

  61. 39. What Is Doevents?

    DoEvents command tell program control to execute other commands, while executing long task.

  62. 40. What Is The Size Of The Variant Data Type?

    16 bytes


  63. Tableau Interview Questions

300+ TOP Vi Editor Interview Questions – Answers

  1. 1. What Is Vi?

    VI is a Visual Editor (hence the name — vi for VIsual). What is a visual editor (as opposed to a non-visual one)? Visual editors are ones that let you see the document that you are editing as you edit it. This seems pretty common in most editors today, so the idea of a non-visual editor is a little strange. Examples of non-visual editors are sed, ex, ed, and edlin (the last one being the editor shipped with DOS until relatively recently.)

    VI was written by William Joy as part of the bsd distribution of Unix. It was later used by AT&T, and has been standard Unix since.

  2. 2. What Is The Big Deal About Vi? Why Does Anyone Use It? More Importantly, Why Should *i* Use It?

    vi is default visual editor under Unix, and is therefore shipped with all recent version of Unix. (Recent being defined as post 1984 or so.) This means that whenever you run across a machine that is running a Unix of some sort, you will know that you have a powerful editor at your finger tips. Why else? vi is a powerful editor. Also, once you know vi, you can edit files really quickly, as it is extremely economical with the keystrokes. Due to its different modes for inserting and issuing commands, it is much faster than most non-mode based editors. It is also a very small editor. (The version on my machine is 200k) Also, it can do almost anything, as long as you know how to get it to do what you want.


  3. Adobe Photoshop Interview Questions

  4. 3. What Different Operating Systems Is Vi Available For?

    Unix. That’s it. However, there are many, many clones of vi that are available for different operating systems. I personally have used vi clones under: Unix, Dos, OS/2, Mac System 7.

  5. 4. What Are Some Of The Vi Clones That Are Available?

    • Just to list a few: STvi (STevie), elvis, vile, vim, and nvi, xvi.
    • elvis is available for: Amiga, DOS, OS/2, Unix, VMS. 
    • STevie is available for: Atari ST, DOS, Unix. 
    • nvi is the vi that will ship with BSD 4.4. 
    • vim is available for: Amiga, DOS, Mac System 7, Unix. Amiga, DOS, and the source are available at:
    • ftp.fu-berlin.de /misc/editors/vim 
    • vile is available for: DOS, OS/2, Unix, VMS. 
    • xvi is available for: DOS, Unix.

    There are some differences between the different vi clones. Many offer improvements, but most still allow the commands that are listed in this document, but there may be some differences. Refer to the documentation that comes with the clone for details.


  6. Adobe Photoshop Tutorial

  7. 5. What Games Will Help Me Learn Vi?

    This may seem a bit silly, but there are many games on Unix systems that can help you learn to use vi. These help particularly with the basics. Although I don’t know of any games that help with every vi command, I do know of a few that will help you learn to use hjkl to move the cursor around. NetHack, a rouge-like game, is particularly good for this, as it is a large game and can be entertaining for quite some time. Not to make the other games sound worse, but some other ones are: rouge, moria, omega, worm, and snake.


  8. Audio Editor Interview Questions

  9. 6. What Is The Difference Between Command Mode & Insert Mode?

    Often sited as one of the main problems with vi, and equally often sited as being one of its best strengths, vi differentiates between a “Command mode” and an “Insert mode.” Understanding this difference is VITAL to learning vi. When one starts vi it starts in command mode. In this mode, one can move around the file, and issue commands to change certain areas of the text, cut, copy and paste sections of the text and do much more. Insert mode is where one can actually insert text. In other words, command mode is used to move around the document, and insert mode is used to type text into the document.

    Commands such as: a, i, c, C, O, o and others will switch one from command mode to insert mode.

    or ^C will take one out of insert mode and return one to command mode.

    Get used to this distinction. It is one of the things that makes vi different from most other editors. It also allows one to do a lot of things without taking one’s hands from the standard keyboard position.

  10. 7. How Do I Search For Text?

    / will search forward. ? will search backwards. ?? or // will repeat the last search. It is worth noting that these are pretty much standard in Unix. In addition, in vi, n will find the next occurrence. N will repeat the last search, reversing the direction. Regular Expressions may be used within searches.


  11. Sed (Stream Editor) Tutorial
    Proofreader Interview Questions

  12. 8. How Do I Search For A Control Sequence?

    /^V^

    ^V will tell vi to take the next character literally, and not to take it as a command.

  13. 9. How Do I Reformat Text?

    If your computer has the program fmt on it, all you need to do is type !}fmt from insert mode. This will rejustify the text from the current location until the end of the paragraph. If your machine does not have fmt, you need to find a similar program. (I gather there are many such programs available from the public domain, but I do not know much about them.)


  14. Communication Skills Interview Questions

  15. 10. What’s The Deal With All Of These : Commands?

    The commands that follow a : are commands from the ex editor. These allow a lot of flexibility and power. For example, there are many different ways to search and replace, all of with have some similarities.


  16. Content Marketing Tutorial

  17. 11. How Do You Do A Search And Replace?

    Well, there are a few methods. The simplest is:

    :s/old/new/g But, this only does it on the current line… So:
    :%s/old/new/g In general,
    :[range]s/old/new/[cgi]

    Where [range] is any line range, including numbers, $ (end of file), . (current location), % (current file), or just two numbers with a dash between them. (Or even: .,+5 to mean the next five lines). [cgi] is either c, g, i, or nothing. c tells vi to prompt you before the changes, g to change all of the occurrences on a line. i tells vi to be case insensitive on the search. No character after the last slash will only change the first occurrence on the line.

    My favorite method is:

    :g/foobar/s/bar/baz/g This searches for foobar, and changes it to foobaz. It will leave jailbars alone, which the other method will not. This is my favorite method, but is harder to remember. Of course you can also use regular expression search patterns, and a few other commands in the replacement part of the text. If you use ( and ) in the pattern to escape a sequence, you can do lots of nifty things.

    For example:

    :g/(foo)(bar)/s/2/1baz/g will change foobar for foobaz.

    Special sequences allowed are:

    & everything which was matched by the search

    [1-9] The contents of the 1st-9th () pair
    u The next character will be made uppercase
    U The characters until e or E will be made uppercase
    l The next character will be made lowercase
    L The characters until e or E will be made lowercase
    [eE] end the selection for making upper or lowercase


  18. Video Editing Interview Questions

  19. 12. How Do I Run A Program From Within Vi?

    :!cmd will run the program cmd. :sh will run an interactive shell. Within this shell, you may, if you want, run vi again. This is particularly useful when you are editing makefiles and config files for programs in an attempt to get a program to compile. The advantage over :e is that you do not need to save the file, and it will be in its old place when you exit the shell.


  20. Adobe Photoshop Interview Questions

  21. 13. Any Tips For Making Vi Programmer Friendly?

    :set ai will make it auto-indent for you.

    :set sw=# where # is a number will set the shiftwidth (tabwidth).

    You can then use <<, >> to shift a line left or right. Plus, you can use <% to shift a {, ( or [ set left or right (with >%). You must be on top of the specific {, }, (, ), [ or ] of the pair to shift them.

    :set sm will show the matching {, ( or [ when you type the closing one.

    :set lisp will make some changes that are useful for lisp programming. () will move back and forth over s-expressions, and {} will move without stopping at atoms.

  22. 14. How Do I Make A Function Key A Macro?

    If is #n where n is 0-9, it will be mapped to the appropriate function key.

  23. 15. What Does The C$ Command Do From Command Mode Using Vi Editor?

    c$ will begin from the character under the curser till the end of line. so when you use this command it will show you $ sign at the end of the line and you can change till that point.


  24. Medical Transcription Interview Questions

  25. 16. How To Append A File To Current File Using Vi Editor?

    Alternate approach:

    If you are working in file2 and want to append fie1, than place the cursor where you want to append the new file and use the following command

    :r file1

  26. 17. Explain What Is The Format Of Vi Command?

    vi filename


  27. Sed (Stream Editor) Interview Questions

  28. 18. Explain What Is The Command Used To Set Margin In Vi Editor?

    Press ESC followed by colon setnu

    eg => :setnu


  29. Audio Editor Interview Questions

  30. 19. What Is The Difference Between Zz And :wq Commands In Vi Editor?

    ZZ is the command mode comand in uix to save and quit file. :wq is the execute command mode command to save and quit file.

  31. 20. What Is The Command Used To Replace Many Characters In Vi Editor?

    For replace many character in vi editor press esc key and then press R for replace many character.


  32. Content Writer Interview Questions

  33. 21. How To Enter From Command Mode To Insertion Mode Using Vi Editor?

    There are several commands that put the VI editor into insert mode. The most commonly used commands to get into insert mode are a and i.

  34. 22. What Is The Command Used To Append Text After Current Line In Vi Editor?

    The command used to append text after current line in Vi Editor is

    A

  35. 23. What Are The Different Modes In Vi Editor?

    There are three basic modes of vi:

    Command mode:
    This is the default when you enter vi. In command mode, most letters, or short sequences of letters, that you type will be interpreted as commands, without explicitly pressing Enter . If you press Esc when you’re in command mode, your terminal will beep at you. This is a very good way to tell when you’re in command mode.

    Insert mode:
    In insert mode, whatever you type is inserted in the file at the cursor position. Type a (lowercase letter a, for append) to enter insert mode from command mode; press Esc to end insert mode, and return to command mode.

    Line mode:
    Use line mode to enter line oriented commands. To enter line mode from command mode, type a colon ( : ). Your cursor moves to the bottom of the screen, by a colon prompt. Type a line mode command, then press Enter. Any sensible command from the Unix line editor ex will work, and a few are good to know about. These commands are indicated in this handout by a colon in front of the command. Each time you use a line mode command, you must type a colon to enter line mode, then type the command by the colon prompt at the bottom of the screen, then press Enter when you finish typing the command. (The search commands starting with / and ? work similarly.


  36. Content Marketing Interview Questions

  37. 24. What Is The Difference Between Lettered Buffer And Temporary Buffer In Vi Editor?

    Temporary Buffer: 
    Deleted or copied text goes into a temporary unnamed buffer. The contents of the temporary buffer may be retrieved by using the p or P commands.

    Lettered Buffers: 
    There are 26 lettered buffers (a-z). Contents of a lettered buffer are saved until you copy or delete more characters into it, or until you quit your current vi session.

    eg.

    From Command Mode

    “ayy Copy (yank) a line into buffer letter “a”

    “ap Put contents of lettered buffer a below the current line


  38. Proofreader Interview Questions

  39. 25. Which Command Is Used To Replace Many Characters In Vi Editor?

    change command can be used to change a word/line.

    cw change word forward
    cb change word backward
    c$ change from cursor to end of line
    cL change from current line to and of screen
    cG change from current line to and of file

    or if you want to replace all occurence of some specific character

    :%s/oldText/newText/g

  40. 26. Explain What Does The /text Command Do?

    /text: it will search for the string. after pressing enter it takes u to that text location.


  41. Defect Reporting Interview Questions

300+ TOP Windows XP Interview Questions – Answers

  1. 1. How To Find The Mac Address In Windows Xp?

    You follow below steps to How to Find the MAC Address in Windows XP.
    Steps:

    1.Click on Start Menu.
    2.Then Click on Run and type cmd in run text box.
    3.Command prompt opens and then type ipconfig /all and press Enter key.
    4.Look for Physical Address. This is your MAC address in your computer.
    5.Then close command prompt.

  2. 2. How To Change Host File In Windows Xp?

    You follow below steps to change host file in Windows XP.
    Steps:

    1.Open Notepad.
    2.Then Click on File menu and then click on Open.
    3.After that in the Notepad and browse to: C:WindowsSystem32driversetc.
    4.Then select HOSTS file and then click on open button.
    5.Then change information you want to.
    6.After that save and close notepad file. 


  3. WinRunner Interview Questions

  4. 3. How To De Fragment Your Hard Drive In Windows Xp?

    You follow below steps to Defragment your Hard Drive in Windows XP.
    Steps:

    1.Double click on My computer Or Open My computer.
    2.Then right click on C: ,and then click on Properties.
    3.After that click on Tool tab.
    4.Then click on Defragment Now.
    5.After that select Volume C: and then click on Defragment button.
    6.Defragment is complete, and then closes the Defragment window.

  5. 4. How To Add Network Printer In Windows Xp?

    You follow below steps to add network printer in windows xp.
    Steps:

    1.Open your Printer.
    2.Under Printer Tasks, click on Add a printer.
    3.After that Add Printer Wizard opens, and then click on Next button.
    4.Click on A network printer, or a printer attached to another computer.
    5.Then click on Next button.
    6.Click on  Find a printer in the Directory, and then click on Next button.
    7.Click on Browse button to the right of Location, click on printer location, and then click on OK button. 
    8.Click on Find Now.
    9.Click the printer you want to connect to, and then click OK.
    10.Type the printer name or browse for it. Click on Connect to this printer.
    11.Type the printer name using the following format:printserver_nameshare_name.
    12.Click on Next button  then click the printer in Shared printers.
    13.Click on Next button.
    14.Click on Connect to a printer on the Internet or on your intranet.
    15.Type the URL to the printer using the following format:http://printserver_name/Printers/share_name/.printer.
    Follow the instructions on the screen to finish connecting to the network printer.
    Note:

    ·To open Printers and Faxes, click on Start, click on Control Panel, click on Printers and Other Hardware, and then click on Printers and Faxes.
    ·right-click the icon and then click on Connect.  


  6. WinRunner Tutorial

  7. 5. How To Boot From Cd In Windows Xp?

    You follow below steps to boot from CD in windows XP.
    Steps:

    1.Start your computer & open the CD Rom.
    2.Put your CD in CD Rome.
    3.Restart your computer. 
    4.Then Press any key to boot from CD.


  8. MS-DOS Interview Questions

  9. 6. How To Format Hard Drive In Windows Xp?

    You follow below steps to format hard drive in windows XP.

    Steps:

    • Insert the Windows XP CD into your CD or DVD drive.
    • After that Restart your computer.
    • Then open Welcome to Setup page and press ENTER.
    • Then Press F8 function key to accept the Windows XP Licensing Agreement.
    • To create the partition with the maximum size, then press ENTER.
    • Then type the size in megabytes (MB) for the new partition, and then press ENTER.
    • Use the ARROW keys to select the partition where you want to install Windows XP.
    • Then Press Enter key.
    • Select below format options:
      1.Format the partition by using the NTFS file system (Quick)
      2.Format the partition by using the FAT file system (Quick)
      3.Format the partition by using the NTFS file system
      4. Format the partition by using the FAT file system
      5.Leave the current file system intact (no changes)
    • After that press enter key.
    • After that Windows Setup program formats the partition, you follow the instructions to install Windows XP.
  10. 7. How To Increase Virtual Memory In Windows Xp?

    You follow below steps to increase virtual memory in Windows XP.
    Steps:

    1.Right click on my computer and then clock on Properties.
    2.Then click on advanced tab.
    3.After that under Performance click on Settings button.
    4.Then opens performance options and then click on Advanced tab.
    5.After that click on Change button.
    6.Then select C Drive and click on custom size option button.
    7.Then change initial size and click on ok button.
    8.Then click on Apply button and click on ok button.


  11. Windows Server 2012 Tutorial
    Windows 95 Interview Questions

  12. 8. How To Find Ip Address In Windows Xp?

    You follow below steps to find IP address in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then click on Run and type “cmd”in run text box.
    3.After that command prompt opens then type “ipconfig” and press enter key.
    4.Look below Windows ip configuration information.
    5.Then close the command prompt.

  13. 9. How To Uninstall Programs In Windows Xp?

    You follow below steps to uninstall programs in windows xp.
    Steps:

    1. Click on Start menu.
    2. Then click on Control Panel.
    3. After that click on Add or Remove Programs.
    4. Then select program and click on Remove button.
    5. Then close Add or Remove program window & Control Panel window.

     


  14. windows server 2008 Interview Questions

  15. 10. How To Enable Automatic Updates In Windows Xp?

     To Enable automatic updates in Windows XP.To Enable automatic updates in Windows XP.
    Steps:

    1.Click on Start Menu.
    2.Then Click on Control Panel.
    3.After that double-click on Security Center.
    4.Then click on Automatic Updates.
    5.Automatic Updates window opens then click on Automatic(recommended) option button.
    6.Then click on Apply button.
    7.After that click on OK button.

     


  16. Windows 10 Development Tutorial

  17. 11. How To Disable Automatic Updates In Windows Xp?

    To Disable automatic updates in Windows XP
    Steps:

    1.Click on Start Menu.
    2.Then Click on Control Panel.
    3.After that double-click on Security Center.
    4.Then click on Automatic Updates.
    5.Automatic Updates window opens then click on Turn off Automatic Updates option button.
    6.Then click on Apply button.
    7.After that click on OK button. 


  18. Windows Server 2003 Interview Questions

  19. 12. How To Login As Administrator In Windows Xp?

    You follow below steps to login as administrator in Windows XP.
    Steps:

    1.Click on Start menu.
    2.Then click on Run and type “Regedit.exe” in run text box.
    3.After that click on HKEY_LOCAL_MACHINE.
    4.Then click on SOFTWARE.
    5.Then click on Microsoft.
    6.After that click on Windows NT.
    7.Then click on CurrentVersion.
    8.Then click on Winlogon.
    9.After that click on SpecialAccounts.
    10.Then click on User List.
    11.After that in Registry Editor window right side double click on Administrator.
    12.Then set Value data 1 then click on OK button.
    13.Then Exit the Registry Editor.


  20. WinRunner Interview Questions

  21. 13. How To Check Java Version In Windows Xp?

    You follow below steps to check java version in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then click on Run and type “cmd” in run text box.
    3.Then click on ok button.
    4.After that type “java-version” in command prompt and press enter key.
    5.Look java version in command prompt.

  22. 14. How To Find/know Service Pack In Windows Xp?

    You follow below steps to find/know service pack in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then right click on My computer icon and click on Properties.
    3.After that click on General tab.
    4.Then in Systems group given the service pack.
    5.Then close system properties windows

  23. 15. How To Repair Or Restore Windows Xp?

    You follow below steps to repair or restore Windows XP.
    Steps:

    1.Insert windows xp CD in your CD drive.
    2.Then Restart your computer.
    3.Then Press Any Key to boot into cd.
    4.Then in blue screen say, “To set up Windows XP now, press ENTER”, you press Enter Key.
    5.Then Accept the License and Agreement by pressing F8 key.
    6.After that in blue screen give the three options To repair windows xp installation using recovery console ,press R.Accept this and you Press R key.
    7.Then the Set up is deleting all your Windows XP® files and replacing them.

     


  24. Windows8 Interview Questions

  25. 16. How To Join A Wireless Network In Windows Xp?

    You follow below steps to windows xp how to join a wireless network in Windows XP.
    Steps:

    1.Click on Start menu.
    2.Then click on Control Panel.
    3.After that Double-click on Network Connections.
    4.Then Right-click on Wireless Network Connection and select Properties.
    5.Then click on Wireless Networks tab.
    6.After that click on Use Windows to configure my wireless network settings.
    7.Then click on OK button.
    8.After that click on Association tab and type Network name (SSID).
    9.Then click on Data encryption and select WEP.
    10.After that Uncheck The key is provided for me automatically.
    11.Then click on OK button.
    12.Then click on Wireless Network tab and Confirm your network is listed in Preferred networks.
    13.Then click on OK button.

  26. 17. How To Open Registry In Windows Xp?

    You follow below steps to open registry in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then click on Run and type “regedit” in text box.
    3.After that click on OK button.


  27. Windows Server 2008 R2 Desktop Virtualization Interview Questions

  28. 18. How To Know/find 32 Or 64 Bit In Windows Xp?

    You follow below steps to know/find 32 or 64 bit in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then right click on My computer icon and click on Properties.
    3.After that click on General tab.
    4.Then in Systems group given system information.
    5.Then close system properties windows.


  29. MS-DOS Interview Questions

  30. 19. How To Disable Firewall In Windows Xp?

    You follow below steps to disable firewall in Windows XP.

    Steps:

    1.Click on Start Menu.
    2.Then Click on Control Panel.
    3.After that click on Network and Internet Connection.
    4.Then Clock on Windows Firewall.
    5.After that click on General tab, and then click on Off (not recommended) option button.
    6.Then click on OK button.

  31. 20. How To Join A Domain In Windows Xp?

    You follow below steps to join a domain in Windows XP.

    Steps:

    1.Right click on My computer.
    2.Then click on Computer Name tab.
    3.After that click on Change button.
    4.Then click on Domain and type domain name in Member of session.
    5.Then click on ok button.
    6.After that click on Apply and ok button.


  32. Windows 7 Interview Questions

  33. 21. How To Delete Cookies In Windows Xp?

    You follow below steps to delete cookies in Windows XP.
    Steps:

    1.Click on  Start.
    2.After that Click on “Control Panel”, and then double-click on “Internet Options”.
    3.On the General tab, click on  “Delete Files” under Temporary Internet Files.
    4.After that Delete Files dialog box opens, select the “Delete all offline content” check box.
    5.Then click on  OK button
    6.After that Click on OK button

  34. 22. How To View Cookies In Windows Xp?

    You follow below steps to view cookies in windows xp.
    Steps:

    1.Open My computer.
    2.Then click on Local disk C: .
    3.After that click on Documents and Settings folder and then click on your username folder.
    4.Then click on Cookies folder.
    5.Then see the all cookies files.

  35. 23. How To View Clipboard In Windows Xp?

    You follow below steps to view clipboard in Windows XP.
    Steps:

    1.Right click on Desk top.
    2.Then move mouse pointer on New and then click on Shortcut.
    3.After that pop up window opens,type “%windir%System32clipbrd.exe”.
    4.Then click on Next button.
    5.Then type “Clipbrd.exe”.
    6.Then click on Finish button.


  36. VMware ESXi Interview Questions

  37. 24. How To Map A Network Drive In Windows Xp?

    You follow below steps to map a network drive in Windows XP.
    Steps:

    1. Click on start menu.
    2. Then right click on My Computer and click on Map Network Drive.
    3. Then select Drive and Next to Folder type: lycaeumuserfolders[Your Program][Your Program (space) Your Year][USERNAME].
    4. Then click on check box to Reconnect at logon.
    5. After that Click on blue link that says “different user name”.
    6. Then type user name”worldlearning[YOUR USERNAME]” and password.
    7. Then Click on “OK” button.
    8. Then click on Finish button.

     


  38. Windows 95 Interview Questions

  39. 25. How To Lock Icons In Place On The Desktop In Windows Xp?

    You follow below steps to lock icons in place on the desktop in Windows XP.
    Steps:

    1.Right click on Desktop.
    2.Then Click on Properties.
    3.After that click on Desktop tab.
    4.Then click on Customize Desktop Button.
    5.Then click on Web tab.
    6.After that click on Lock desktop items Check box.
    7.Then click on OK button, and then click on Apply or OK button.

  40. 26. How To Enter Bios In Windows Xp?

    You follow below steps to enter bios in windows xp.
    Steps:

    1.Restart your Computer.
    2.Then press “F2 or Del. “Key.
    3.After that BIOS settings are opened.
    4.Then you change information you want to.
    5.After that save setting and exit.
    6.This is how  you can enter or change BIOS in windows XP.

     


  41. Windows Vmware Interview Questions

  42. 27. How To Set Java_home In Windows Xp?

    You follow below steps to set java_home in Windows XP.
    Steps:

    1.Click on Start menu.
    2.Then right click on My Computer icon and select properties.
    3.After that Click on Advanced Tab.
    4.Then Click on  Environment Variables button.
    5.Then Under System Variable,click on New button.
    6.After that Enter the variable name as JAVA_HOME.
    7.Then Enter the variable value as the install path for the Development Kit(C:/j2sdk1.4.2)
    8.Then Click on OK button.
    9.Then Click on Apply button.

     


  43. windows server 2008 Interview Questions

  44. 28. How To Join A Work Group In Windows Xp?

    You follow below steps to join a Workgroup in Windows XP.
    Steps:

    1.Right click on My computer.
    2.Then click on Computer Name tab.
    3.After that click on Change button.
    4.Then click on Work group and type Work group name in Member of session.
    5.Then click on ok button.
    6.After that click on Apply and ok button.

  45. 29. How To Change Ip Address In Windows Xp?

    You follow below steps to change IP address in Windows XP.
    Steps:

    1.Click on Start Menu.
    2.Then click on Control Panel.
    3.After that click on Network Connections.
    4.Then Right click on the active Local Area Connection, and then click on Properties.
    5.After that Double-click on Internet Protocol (TCP/IP).
    6.Then Click on Use the following IP address.
    7.Then Enter a false IP address like 123.123.123.123 ,and then press Tab button on your keyboard .The Subnet Mask section will populate with default numbers.
    8.Then click on OK button tow times.
    9.After that Right click on the active Local Area Connection, and then click on Properties.
    10.After that Double-click on Internet Protocol (TCP/IP).
    11.Click on Obtain an IP address automatically.
    12.Then click on OK button.


  46. VMware NSX Interview Questions

  47. 30. How To Find Video Card Info In Windows Xp?

    You follow below steps to find video card info in Windows XP.
    Steps:

    1.Click on Start Menu.
    2.Then Click on Run.
    3.After that type “dxdiag” in Run text box.
    4.Then click on Ok button.
    5.DirectX Diagnostic Tool window opens, then click on Display tab.
    6.Then see below in Device box.

     

300+ TOP Windows Server Dns Interview Questions – Answers

  1. 1. What Is Dns?

    DNS stands for Domain Name System. It is a hierarchical system for identifying hosts on the Internet or on a private, corporate TCP/IP internetwork. It resolves the IP addresses to host names (or friendly internet names) and Host names to IP addresses.

  2. 2. What Is The Structure Of Dns?

    The structure of DNS starts with root domain. Then it (root domain) braches to TOP level domains, then second level domains, and so on to the individual host names.

     Root Domain –> Top level Domains–> Second level Domains–> So on so forth up to individual host systems


  3. MySQL Interview Questions

  4. 3. How To Install Dns?

    We can install DNS in 3 different ways:

    • While installing Operating System: While installing Operating System, It asks at Network Settings whether you want Typical settings or Custom Settings. Select Custom Settings–>Select Network Services–>click on Details–>Select DNS–>ok
    • While installing through Active Directory (DCPROMO): (During installation it asks for CD)
    • Independently: Programs –>Settings –>Control Panel –Add/Remove Programs –>Add/Remove Windows Components –>Select the Network Services–>Click on properties –>Select DNS –>OK (During the installation it asks for CD)
  5. 4. How To Open Dns?

    Start–>Programs–>Administrative Tools–>DNS

    Or

    Start–>Run–>dnsmgmt.msc

    Or

    Start–>Run –>cmd –>dnsmgmt.msc


  6. MySQL Tutorial

  7. 5. How To Configure The Dns?

    Open the DNS Console. Then you will find there

    • DNS
    • Server name
    • Forward Lookup Zone
    • Reverse Lookup Zone

    Note:
    If you have selected create automatically zones during the setup, then it creates the root zone and domain zone under forward lookup zone. If no zones are there under forward lookup zone first create root zone then create domain zone.


  8. Red Hat Linux System Administration Interview Questions

  9. 6. What Tabs Are There On Properties Of Domain?

    Domain properties contain the following tabs:

    • General
    • Start of Authority (SOA)
    • Named servers
    • WINS
    • Zone transfers
  10. 7. What Tabs Are There On Properties Of Sever?

    Server properties contain the following tabs:

    • Interface
    • Forwarders
    • Advanced
    • Root hints
    • Logging
    • Monitoring

  11. Microsoft Azure Tutorial
    Ubuntu Certified Professional Interview Questions

  12. 8. Where To Create The Primary, Secondary, Active Directory Integrated Zones?

    • If you want to create an Active Directory integrated zone, the server must be Domain Controller.
    • If you want to create the Primary DNS, you can create on Domain Controller or Member server. But if create on member you could not get 4 options under the domain which are meant for Active directory.
    • You can create Secondary zone on a Member Server or on a Domain Controller. There is no difference between them.
  13. 9. What Commands Do We Use For Dns?

    We use the following commands for DNS:

    • Nslookup (and all interactive mode commands)
    • Ipconfig /fulshdns
    • Ipconfig /registerdns

  14. DHCP Interview Questions

  15. 10. What Is The Purpose Of Forward Lookup?

    Forward lookup resolves the Hostnames (Friendly Name) to IP addresses.

  16. 11. What Is The Purpose Of Reverse Lookup Zone?

    Reverse lookup resolves the IP addresses to Host names.


  17. Microsoft Azure Interview Questions

  18. 12. What Is The Difference Between Primary Zone And Secondary Zone?

    • Primary zone has read and write permissions, whereas Secondary zone has read only permission.
    • Secondary zone is used for Backup and Load balancing.

  19. MySQL Interview Questions

  20. 13. How To Check Whether Dns Is Working Or Not?

    In order to check whether a DNS is working or not, type the command “nslookup” in command prompt. It will give the DNS server name and its IP address.

  21. 14. What Is Dynamic Updates In Dns?

    Generally we need to create a host record for newly joined computer (either client or Member server or Domain controller). If you enable dynamic Update option, then DNS itself creates associated host record for newly joined computers.

  22. 15. How To Get Dynamic Update Option?

    Right Click on any zone –>properties –>on General tab u will get

    Allow Dynamic Updates? [_Yes/No/Secure Updates]

    Note:
    Put always Dynamic Updates “YES”

    Note:
    If it is Active Directory Integrated zone you will get above three options.

    But if it is Primary or Secondary zone you will get only “YES/NO” (You won’t get secure updates)


  23. Microsoft Identity Integration Server (MIIS) Interview Questions

  24. 16. What Is Name Resolution?

    The process of translating the name into some object or information that the name represents is called name resolution. A telephone book forms a namespace in which the names of telephone subscribers can be resolved to the phone numbers.

  25. 17. What Is A Zone?

    Also called a zone of authority, zone is a subset of the Domain Name System (DNS) namespace that is managed by a name server. A database of records is called a zone.


  26. NFS Server Interview Questions

  27. 18. What Is An Iterative Query?

    The query that has been sent to the DNS server from a Client is called iterative query.
    (i. e., iterative query is nothing but gives the answer for my question, don’t ask to contact that person or this person or don’t say something else. Simply just answer to my question. That’s all)


  28. Red Hat Linux System Administration Interview Questions

  29. 19. What Is Recursive Query?

    Your DNS server requests the root level DNS server for specific IP address. Now DNS server says I don’t know but I can give the address other person who can help you in finding IP address.

  30. 20. What Type Of Records Do We Find In Dns Database?

    The most general records found in DNS database are

    • Host Record (A record)
    • Mail Exchange Record (MX record)
    • Canonical name or CNAME record (CNAME)

  31. Samba Server Interview Questions

  32. 21. What Is Ptr Record?

    PTR record is created in Reverse lookup zone. It is the record to main database for reverse lookup zone purposes (to convert from IP address to host names). Each host record in forward lookup should have an associated pointer record in reverse lookup zone.

    Generally first you will create a Forward lookup zone. Then go for Reverse lookup zone. Now we have to create associated pointer records for host records in forward lookup zone. If you are creating a host record in forward lookup zone after creating reverse lookup zone then here we need not to create a pointer record by coming to reverse lookup zone. When creating new host, click on the check box of create associated pointer record. Then it automatically creates associated pointer record in reverse lookup zone.

  33. 22. Is There Any Possibility To Have Two Primary Dns Zones?

    No, we cannot have two primary DNS zones. Why because if u have two primary DNS zones some clients contacts first one, some clients contacts second one according to their configuration in TCP/IP properties. Then you will get problems. Actually Primary DNS zone means Single master. i.e., master is only one that is only one primary DNS zone. But you can have as many as Secondary zones.

    To overcome from above problem (i.e., single master problem) in Windows 2000 we have Active Directory Integrated zones, which are multi masters.

  34. 23. What Is The Default Time Setting In Primary Zone To Refresh, Retry, Expire Intervals For Secondary Zone?

    The default settings are

    • To Refresh interval 10 minutes
    • To Retry interval, 15 minutes
    • To Expire after 1 day

  35. Virtual Private Network (VPN) Interview Questions

  36. 24. Suppose The Secondary Zone Is Expired; Now How To Solve The Problem?

    First go to primary zone check primary zone is working or not.

    IF primary zone is working then go to secondary zone, Right click on zone name select the “Transfer from Master” then it automatically contacts the primary DNS, if any updates are there then it takes the updates from the Primary.


  37. Ubuntu Certified Professional Interview Questions

  38. 25. How To Know Whether The Recent Changes In Primary Zone Are Updated To Secondary Zone Or Not?

    • Compare the Serial Number on Start of Authority tab in both secondary on primary DNS zone properties.
    • If both are same then recent updates are made to secondary zone.
    • If not (i.e., secondary is less then primary) click on “Transfer from Master”
  39. 26. How To Pause The Zone?

    • Click on the Pause button.
    • Click on General tab
    • Go to properties of a zone

    Note: When you install a Windows 2000 DNS server, you immediately get all of the records of root DNS servers. So every windows 2000 DNS server installed on Internet has pre configured with the address of root DNS servers. So every single DNS server in the Internet can get root servers.


  40. Squid Proxy Server Interview Questions

  41. 27. What Is A Forwarder?

    (Open DNS console ==> Right click on Domain name ==> Click on forwarder tab)

    A forwarder is server, which has more access than the present DNS server. May be our present DNS server is located in internal network and it cannot resolve the Internet names. Maybe it is behind a firewall or maybe it is using a proxy server or NAT server to get to the Internet. Then this server forwards the query to another DNS server that can resolve the Internet names.

    Command prompt commands:

    • Type Nslookup to get into the Nslookup mode.
    • Type set type=SOA then press enter type domain name
    • Type set type=NS then press enter; and type domain name.
    • Type set type=ALL then press enter.

    Note: To come out from Nslookup mode type exit.


  42. DHCP Interview Questions

  43. 28. When Developing Naming Strategy, Which Dns Server Should We Use?

    Microsoft suggests that we use Windows 2000 DNS server. If you want to get 100% functionality you have to use 2000 DNS server. But you can also use BIND (Berkeley internet name domain) DNS servers, but if you want you use with Windows 2000 you should have at least Bind version 4.9.7. (Previous versions don’t support SRV records)

  44. 29. What Is Caching Only Dns Server?

    • Just install the DNS service into your windows 2000 server. Then it is called caching only DNS server, because it starts working for your clients to resolve the Internet names to IP address.
    • When you are installing DNS service at that time it is preconfigured with root DNS servers IP addresses.
    • If anybody wants to resolve the records that belong to your domain then you need to configure your DNS server appropriately.

  45. VMware Interview Questions

  46. 30. Suppose Under The Forward Lookup Zone _msdcs, _tcp, _upd, _sites Are Not There (or You Have Deleted Unexpectedly). How To Get Them Back?

    To get them back, simply just stop and start the netlogon service.

    Type the following commands to stop and start the net logon service:

    • Net stop netlogon
    • Net start netlogon

    Whenever you create a root zone (i.e., “.”) in a DNS server, the forwards, and root hints tabs will be disabled on that DNS server.

300+ TOP Windows Vmware Interview Questions – Answers

  1. 1. What Is The Maximum Number Of Luns That Can Be Attached To A Host (esxi 5.0)?

    256

  2. 2. What Is The Maximum Number Of Vcpus That Can Be Assigned To A Vm (esxi 5.0)?

    32


  3. WinRunner Interview Questions

  4. 3. What Are The Uses Of Ntdsutil Tool?

    Some of the main uses of ntdsutil tool:

    • Authoritative Restore – Authoritatively restores the Active Directory database or AD LDS instance
    • ifm  – Create installation media for writable and RODC setups (Offline DC provisioning)
    • metadata cleanup – Cleans up objects of decommissioned servers
    • roles – Transfers and seizes operations master roles
    • set DSRM password – Resets DSRM administrator password
    • snapshot – Manages snapshots of the volumes that contain the Active Directory database and log files
  5. 4. What Is Scratch Partition?

    Scratch partition stores the logs and other details of ESXi which helps in troubleshooting


  6. WinRunner Tutorial

  7. 5. What Is The Name Of Ballooning Driver In Esxi?

    vmmemctl


  8. MS-DOS Interview Questions

  9. 6. What Is Vmcp?

    VMCP is VMware Component Protection

    This new feature in 6.0 ensures that VMs are rebooted in other servers during APD or PDL situations

  10. 7. What Are The Various Memory States In Esxi ?

    • High
    • Clear
    • Soft
    • Hard
    • Low

  11. Windows 10 Development Tutorial
    Windows 95 Interview Questions

  12. 8. What Is Vmx~?

    • In addition to the normal vmx file, from vSphere 6.0 onwards there is an additional file vmx~
    • vmx~ first takes any configuration changes and then writes to the actual vmx file
    • This ensures that the actual vmx file do not get corrupted
  13. 9. How Can I Check If Storage Is Vaai Capable?

    Check datastore and confirm if it supports Hardware Acceleration


  14. Active Directory Interview Questions

  15. 10. What Are The Two Deployment Models Of Psc?

    Embedded & External

    • Embedded if PSC is installed in vCenter box
    • External if PSC is installed outside vCenter in separate box
  16. 11. What Is Psc?

    • PSC is Platform Service Controller
    • This is an extended SSO model which was there in pre 6.0 versions
    • It takes care of authentication,licensing,certificates etc..

  17. Windows XP Interview Questions

  18. 12. What If Reconnecting The Esxi Host Back To An Evc Cluster Fails?

    • Make a note of the VM folders
    • Remove the ESXi host from the inventory
    • Add the ESXi host directly to the vCenter outside the EVC cluster
    • Now move the server to the EVC cluster
    • Add the VMs back to the folders

  19. WinRunner Interview Questions

  20. 13. How Can I Change The Evc Mode Of An Existing Cluster?

    You need to shutdown all running VMs in that cluster to change the EVC mode

  21. 14. What Are The Sub Plugins In Nmp?

    • SATP and PSP are the two sub plugins of NMP
    • SATP or Storage Array Type Plugins take care of the fail over mechanism of datastore and keeps track of paths available to a LUN or datastore
    • PSP or Path Selection Plugins determines which physical path should be used to issue I/O requests to a storage device
  22. 15. What Is Nmp And Its Role In Vmware?

    • NMP is Native Multipath Plugin
    • It is the default multipath plugin in VMware
    • Manages physical path claiming and unclaiming
    • Registers and de-registers logical devices
    • Associates physical paths with logical devices
    • Processes I/O requests to logical devices

  23. Windows8 Interview Questions

  24. 16. Which Is The Partition Type Used In Vmware Esxi Scratch Partition?

    VFAT

  25. 17. What Is Pluggable Storage Architecture In Vmware?

    • To manage storage multipathing, ESX/ESXi uses a special VMkernel layer called Pluggable Storage Architecture (PSA)
    • Handles I/O queueing to the logical devices. Handles physical path discovery and removal

  26. Windows Server 2008 R2 Desktop Virtualization Interview Questions

  27. 18. How To Promote A Server To Domain Controller In Windows Server 2012?

    • DCPROMO was the conventional tool used to promote a normal server to DC. This is now deprecated in Server 2012. 
    • In Server 2012, you can convert a server into DC using the server manager console. Under Server Manager, add a new role “Active Directory Domain Services”

  28. MS-DOS Interview Questions

  29. 19. What Is Ipam Server In Windows Server 2012?

    IPAM is IP Address Management server in Windows Server 2012. It enables central management of both DHCP and DNS servers. It can also be used to discover, monitor, and audit DHCP and DNS servers.

  30. 20. Can You Map A Single Virtual Switch To Multiple Physical Nics?

    Yes. This method is called NIC teaming.


  31. Windows 7 Interview Questions

  32. 21. In Vsphere 5.5, Vmkernel Portgroup Can Be Used For..?

    • vMotion
    • Fault Tolerance Logging
    • Management traffic
  33. 22. Can You Map A Single Physical Nic To Multiple Virtual Switches ?

    No

  34. 23. Command Line Tool Used In Esxi To Manage Virtual Disk Files?

    vmkfstools


  35. VMware ESXi Interview Questions

  36. 24. What Is The Port Used For Vmotion?

    8000


  37. Windows 95 Interview Questions

  38. 25. What Is The Log File Location Of Vmware Host?

    varlogvmware

  39. 26. Which Is The Command Used In Esxi To View Live Performance Data?

    esxtop


  40. Wintel Administrator Interview Questions

  41. 27. Which Is The Command Used In Esxi To Manage And Retrieve Information From Virtual Machines ?

    vmware-cmd


  42. Active Directory Interview Questions

  43. 28. The Active Directory Group, Where The Members Will Be Esxi Administrators By Default?

    ESX Admins

  44. 29. When Is A Swap File Created?

    When the guest OS is first installed in the VM


  45. Windows Server Support Interview Questions

  46. 30. What Is ‘no Access’ Role?

     Users assigned with the ‘No Access’ role for an object, cannot view or change the object in any way

  47. 31. What Is The Port Used For Vcenter?

    80,443,902

  48. 32. Which Networking Features Are Recommended While Using Iscsi Traffic?

    • iSCSI port binding
    • Jumbo Frames

  49. Windows Server Administration Interview Questions

  50. 33. What Is Default Time After Which The Dhcp Client Assigns Itself An Apipa ?

    The client waits for 60 seconds before which it assigns automatic private ip address


  51. Windows XP Interview Questions

  52. 34. How To Upgrade Esxi 5.1 To Esxi 5.5 ?

    • Using vSphere update manager
    • Upgrade interactively using the ESXi installer ISO image on CD/DVD or Flash drive
    • Using vSphere Auto Deploy
    • Using esxcli command-line interface
  53. 35. Dset Stands For?

    Dell Server E-Support Tool (DSET) provides the ability to collect hardware, storage and operating system information from Dell PowerEdge server.

  54. 36. How To Update Dell Server Bios ?

    Dell provides the update in different file formats. One for Windows , one for linux…If it is a VMware server, then download the Non-Packaged exe format from Dell website and copy it to a DOS bootable USB drive. Shutdown the server and boot from USB drive and execute the file.


  55. Windows8 Interview Questions

  56. 37. What If All Gc In The Environment Are Down ?

    • GC is required for multi domain forests – In a single domain infrastructure, the DCs will not contact the GC for authenticating. But in multi domain infrastructure, GC is required for authentication.
    • Universal Group Membership evaluation – Universal Group Membership which exists in a multi domain forests works only with GC.
    • UPN resolution – The users cannot login to the domain using the username abc@example.com
  57. 38. What Happens When A Standalone Host Is Taken Into Maintenance Mode ?

    The activity will wait until all VMs are shutdown.

  58. 39. How Can I Add New Hdd Space To An Existing Drive ?

    Convert the drive from Basic to Dynamic

  59. 40. How Is An Iscsi Device Connected To A Server ?

    An iscsi device can be connected using the iqn number.


  60. Windows Server 2008 R2 Desktop Virtualization Interview Questions

  61. 41. What Is Das ? How Is It Connected To The Server ?

    DAS is Direct Attached Storage. DAS is available with many vendors. When a server has exhausted all its storage resource, we can connect a DAS solution to it. DAS can be connected to a server using SAS cable.

  62. 42. Can We Setup An Ad Site Without A Dc ?

    Yes..


  63. Windows 7 Interview Questions

  64. 43. In Raid 5, Which Activity Is Faster – Read Or Write ?

    •  Good Read performance but slower Write operations due to parity calculation.
    • RAID 0 and RAID 1 has got excellent Read and Write performance
  65. 44. What Is The Difference Between Raid 1 And Raid 5 ?

    •  RAID 1 – Mirroring – This RAID configuration gives you maximum redundancy as the same data is written into two disks at a time. But this solution will be costly as you always need to have disks double of what you actually require. Minimum 2 disks required.
    • RAID 5 – This RAID is the most popular RAID configuration. This works on the parity principle. Minimum 3 disks required. Even if one disk fail, the data of the failed disk can be calculated from the parity stored in the other 2 disks.
  66. 45. How To Replace A Failed Raid Controller ?

    This depends on the type of controller used. If you are using modern RAID controllers and are trying to replace with the same model, then the RAID should work without any issues as the RAID configuration or metadata is stored in the disk array. But you should ensure that you are using the same model from vendor or a model which is compatible with the failed controller.

  67. 46. What Is The Use Of Ldp.exe?

    This is a part of Windows Support tools which helps us to make any LDAP searches against the Active Directory

  68. 47. What Is Group Policy Preference ?

    Group policy preference is a set of new settings that were released with Windows 2008, that allows IT administrators to do anything they want to configure in a corporate environment.

  69. 48. What Is Frs And Dfs-r ?

    • File Replication Service (FRS), introduced in Windows 2000 server to replicate DFS and Sysvol folder in DC. FRS is no longer used in new versions.
    • Distributed File System Replication (DFS-R), introduced in Windows 2008R2, came out as a replacement to FRS for replicating DFS and Sysvol.  
  70. 49. What Is An Ip Helper Address Feature And Why Is It Required In A Dhcp Environment ?

    • IP helper-address helps to implement DHCP relay agent in Cisco routers
    • This is configured at the network interface of the router containing the DHCP client
    • The IP helper-address intercepts the DHCP discover message from the client and unicasts it to the DHCP server after adding ‘Option 82’.
    • With the help of Option 82, the DHCP server identifies the client network and assigns an IP from that network.
  71. 50. How Many Passwords By Default Are Remembered When You Check “enforce Password History Remembered”?

    24

  72. 51. Difference Between Everyone And Authenticated Users?

    • Authenticated Users – Include all Users and Computers whose identities have been authenticated.
    • Everyone – For Windows 2003 and above, ‘Everyone’ includes all Authenticated Users including Guest accounts. Before Windows 2003, ‘Everyone’ includes all Authenticated Users , Guest accounts and Anonymous account.
  73. 52. What’s The Number Of Permitted Unsuccessful Logons For Administrator Account?

    Unlimited – Only for Administrator, not for others in Administrators group

  74. 53. What Is The Schema Version Of Windows 2008 R2 ?

    • Windows 2003 R2 – 31
    • Windows 2008       – 44
    • Windows 2008 R2 – 47
    • Windows 2012       – 56
    • Windows 2012 R2 – 69
  75. 54. What Is Urgent Replication In Ad ?

    Normally, a change in a DC (say DC1) is notified to its replication partner(say DC2) after 15 seconds. Once the change is notified, DC2 makes the change in its database. DC2 then notifies its replication partner after another 15 seconds. If it’s a multi-site setup, the 15 seconds delay would cost a big delay for the final recipient DC. Suppose if the change was an ‘Account Lock Out’, this big delay will be a pain. Here comes Urgent notification. Urgent notification bypasses the change notification delay and processes the change immediately across all DCs.

  76. 55. How To Migrate Ad Location To Another ? (from C:ad To D:ad)

    • First, stop the Active Directory Domain Services
    • Open Command Prompt with Admin privilege
    • Run ntdsutil tool
    • In the ntdsutil prompt, type Activate instance ntds
    • Then type files
    • In the next prompt (file maintenance), type move db to D:AD
    • Once the database is moved, move the logs using the command move logs to D:AD
    • Once completed, start the Active Directory Domain Services
  77. 56. Can You Explain Netlogon Services ?

    The Netlogon services help the client servers to connect to the Domain

  78. 57. Can You Connect Active Directory To Other 3rd-party Directory Services? Name A Few Options.

    • Microsoft Identity Integration Server (MIIS)
    • Forefront Identity Manager (FIM)
  79. 58. I Want To Look At The Rid Allocation Table For A Dc. What Do I Do?

    Dcdiag.exe /TEST:RidManager /v | find /i “Available RID Pool for the Domain”

  80. 59. Why Can’t You Restore A Dc That Was Backed Up 4 Months Ago?

    The reason is ‘Tombstoning’ . If a domain controller was restored from a backup that was older than the tombstone lifetime, then the domain controller might contain deleted objects, and because the tombstones are deleted from the replica, the deletion event does not replicate into the restored domain controller. This is why Backup does not allow you to restore data from a backup that is older than the tombstone lifetime.

  81. 60. Can I Deploy Non-msi Software With Gpo?

    Yes, you can. Apart from MSI packages, GPO also supports deployment of ZAP files

  82. 61. How Frequently Is The Client Policy Refreshed ?

    By default, group policy is updated in the background every 90 minutes.You can specify an update rate from 0 to 44,640 minutes (31 days). If you select 0 minutes, the computer tries to update Group Policy every 7 seconds. However, because updates might interfere with users’ work and increase network traffic, very short update intervals are not appropriate for most installations.

    The refresh interval can be configured manually using group policy – GPO –> Computer Configuration –> Administrative Templates –> System –> Group Policy –> Set Group Policy refresh interval for Computers

  83. 62. How Does The Group Policy ‘no Override’ And ‘block Inheritance’ Work ?

    No Override – This prevents child containers from overriding policies set at higher levels

    Block Inheritance – Stops containers inheriting policies from parent containers

  84. 63. Which Esxtop Metric Will You Use To Confirm Latency Issue Of Storage ?

    esxtop –> d –> DAVG

  85. 64. What Are Standby Nics?

    These adapters will only become Active if the defined Active adapters have failed.

    • Path selection policies in ESXi
    • Most Recently Used (MRU)
    • Fixed
    • Round Robin
  86. 65. Recommended Iscsi Configuration Of A 6 Nic Infrastructure ? (answer Changes As Per The Infrastructure Requirements)

    • 2 NICs for VM traffic
    • 2 NICs for iSCSI traffic
    • 1 NIC for vMotion
    • 1 NIC for management network
    • Post conversion steps in P2V
    • Adjust the virtual hardware settings as required
    • Remove non present device drivers
    • Remove all unnecessary devices such as serial ports, USB controllers, floppy drives etc..
    • Install VMware tools
  87. 66. Iscsi Port Binding Considerations ?

    • Array Target iSCSI ports must reside in the same broadcast domain and IP subnet as the VMkernel port.
    • All VMkernel ports used for iSCSI connectivity must reside in the same broadcast domain and IP subnet.
    • All VMkernel ports used for iSCSI connectivity must reside in the same vSwitch.
    • Currently, port binding does not support network routing.
  88. 67. What Is Iscsi Port Binding ?

    Port binding is used in iSCSI when multiple VMkernel ports for iSCSI reside in the same broadcast domain and IP subnet, to allow multiple paths to an iSCSI array that broadcasts a single IP address.

  89. 68. Recommended Iscsi Configuration?

    A separate vSwitch, and a separate network other than VMtraffic network for iSCSI traffic. Dedicated physical NICs should be connected to vSwitch configured for iSCSI traffic.

  90. 69. What Is Vsan?

    It is a hypervisor-converged storage solution built by aggregating the local storage attached to the ESXi hosts managed by a vCenter. 

  91. 70. Explain About Backup Types?

    Backup types:

    • Full backup – Will take the backup of all selected files and reset the archive bit
    • Copy backup – Will take the backup of all selected files but does not reset the archive bit
    • Incremental backup – Will take the backup of files whose archive bits are set and resets it after backup
    • Differential backup – Will take the backup of files whose archive bits are set but does not reset it after backup 
  92. 71. Explain About Raid?

    • Redundant Array of Independent disks
    • A category of disk drives that uses 2 or more drives in a combination for redundancy and performance
    • Most common RAIDs: RAID 0(Striped), RAID 1(Mirroring), RAID 5
  93. 72. Explain About Global Catalog?

    Global Catalog

    • Global catalog (GC) is a role handled by domain controllers in an Active directory model. 
    • The global catalog stores a full copy of all objects in the directory for its host domain and a partial copy of all objects for all other domains in the forest. 
    • ‘Partial copy’ refers to the set of attributes that are most used for searching every object in every domain.
    • All domain controllers can be promoted as a GC. 
    • GC helps in faster search of AD objects.  
    • The replicas that are replicated to the global catalog also include the access permissions for each object and attribute. 
    • If you are searching for an object that you do not have permission to access, you do not see the object in the list of search results. Users can find only objects to which they are allowed access.
    • Global catalog server clients depend on DNS to provide the IP address of global catalog servers. DNS is required to advertise global catalog servers for domain controller location.
    • By default, first DC of in a forest will be a global catalog server
  94. 73. Explain Traverse Folder?

    Allows or denies moving through a restricted folder to reach files and folders beneath the restricted folder in the folder hierarchy. 

    Traverse folder takes effect only when the group or user is not granted the “Bypass traverse checking user” right in the Group Policy snap-in. This permission does not automatically allow running program files.

  95. 74. How Will You Clone A Vm In An Esxi Without Vcenter?

    • Using vmkftools
    • Copy the vmdk file and attach to a new VM
    • Using VMware converter

300+ TOP Zoology Interview Questions – Answers

  1. 1. Define What Is An Animal?

    The word animal comes from Latin, meaning “breath” or “soul”. It includes mammals, birds, reptiles, fish, frogs, clams, lobsters, insects, worms, jelly fish etc..

  2. 2. Define What Is Binomial Nomenclature?

    The scientistific system of giving a double name to each plant and animal consisting of the name of the genus followed by that of the species.


  3. Microbiology Interview Questions

  4. 3. Define What Are Arboreal Animals?

    Organism that live on trees and branches are called Arboreal amimals.

  5. 4. Which Is The Biggest Cell?

    The egg of the flightless bird Ostrich.

  6. 5. Which Animal Is The Biggest?

    Blue whale which has been known to have a length of 30 metres and have an average weight of 6500 kg.


  7. Biotechnology Interview Questions

  8. 6. Which Is The Tallest Living Animal?

    The tallest living animal is Girraffe with an average height of 20ft.

  9. 7. Which Is The Biggest Land Animal?

    The biggest living land amimal in the world is the Affican bush elephant.


  10. Entomology Interview Questions

  11. 8. Define What Is Mammal?

    Mammal is a warm-blooded vertebrate animal which suckles its young ones. Monotrremes are mammals that lay eggs.

    Marsupials keep the young ones in pouches and placentals give birth to the young ones.

  12. 9. Explain How Many Species Are There In Mammals?

    There are over four thousand species.


  13. Chemistry Interview Questions

  14. 10. Define What Is Pangolin?

    Pangolin is a mammal which does not have teeth. It gives on eating ants. It is known as anteater.

  15. 11. Define What Is An Oviparous Animal?

    Oviparous animal is an egg laying animal.


  16. Teacher Interview Questions

  17. 12. Which Is The Most Successful And Evolving Mammal Of The Animal Kingdom?

    Mouse.


  18. Microbiology Interview Questions

  19. 13. Which Is The Ugliest Of All Mammals?

    Warthog.

  20. 14. Explain How Do Mammals Communicate?

    They communicate by sounds, touch, visual clues and odour.

  21. 15. Which Is The Smallest Mammal?

    The pygmy whitetoothed shrew.


  22. Pre School Teacher Interview Questions

  23. 16. Define What Is The Difference Between A Hare And A Rabbit?

    Hares have longer binding legs and longer ears than rabbits.

  24. 17. Which Birds Lives, Breeds, Sleeps And Eats Underground?

    The mole.


  25. Botany Interview Questions

  26. 18. Which Is The Mammal That Can Differentiate Between Different Colurs?

    Except man, the ape is the only mammal which can differentiate between different colours.


  27. Biotechnology Interview Questions

  28. 19. Define What Is The Meaning Of The Term ‘lagomorpha’?

    Rabbits, hares and Pikas are grouped together and called “Lagomorpha”.

  29. 20. Which Is The Mammal That Has Wings For Flying?

    Bat.


  30. Cell Biology Interview Questions

  31. 21. Which Is The Animal Without Fingers, But With Nails?

    Elephant.

  32. 22. Which Is The Biggest Eater In The Animal Kingdom?

    Pygmy shrew Warthog. The larval of the polyphemers moth.

  33. 23. Which Is The Word’s Smallest Monkey?

    The pygmy marmoset.

  34. 24. Which Animal Produces The Biggest Baby?

    Blue whale.


  35. Entomology Interview Questions

  36. 25. Animals Having Four Feet Are Called Define What?

    Quadruped.Karl Wilhem Von Nigole in 1857.Gaint squid.

  37. 26. Which Animal Subsist On Flesh?

    Carnivorous.

  38. 27. Define What Is An Ovoviviparous Animal?

    Oviparous animal is one which after laying eggs, keeps them within its body to hatch and incubate later.


  39. Chemistry Interview Questions

  40. 28. Some Animals Have Colours For Protection. Which Are They?

    Grasshoper, locust, sand lizard,polar bear, tiger etc.

  41. 29. Which Are The Animals That Live In Cold Regions?

    Seal, Penguin, Some fishes, polar bear and rein deers.

  42. 30. Which Animal Live In Hot Region?

    Camels, lizards, scorpian, centipedes, millipedes, spiders, snakes, goats etc.

  43. 31. Whcih Animal Is A Glutton?

    It is the alternative name for an animal called the wolverence.

  44. 32. Define What Is Viviparous Animal?

    A Viviparous animal is one that gives birth to young birth.

  45. 33. Define What Helps Bat In Flying?

    While flying, the bat produces high frequency sound waves (about 1,00,000 hertz) from its mouth which are ultra sonic waves. This sound helps the bat in flying.


  46. Teacher Interview Questions

  47. 34. Define What Is A Flying Fox?

    A flying fox is a kind of bat, whose head and face are like those of a fox. It has well developed eyes and can find its way by sight without the help of sound waves.

  48. 35. Define What Is A Flying Squirrel?

    It is a squirrel which can fly having parachute-like membranes connected to each side of its fore and hind limps. It usually sleeps during the day time.

  49. 36. Which Is The Animal Which Never Drink Water?

    It is known as kangaroo rat. It manages to get on by the small amounts that are released as a a by product of digestion.


  50. Pre School Teacher Interview Questions

  51. 37. Which Is The Largest Marsupial?

    The largest of all marsupials is the red kangaroo (Macrpus rufus).

  52. 38. Which Is The Smallest Marsupial?

    The smallest Marsupial is the very rare Ingram’s planigab(planigabingrami), a flat-skulled mouse.

  53. 39. Which Is The Rarest Marsupial?

    The rarest marsupial is probably the thylacine (Thylacinus cynocephalus), also known as the “Tasmanian wolf”.

  54. 40. Define What Is Hervivores?

    Herbivores is the term used to describe plant eating amimals.


  55. Botany Interview Questions

  56. 41. Name The World’s Rarest Monkey?

    Hairy-eared mouse lemur.

  57. 42. Which Animal Has No Skeleton?

    Jelly fish.


  58. Cell Biology Interview Questions

  59. 43. Which Is The Largest Rodent In The World?

    Capybara.

  60. 44. Which Is The Continent Known As The Land Of Kangaroo?

    Australia.

  61. 45. Which Is The Largest Kangaroo In The World?

    Red kangaroo.

  62. 46. Define What Is The Size Of New Born Kangaroo?

    2.5 cm.

  63. 47. Which Is Tha Largest Rodent In The World?

    Capybara.

  64. 48. Which Monkey Has The Biggest Nose?

    Proboscis monkey.

  65. 49. Which Animal Is Brown In Summer And White In Winter?

    Arctic hare.

  66. 50. The Skin Of An Animal Is Called The ‘hudson Seal’ By Furriers. Which Is The Animal?

    The muskrat.

  67. 51. Which Animal Defends Itself By Squirting An Noxious Liquid Called Mercaptan?

    The Skunk.

  68. 52. Why Do Animals Have Hair?

    They help to retain the internally producing heat. It is made up of a sulphur-based protein called keratin.

  69. 53. Explain How Far Can A Kangaroo Jump?

    It can cover a distance of 7to9metres just in one jump. It can travel 40 miles per hour for short distance.

  70. 54. Which Is The Animal That Has A Tongue Longer Longer Than Its Body?

    Chameleon is the animal, whose tongue is longer than its body. Its body is only 45cm long but the tongue is upto 2meter and coiled inside the mouth. To catch insects, it uses its long tongue.

  71. 55. Which Animal Has The Biggest Brain?

    Sperm Whale. It can weight more than 9 kg. Its head contains nearly 2300 litres of pure oil.

  72. 56. Which Are The Cats That Have No Tail?

    The manx and the Siamese.

  73. 57. Which Is The Only Cat That Cannot Retract Its Claws?

    Cheetah.

  74. 58. Which Is The World’s Largest Living Reptile?

    The Estuarine or salt water crocodile.

  75. 59. Define What Is Animals Belonging To Phylum Annelida Are Commonly Known?

    Segmented worms.

  76. 60. Which Animal Is The Closest Relative Of A Cat?

    Civet.

  77. 61. Define What Is Called Animals That Swim About In Sea?

    Pelagic.

  78. 62. Which Has The Thickest Skin Of Any Living Animal?

    The whale shark.

  79. 63. Name The South American Animal Which Is Camel Like But Short Statured?

    Llama.

  80. 64. A Common Domesticated Animal Which Cannot Taste Sweet?

    Cat.

  81. 65. Which Cat Can Live Without Water For The Longest Time?

    The sand cat, which lives in the Sahadra desert.

  82. 66. Define What Kind Of Animals Llive Under Ground?

    Some birds, bees, baderes, earth worms, turtles and and toads.

  83. 67. Which Animal Is The Fastest On Foot?

    Cheetah is the fastest runner with a speed of 65 miles/hour.

  84. 68. Why Does The Egg Happen To Be Larger In Size When Compared To The Other Cells?

    Because the food for the growth of the embryo is stored in the egg.

  85. 69. The Aquatic Animals Which Are Most Developed Intelligence?

    Dolphin.

  86. 70. The Average Length Of Dolphin?

    1.3 meter.

  87. 71. Explain How Long Does A Dolphin Sleep?

    From 30 seconds to 5 minutes.

  88. 72. Why Do Desert Aminal Look So Pale?

    The pale tones are part of a desert animals cooling system, for light colours reflect the sun’s heat and dark colour absorb them. This is used for camouflage also.

  89. 73. Which Animal Can Produce Double Milk?

    The red Kangroo is the animal which can produce two different kinds of milk at the same time from adjecent teats to feed both younger and elder Joeys.

  90. 74. Explain How Many Vertibrate Are There In A Giraffe’s Neck?

    There are only seven vertibrae. (The man too has seven).

  91. 75. Dog Lies Down To Sleep Only After Observing The Surroundings. Why?

    The dog lies against the direction of the wind so as to detect the approach of the enemy.

  92. 76. Explain How Many Arms Does An Octopus Have?

    Eight.

  93. 77. Define What Are Tentacles?

    The arms of the octopus are called tentacles.

  94. 78. In Which Country The Yak Is Found?

    Tibet.

  95. 79. The Mammals That Lives At The Greatest Altitude Is?

    The Yak.

  96. 80. In Which Country Kiwi Is Found?

    New Zealand.

  97. 81. Which Camel Has Two Humps?

    The Bacterian camel.

  98. 82. Explain How Long A Camel Survive Without Water?

    30 days.

  99. 83. Which Animal Uses An Ultrasonic Sonar To Detect Its Pray?

    Bat.

  100. 84. Which Is The Only Animal Which Has Four Knees?

    The elephant.

  101. 85. Which Is The Smallest Dog On The Earth?

    Chihuahua.

  102. 86. Which Is A Common Domesticated Animal That Is Colour Blind?

    Dog.

  103. 87. Which Is The Animal Used By Tapeworm As Its Host?

    Pig.

  104. 88. Which Is The Largest Indian Deer?

    Sambar.

  105. 89. Which Animal Faints When Frightened By The Enemy?

    The oppoddum.

  106. 90. Which Animal Is Hyena Family Eats Insects?

    Aardwolf.

  107. 91. Which Is The Man Like Ape Found In Borneo And Sumatra?

    Orangutan

  108. 92. Define What Is The Meaning Of The Name Orangutan?

    Man of the woods.

  109. 93. Name Three Aquatic Mammals?

    Walrus, whale and Dolphins.

  110. 94. Which Animal Has The Characteristics Of Both Mammals And Birds?

    Platypus.

  111. 95. If A Dog’s Ears Go Back Define What Emotions Might It Be Communicating?

    Fear of submission.

  112. 96. Define What Is A Dog’s Most Highly Developed Sense?

    Smell, it is uses its nose to hunt or find a mate.

  113. 97. Explain How Often Can A Female Rat Reproduce?

    Every four weeks.

  114. 98. Which Animal Has The Longest Longivity?

    Tortoise.

  115. 99. Which Wolf Is Not A Wolf?

    The Tasnabuab wolf is a marsupial.

  116. 100. Which Is The Most Primitive Breed Pf Dogs In The World?

    The dingo of Australia is probably the most direct ancestor of domestic dogs.

  117. 101. Which Is The Smallest Member Of The Fox Family?

    The Fennec Fox, which lives in the Sahara.

  118. 102. Which Dog Is Not A Dog?

    The Prairie dog is a north American rodent.

  119. 103. Explain How Many Hours In A Day To Cat Spend Sleeping?

    16 hours, twice as long as most mammals.

  120. 104. Do The Lions Or Lionesses Do Most Of The Hunting In A Pride?

    Lionesses, but the lions always eat first.

  121. 105. Which Are The Biggest Cats; Tiger Or Lion?

    Tiger:
    male Siberian Tigers average 3.15 meter (10.3 feet) in length.

  122. 106. Define What Are Panthers?

    They are black leopards.

  123. 107. Which Ancient Civilization Believed Cats Were Sacred?

    The ancient Egyptions.

  124. 108. Define What Is A Cola’s Favorite Food?

    Leaves of Eucalyptus trees.

  125. 109. Which Ape Can Make Its Own Tools?

    Chimpanzees.

  126. 110. Why Do Elephants Flap Their Ears So Much?

    To keep themselves cool in hot weather.

  127. 111. Define What Are The Four Ways A Horse Moves?

    walking, trotting, cantering and galloping.

  128. 112. Which Large Turry Mammal Spends All Day Hanging Upside Down In The Trees In The Rain Forest Of South America?

    A Sloth:
    it moves very slowly and only wakes up at night.

  129. 113. Define What Does A Skunk Do When It Is Attacked?

    It sprays a horrible smelling liquid at enemies.

  130. 114. Define What Does A Beaver Build?

    Beavers build wooden dam to stop flowing water.

  131. 115. Define What Are Ruminents?

    Ruminents are eventoed mammals that chew the cud. Most are grazers which need large amounts of food to get sufficient nourishment, and which are most exposed to predators.

  132. 116. Define What Is The Name Of The Deer Which Is On Th Everge Of Extinction?

    The brown antled deer.

  133. 117. Define What Is A Guinea Pig?

    A guinea pig is a small stout bodied, short eared and nearly tailess domesticated rodent.

  134. 118. Which Is The Worlds Smallest And Ferocious Mammal?

    The Shrew:
    a tiny mouse like mammal only two inches long and weighs about as much as a nickel.

  135. 119. Which Marine Mammal’s Flesh Is Mostly Used By Eskimos?

    The walrus:
    a large marine mammal allied to seals, characterised by the prolongation of the upper canine teeth into tusks.

    Its flesh is eatern by eskimos, and the oil, hide and ivory also valuable.

  136. 120. Define What Is The Branch Of Zoology Dealing With Whales Called?

    Cetology.

  137. 121. Define What Is The Fat Of Whale Called?

    Blubber.

  138. 122. Define What Is Hippology?

    The study of horses is called Hippology.

  139. 123. Which Animal Has The Highest Gestation Periods And Explain How Many Days?

    Elephant, 600-630 days.

  140. 124. For Define What Rats And Rabbits Use Their Claws?

    To dig burrows.

  141. 125. Define What Peculiar Characteristic Do The Hippopotamus And Tapir Share?

    Though they live exclusively on land, they defecate in the water.

  142. 126. Which Are The Two Kinds Of Animals That Scientist Describe As Warm Blooded, Define What Are They?

    Birds and mammals.

  143. 127. Define What Is Called Animals Living On The Sea Floor?

    Benthic.

  144. 128. Which Is The Largest Of The Ape?

    The mountain gorilla of West Africa.

  145. 129. Define What Is Murrah?

    It is a hybrid buffalo which is a high milk producer.