Find Interview Questions for Top Companies
Blackbaud Interview Questions and Answers
Ques:- When defining a cronjob, there are five fields used to specify when the job will run. What are these fields and what is the correct order?Choose one:a. minute, hour, day of week, day of month, monthb. minute, hour, month, day of month, day of weekc. minut
Ques:- 1<=i,j,k<=300. Find (i,j,k) pairs such that their sum is divisible by 3. (2,2,1) and (2,1,2) are counted as different.
Right Answer:
To find the (i, j, k) pairs such that their sum is divisible by 3, we can iterate through all possible values of i, j, and k from 1 to 300 and check if (i + j + k) % 3 == 0.

The total number of valid (i, j, k) pairs is 300 * 300 * 300 = 27,000,000.

The valid pairs can be counted as follows:

1. Count how many numbers in the range 1 to 300 give a remainder of 0, 1, or 2 when divided by 3.
- Remainder 0: 100 numbers (3, 6, ..., 300)
- Remainder 1: 100 numbers (1, 4, ..., 298)
- Remainder 2: 100 numbers (2, 5, ..., 299)

2. The combinations of
Ques:- Three selectors: h1, .warning and #footer, what they do ?
Right Answer:
The selector `h1` targets all `<h1>` elements, `.warning` targets all elements with the class "warning", and `#footer` targets the element with the ID "footer".
Ques:- What is the HTML DOM?
Right Answer:
The HTML DOM (Document Object Model) is a programming interface that represents the structure of an HTML document as a tree of objects, allowing scripts to manipulate the content, structure, and style of web pages dynamically.
Ques:- How can I specify two different sets of link colors?
Right Answer:
You can specify two different sets of link colors using CSS by targeting different states of the link. For example:

```css
a {
color: blue; /* Default link color */
}

a:hover {
color: red; /* Color when hovered */
}
```

You can also use classes to define different sets:

```css
.link-set-1 a {
color: green; /* First set color */
}

.link-set-2 a {
color: orange; /* Second set color */
}
```
Ques:- What is ID selector?
Right Answer:
An ID selector is a CSS selector that targets an HTML element with a specific ID attribute, using the hash symbol (#) followed by the ID name. For example, `#myId` would select the element `<div id="myId">`.
Ques:- Give me an example of a situation when you went the extra mile for a customer?
Right Answer:
In a previous project, a client needed a last-minute design change for a presentation. I worked late into the night to revise the layout and ensure it was visually appealing and aligned with their brand. The client was thrilled with the result and expressed gratitude for my dedication.
Ques:- What is a commit? What does a commit contain?
Right Answer:

A commit in Git is a snapshot of changes made to the files in a repository. It contains the modified files, a unique identifier (hash), the author's information, a timestamp, and a commit message describing the changes.

Ques:- How do you resolve merge conflicts?
Right Answer:

To resolve merge conflicts in Git, follow these steps:

1. Identify the files with conflicts by running `git status`.
2. Open the conflicted files in a text editor. Look for conflict markers (`<<<<<<<`, `=======`, `>>>>>>>`).
3. Manually edit the file to resolve the conflicts by choosing which changes to keep or combining them.
4. After resolving, save the file.
5. Stage the resolved files using `git add <filename>`.
6. Complete the merge by committing the changes with `git commit`.

Ques:- What is the difference between merge and rebase?
Right Answer:

Merge combines two branches by creating a new commit that includes changes from both, preserving the history of both branches. Rebase, on the other hand, moves or combines a sequence of commits to a new base commit, creating a linear history without a merge commit.

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users