Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

Subversion Interview Questions and Answer Part-1

When checking out code from SVN you usually want to check out from __ not from the root of the repository.

  • repo
  • tags
  • trunk (Ans)
  • branches

A source control system that requires users to checkout a file in a way that no one else can edit that file is _________.

  • branching
  • locking (Ans)
  • distributed
  • merging

A source control system that allows different users to edit the same file, but requires conflicts between their changes to be resolved on a central server is _________.

  • branching
  • locking
  • distributed
  • merging (Ans)

Which of these is NOT in the set of default root folders in a SVN repository?

  • trunk
  • branches
  • lines (Ans)
  • tags

In SVN, the switch command does what?

  • switches the view of the files you are looking at
  • switches the user logged in
  • switches your working copy to a different branch (Ans)
  • switches modifications that you have stashed

The svn:ignore property is set on ___________.

  • the folder or file you want to ignore (Ans)
  • a repository itself
  • the parent of the folder or file you want to ignore
  • the root directory of the project

The revert command will ____________.

  • restore a file or folder to the current latest version in SVN
  • do nothing, but prevent changes from being committed
  • restore a file or folder to what the original checked out version was (Ans)
  • restore a file to a specific point in time that must be specified when the command is used

When a conflict has been fixed in SVN, you should mark it as _____________.

  • finished
  • resolved (Ans)
  • fixed
  • done

There is only one packaged version of SVN server

  • True
  • False (Ans)

Every commit to SVN can have an optional ___________ .

  • status flag
  • rollback
  • macro
  • commit message (Ans)

Before using a repository in SVN you must first create a least one ___________ .

  • branch
  • user (Ans)
  • hook
  • tag

SVN requires users to check a local copy of the repository also known as ____________.

  • a replication
  • a working copy (Ans)
  • a hub
  • a local repo

When creating a new file in SVN that file must be ___________ in order to be committed.

  • modified
  • added (Ans)
  • deleted
  • non empty

Add and delete operations in SVN ___________ .

  • are the same thing
  • should be done using an SVN command, not just in the file system
  • should only be done in the file system (Ans)
  • should do not really exist, svn just mimics what it sees happen in the file system

The rename command in SVN actually does ___________ .

  • a rename
  • a delete and an add (Ans)
  • just an add
  • a copy and delete

Which of the following is NOT a good reason for creating a branch?

  • to label a specific section of the source (Ans)
  • to create a new version of the software
  • to allow a feature to be worked in independently
  • to create a separate code line corresponding with a software release

SVN is currently maintained by what open source foundation?

  • Mono
  • Klingon
  • Nomad
  • Apache (Ans)

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
I’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at <a href="https://www.cotocus.com/">Cotocus</a>. I share tech blog at <a href="https://www.devopsschool.com/">DevOps School</a>, travel stories at <a href="https://www.holidaylandmark.com/">Holiday Landmark</a>, stock market tips at <a href="https://www.stocksmantra.in/">Stocks Mantra</a>, health and fitness guidance at <a href="https://www.mymedicplus.com/">My Medic Plus</a>, product reviews at <a href="https://www.truereviewnow.com/">TrueReviewNow</a> , and SEO strategies at <a href="https://www.wizbrand.com/">Wizbrand.</a> Do you want to learn <a href="https://www.quantumuting.com/">Quantum Computing</a>? <strong>Please find my social handles as below;</strong> <a href="https://www.rajeshkumar.xyz/">Rajesh Kumar Personal Website</a> <a href="https://www.youtube.com/TheDevOpsSchool">Rajesh Kumar at YOUTUBE</a> <a href="https://www.instagram.com/rajeshkumarin">Rajesh Kumar at INSTAGRAM</a> <a href="https://x.com/RajeshKumarIn">Rajesh Kumar at X</a> <a href="https://www.facebook.com/RajeshKumarLog">Rajesh Kumar at FACEBOOK</a> <a href="https://www.linkedin.com/in/rajeshkumarin/">Rajesh Kumar at LINKEDIN</a> <a href="https://www.wizbrand.com/rajeshkumar">Rajesh Kumar at WIZBRAND</a> <a href="https://www.rajeshkumar.xyz/dailylogs">Rajesh Kumar DailyLogs</a>

Related Posts

Complete step-by-step guide to install Apache Subversion (SVN)

Here’s a complete step-by-step guide to install Apache Subversion (SVN) on Windows, Linux, and macOS. What is Apache Subversion (SVN)? Apache Subversion (SVN) is an open-source version…

Read More

How to Access SVN Client Through an Internet Proxy?

If your Subversion (SVN) client is behind an Internet proxy, you may experience connection issues when trying to checkout, update, or commit changes. This guide explains how…

Read More

What is SVN and use cases of SVN?

What is SVN? SVN, which stands for Subversion, is an open-source version control system (VCS) used for managing changes to files and directories over time. It’s a…

Read More

Basic Workflow in Subversion (SVN) – Getting Started Tutorials

Basic Work Cycle in Subversion (SVN) Subversion has numerous features, options, bells, and whistles, but on a day-to-day basis, odds are that you will use only a…

Read More

SVN (Subversion) Branching Strategy

Version control systems play a vital role in the success of a software development team. This blog aims to provide a simple branching and merging strategy to…

Read More

Hook Implementation in Subversion

Lets Disucuss best way to implement Hook with SVN? This is very useful content to know aboutr hook in SVN svnbook.red-bean.com/en/1.1/ch05s02.html pre-commit hook, what is the best…

Read More