Windows Admin – L2/L3 interview Questions

Windows Admin – L2/L3 interview Questions System Administrator Windows Admin Questions – L2/L3 interview Questions

(adsbygoogle = window.adsbygoogle || []).push({}); FAQ about Windows 11, iiQ8, Frequently asked questions Windows11 1.What are the FSMO roles ?   2. Which role plays the vital role? 3.Why domain time synchronization require? A http://how-to-install-it.blogspot.com reader who uses 4.What is KCC?   5.In global catalogue server which role will not work?   6.What is the difference between IIS 5.0 and IIS 6.0 ?   7.What is MTA?   8.What is the role of Application pool in IIS server?   9.What is the Event ID no. for abnormal shut down ?   10. How to make coomunicate between difference subnets in DHCP server?   11.How many types of Host records are there?   12.What you need to create alias ?   13.What is DHCP relay agent and How to configure it?   14.What is the di…
Read more about Windows Admin – L2/L3 interview Questions
  • 0

Explain ACID properties.

Explain ACID properties   Explain ACID properties.    ACID (Atomicity, Consistency, Isolation, Durability) is a set of properties that guarantee that database transactions are processed reliably. In the context of databases, a single logical operation on the data is called a transaction. For example, a transfer of funds from one bank account to another, even involving multiple changes such as debiting one account and crediting another, is a single transaction. Atomicity : Atomicity requires that each transaction be "all or nothing": if one part of the transaction fails, the entire transaction fails, and the database state is left unchanged. An atomic system must guarantee atomicity in each and every situation, including power failures, errors, and crashes. To the outside world, a committed transaction appears (by its effects on the database) to be indivisible ("atomic"), and an aborted transaction does not happen.   Consistency : The consistency property ensures that any…
Read more about Explain ACID properties.
  • 0

Explain normalization in Database

Explain normalization.       Explain normalization.   In creating a database, normalization is the process of organizing it into tables in such a way that the results of using the database are always unambiguous and as intended. Normalization may have the effect of duplicating data within the database and often results in the creation of additional tables. (While normalization tends to increase the duplication of data, it does not introduce redundancy, which is unnecessary duplication.) Normalization is typically a refinement process after the initial exercise of identifying the data objects that should be in the database, identifying their relationships, and defining the tables required and the columns within each table.   First normal form (1NF). This is the "basic" level of normalization and generally corresponds to the definition of any database, namely:   It contains two-dimensional tables with rows and columns.   Each column corresponds to a sub-object or a…
Read more about Explain normalization in Database
  • 0

Define XML and explain the structure of XML

Define XML and explain the structure of XML.       Define XML and explain the structure of XML.     XML stands for extensible markup language. XML was developed around 1996 and is a subset of SGML. It's documents conform to SGML. XML was made less complicated than SGML to enable its use on the web. XML uses the ISO 10646 (Unicode) standard for encoding characters.   XML Structure   This page provides a description of XML structure including the document parts, the prologue, and provides a simple XML example document.   Document Parts   Prolog   Document Element (root element)   The Prologue : The prologue, equivalent to the header in HTML, may include the following:   An XML declaration (optional) such as: <?xml version="1.0"?> A DTD or reference to one (optional). An example reference to an external DTD file:   <!DOCTYPE LANGLIST SYSTEM "langlist.dtd">   Processing instructions - An example processing instruction that causes style to be…
Read more about Define XML and explain the structure of XML
  • 0

Explain Network and Relational data models

7. Explain Network and Relational data models.   Explain Network and Relational data models   The network model is a database model conceived as a flexible way of representing objects and their relationships. Its distinguishing feature is that the schema, viewed as a graph in which object types are nodes and relationship types are arcs, is not restricted to being a hierarchy or lattice. The relational model for database management is a database model based on first-order predicate logic, first formulated and proposed in 1969.  In the relational model of a database, all data is represented in terms of tuples, grouped into relations. A database organized in terms of the relational model is a relational database.   In the relational model, related records are linked together with a "key".  The purpose of the relational model is to provide a declarative method for specifying data and queries: users directly state what information the database contain…
Read more about Explain Network and Relational data models
  • 0

Define deadlock with example

6. Define deadlock with example.   Define deadlock with example In a database, a deadlock is a situation that occurs when two or more different database sessions have some data locked, and each database session requests a lock on the data that another, different, session has already locked. Because the sessions are waiting for each other, nothing can get done, and the sessions just waste time instead. This scenario where nothing happens because of sessions waiting indefinitely for each other is known as deadlock. Database deadlock example:   Suppose we have two database sessions called A and B. Let’s say that session A requests and has a lock on some data – and let’s call the data Y. And then session B has a lock on some data that we will call Z. But now, lets say that session A needs a lock on data Z in order to run another SQL statement, but that lock is currently held by session B. And, let’s say that session B needs a lock on data Y, but that lock is…
Read more about Define deadlock with example
  • 0

Define RDBMS with example

4. Define RDBMS with example.     Define RDBMS with example RDBMS is the abbreviated form of Relational Data Base Management System.  A relational database management system (RDBMS) is a database management system (DBMS) that is based on the relational model as invented by E. F. Codd, of IBM's San Jose Research Laboratory. Many popular databases currently in use are based on the relational database model. RDBMSs have become a predominant choice for the storage of information in new databases used for financial records, manufacturing and logistical information, personnel data, and much more since the 1980s. Relational databases have often replaced legacy hierarchical databases and network databases because they are easier to understand and use. However, relational databases have been challenged by object databases, which were introduced in an attempt to address the object-relational impedance mismatch in relational database, and XML databases.   …
Read more about Define RDBMS with example
  • 0

Explain about triggers

5. Explain about triggers.     Explain about triggers A database trigger is stored code that is executed immediately after a predefined event. It is used to ensure the coordinated performance of related actions. Although implementation varies, all major relational databases support triggers.   A database trigger is procedural code that is automatically executed in response to certain events on a particular table in a database. Triggers can restrict access to specific data, perform logging, or audit data modifications.  
Read more about Explain about triggers
  • 0

Define instances and schemas

3. Define instances and schemas.   Define instances and schemas In DBMS, Instance is the information stored in the Database at a particular moment. Schema is the overall Design of the Database. In programming, we declare a variable which corresponds to "Schema". But its values changes as and when required which corresponds to "Instance".     Physical Schema describes database design at physical level while a logical schema describes the database design at the logical level. A database may also have several schemas at the view level, sometimes called subschemas, that describe different views of the database.
Read more about Define instances and schemas
  • 0

Explain Database users

Explain Database users.       Database Users   Database administrators – DBA is responsible for authorizing access to the database, for coordinating and monitoring its use, and acquiring software and hardware resources as needed.   (adsbygoogle = window.adsbygoogle || []).push({}); Database designers – identify data to be stored in the database and choosing appropriate structures to represent and store the data.  Most of these functions are done before the database is implemented and populated with the data.  It is the responsibility of the database designers to communicate with all prospective users to understand their requirements and come up with a design that meets these requirements.  Database designers interact with all potential users and develop views of the database that meet the data and processing requirements of these groups.  The final database must support the requirements of all user groups.   End Users   Casual End Users – occasionally …
Read more about Explain Database users
  • 0

Explain the three levels in data abstraction

Explain the three levels in data abstraction.       Explain the three levels in data abstraction. Three levels of data abstraction are: 1. Physical level : How the data is stored physically and where it is stored in database. 2. Logical level: What information or data is stored in the database (like what is the data type or what is format of data. 3. View level: End users work on view level. If any amendment is made it can be saved by other name. For the database to be usable it must retrieve data efficiently. This efficiency led designer to use complex data structure in the database.
Read more about Explain the three levels in data abstraction
  • 0

Why PCs Crash

10 Reasons Why PCs Crash 10 Reasons Why PCs Crash Fatal error: the system has become unstable or is busy," it says. "Enter to return to Windows or press Ctrl-Alt-Delete to restart your computer. If you do this you will lose any unsaved information in all open applications." You have just been struck by the Blue Screen of Death. Anyone who uses Microsoft Windows will be familiar with this. What can you do? More importantly, how can you prevent it happening? 1 Hardware conflict The number one reason why Windows crashes is hardware conflict. Each hardware device communicates to other devices through an interrupt request channel (IRQ). These are supposed to be unique for each device. For example, a printer usually connects internally on IRQ 7. The keyboard usually uses IRQ 1 and the floppy disk drive IRQ 6. Each device will try to hog a single IRQ for itself. If there are a lot of devices, or if they are not installed properly, two of them may end up sharing …
Read more about Why PCs Crash
  • 0

Automation error: Drawing is Busy when trying to save a DWG file

Automation error: Drawing is Busy when trying to save a DWG file   Automation error: Drawing is Busy when trying to save a DWG file   Issue:   Intermittent errors appears when saving DWG files with AutoCAD 2012 and 2013 with the message;  Automation error: Drawing is busy AutoCAD then crashes or hangs losing all work from last save.   Causes:   This issue is related with the acaddoc.lsp, acad.fas or acad.vlx virus issues, files that appear duplicated in all folders from where you open dwg files.   Solution:   First thing to do is to check if your computer contains any virus, usually it's linked to the acaddoc.lsp and acad.fas stored in all folders from where you open the dwg files:    1.      Search for all these files and delete all of them.   2.      Next, check the article, How to detect and remove the Acad.vlx virus, if the file that appears copied in all folders is not one of the specified in th…
Read more about Automation error: Drawing is Busy when trying to save a DWG file
  • 0

What is Active Directory?

  What is Active Directory? What is Active Directory?      An active directory is a directory structure used on Microsoft Windows based computers and servers to store information and data about networks and domains. It is primarily used for online information and was originally created in 1996 and first used with Windows 2000.   An active directory (sometimes referred to as an AD) does a variety of functions including the ability to provide information on objects, helps organize these objects for easy retrieval and access, allows access by end users and administrators and allows the administrator to set security up for the directory.   An active directory can be defined as a hierarchical structure and this structure is usually broken up into three main categories, the resources which might include hardware such as printers, services for end users such as web email servers and objects which are the main functions of the domain an…
Read more about What is Active Directory?
  • 0

How to install windows 7 full

HOW TO INSTALL WINDOWS 7 FULL TUTORIAL (HD) how to install windows 7,windows vista , full tutorial...     how to install windows 7,windows vista , full tutorial...     How to Install Windows 7 Operating System, Drivers & Folders   The basics of how to Install a Windows 7 Operating System, Drivers, Folders, and Setting Up a New Computer System. PC Build Guide Series.   How to Install Windows 7 Operating System, Drivers & Folders   The basics of how to Install a Windows 7 Operating System, Drivers, Folders, and Setting Up a New Computer System. PC Build Guide Series.
Read more about How to install windows 7 full
  • 0

5 Best Interview Tips

5 Best Interview Tips 5 Best Interview Tips What are 5 good interview tips? 5 tips for a successful job interview 1) Be punctual at your interview. It is mandatory to be on time at a job interview. ... 2) Do your research on the company. ... 3) Don't forget about nonverbal communication. ... 4) Be polite with everyone. ... 5) Be prepared for your interview (adsbygoogle = window.adsbygoogle || []).push({}); Conduct thorough research. Dress for the job you want. Take your time. Bring a notepad and pen. Use facts and figures to demonstrate your achievements. Be prepared for difficult questions. Prepare your own questions.   5 Best Interview Tips From HRcrest.com Let's be very practical. Many experts have suggested through articles, interviews, forums etc., that one needs to very original in one's  Let's be very practical. Many experts have suggested through articles, in…
Read more about 5 Best Interview Tips
  • 0

Best MBA Interview Video revealed

Best MBA Interview Video revealed: Must watch for CMAT, CAT takers   MBA/ PGDM jobs get you the best salary in general, across the globe. if you are preparing for MBA Best MBA Interview Video revealed: Must watch for CMAT, CAT takers (adsbygoogle = window.adsbygoogle || []).push({}); Best MBA Interview Video revealed: Must watch for CMAT, CAT takers (adsbygoogle = window.adsbygoogle || []).push({}); Job Interview Techniques – Tips & Advice Top 10 websites for Jobs, Free Online Education, Interviews, Excel free Learning, Anchor Suma Interview With KTR, KTR Interview On GHMC Elections, iiQ8  
Read more about Best MBA Interview Video revealed
  • 0

I Love You Teddy Bear Wide

i_love_you_teddy_bear-wide       i_love_you_teddy_bear-wide Click here to watch youtube video  I love you Teddy Bear in white color to company your valentines floral arrangements. A traditional Dozen Red Roses is not complete without the addition of the stuffed animal and a chocolate box  What are the advantages of using forums over websites? How to prevent the mobile from exploding? మొబైల్ పేలకుండా ఉండాలంటే ఏం చెయ్యాలి? How to use one WhatsApp Account on Two Devices Save Your Time with Shortcuts in Computer How to improve your Content Marketing Skills
Read more about I Love You Teddy Bear Wide
  • 0

Job Interview Techniques – Tips & Advice

Job Interview Techniques - Tips & Advice     Job Interview Techniques - Tips & Advice   (adsbygoogle = window.adsbygoogle || []).push({});   Job Interview Techniques - Tips & Advice 1. Research the industry and company. 2. Clarify your "selling points" and the reasons you want the job. 3. Anticipate the interviewer's concerns and reservations. 4. Prepare for common interview questions. 5. Line up your questions for the interviewer. 6. Practice, practice, practice. 7. Score a success in the first five minutes. 8. Get on the same side as the interviewer. 9. Be assertive and take responsibility for the interview. 10. Be ready to handle illegal and inappropriate questions. 11. Make your selling points clear. 12. Think positive. 13. Close on a positive note. 14. Bring a copy of your resume to every interview. 15. Don't worry about sounding "canned". 16. Make the most of the "Tell me about yourself" question. 17. Speak th…
Read more about Job Interview Techniques – Tips & Advice
  • 0

How to write a resume

How to write a resume / CV with Microsoft Word How to Write a Resume Choose a resume format. Add your name and contact information. Write a standout resume headline. Add your professional resume summary statement. Detail your work experience. List relevant skills and keywords. Add your education, certifications, and any other relevant information Tailor your resume and optimize for applicant tracking systems Polish up your grammar and formatting Resume Fonts How to write a resume / CV with Microsoft Word

1. Choose a resume format There are three standard resume formats: chronological, functional, and hybrid (sometimes called a combination resume). For most job seekers, a hybrid resume format, which puts equal emphasis on skills and work experience, is the best choice. However, in some cases, a chronological or functional resume might work better.

2. Add your name and contact informatio…
Read more about How to write a resume
  • 0

Announcing Windows 10

Announcing Windows 10 September 30,  2014September 30, 2014           It’s a humbling and amazing thing to work on Windows, which is used by over 1.5 billion people in every country of the world. From kids playing with computers for the first time, to writers and journalists, to engineers, to gamers, to CEOs, at some point Windows has empowered all of us. In the Windows team, we’re proud of this – but we also know that the world today is very different from the one in which Windows grew up. Today, devices outnumber people. Connectivity is like oxygen. The tension between the desire for agility versus stability poses a huge challenge for IT Pros. Experiences – no matter what device you’re on – just need to work. The only thing that hasn’t really changed is the situation for developers – still too much to do, and not enough time.   One way to look at it is that Windows is at a threshold :-). It’s time for a new Windows. This new…
Read more about Announcing Windows 10
  • 0