Technology Department, Tanzania. IT Applications Developer
KCB Group
Job Description
,
, - . No CSS classes, no inline styles, no , no
. Must preserve all original content word-for-word, but we need to strip formatting and keep text.
We have a job description with sections: KEY RESPONSIBILITIES, DAILY RESPONSIBILITIES, MINIMUM POSITION QUALIFICATION REQUIREMENTS (with subparts a. Academic & Professional, then a table, then Experience, etc). Also footnote.
We need to convert to HTML using for section headers,
for intro paragraphs and general text,
- for list items (duties, requirements, qualifications, skills). No , no
, no classes.
We must preserve all original content word-for-word. That means we cannot change wording, but we can strip tags and extra spaces? We must keep the text exactly as appears, but we can remove HTML tags and extra whitespace? The instruction: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That suggests we should output the same textual content, but we can reformat using HTML tags. However we must not alter the text itself. So we need to extract the plain text content from the given HTML, preserving spaces and line breaks? Probably we should output the text as it appears, but wrapped in appropriate tags.
We need to be careful: The original includes many non-breaking spaces ( ) and styling. We should convert those to normal spaces? The instruction says preserve original content word-for-word, but we are outputting HTML; we can keep as is? Probably better to keep them as spaces. But we must not add or remove characters. However converting to a regular space changes the character entity. Might be considered a change. Safer to keep as is? But we cannot use
tags, but we can keep inside etc. The instruction says no
tags, but is allowed? It's not a tag. It's an entity. Probably okay.
But we also have tables etc. We need to extract the table content and represent as lists? The instruction: Use
- for list items (duties, requirements, qualifications, skills). For tables, we could convert each row to a
or maybe keep as is? But we cannot use
or . We must not add any tags besides ,
, , - . So we need to represent table content using those tags only. That means we need to extract the textual content from the table and present as paragraphs or list items.
We must preserve all original content word-for-word, but we can reformat using allowed tags. So we need to output the same sentences, but we can wrap them in
etc. We cannot change the wording, but we can change whitespace? Probably we can normalize whitespace but must keep the words same order.
Thus we need to parse the given HTML and extract the visible text, preserving order, and then wrap sections with appropriate headings.
Let's extract the text manually.
Given HTML:
KEY RESPONSIBILITIES
- Contribute application development initiatives to the overall IT strategy.
- Work with business units to formulate banking products and contribute technical guidance to the procurement process.
- Analyze product requirements and design best-fit architecture and solutions guided by KCBT policies and industry best practice.
- Manage the project resources, schedule, costs, stakeholders, and the application development lifecycle
- Implement best practice and deploy appropriate tools to manage and govern application development and the IT change process.
- Actively engage end-users to assess satisfaction and achieve successful project closure.
- Work with functional teams to handover system support skills and documentation and formulate OLA agreements with level 3 support.
- Identify and champion innovative solutions that exploit existing business opportunities and mitigate existing risks.
- Manage the team’s performance and nurture skills that advance the IT strategy and establish sustainable practice.
- Develop, execute and measure OLAs and SLAs with IT functional teams and business units respectively.
DAILY RESPONSIBILITIES
Evaluate and analyze requests to implement new applications to resolve business challenges and improve efficiency of processes.
Evaluate and analyze requests to modify existing software systems and applications where either anomalies have been detected or the process is inefficient.
Distribute and manage the workload among the application developers.
Manage the application development life cycle, ensuring that the application development policy is adhered to.
Engage with business in formulating strategies that ride on software systems to take advantage of business opportunities
Provide support to the banking operations administrators and operators in resolving core banking anomalies and refining operations.
MINIMUM POSITION QUALIFICATION REQUIREMENTS
a. Academic & Professional
Particulars
Detail
Specific Field or Qualification
Need Type[1]
Education
Bachelor's Degree
Any computer related
RQ
Professional Qualifications
Java Certification, Oracle Certification, Enterprise Architecture, ITIL
RQ
Master's Degree
Any computer related, Project Management
AA
- Experience
Experience in developing digital lending and savings solutions.
2
Total Minimum No of Years Experience Required
5
[1] Need Types are : RQ = Required, AA = Added Advantage
, , - . No , no
, no classes.
Thus we need to represent the content:
- Section header: KEY RESPONSIBILITIES -> KEY RESPONSIBILITIES
- Then list items under it: each - from first
.
- Then maybe a blank paragraph (the ). We could ignore empty paragraphs? But we must preserve all content word-for-word. The is a non-breaking space inside a . If we drop it, we remove content. So we need to keep it. How to represent a paragraph containing only a non-breaking space? We
Apply Now ↗
How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️
Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝
My Job Concierge
Let jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost there
Add your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHO
Your MJC Assistant
I'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
. Must preserve all original content word-for-word, but we need to strip formatting and keep text. We have a job description with sections: KEY RESPONSIBILITIES, DAILY RESPONSIBILITIES, MINIMUM POSITION QUALIFICATION REQUIREMENTS (with subparts a. Academic & Professional, then a table, then Experience, etc). Also footnote. We need to convert to HTML using
for section headers,
for intro paragraphs and general text,
- for list items (duties, requirements, qualifications, skills). No , no
, no classes. We must preserve all original content word-for-word. That means we cannot change wording, but we can strip tags and extra spaces? We must keep the text exactly as appears, but we can remove HTML tags and extra whitespace? The instruction: "Preserve ALL original content word-for-word — do not add, remove, summarise, or rephrase". That suggests we should output the same textual content, but we can reformat using HTML tags. However we must not alter the text itself. So we need to extract the plain text content from the given HTML, preserving spaces and line breaks? Probably we should output the text as it appears, but wrapped in appropriate tags. We need to be careful: The original includes many non-breaking spaces ( ) and styling. We should convert those to normal spaces? The instruction says preserve original content word-for-word, but we are outputting HTML; we can keep as is? Probably better to keep them as spaces. But we must not add or remove characters. However converting to a regular space changes the character entity. Might be considered a change. Safer to keep as is? But we cannot use
tags, but we can keep insideetc. The instruction says no
tags, but is allowed? It's not a tag. It's an entity. Probably okay. But we also have tables etc. We need to extract the table content and represent as lists? The instruction: Use- for list items (duties, requirements, qualifications, skills). For tables, we could convert each row to a
or maybe keep as is? But we cannot use
or. We must not add any tags besides
,
,
- ,
- . So we need to represent table content using those tags only. That means we need to extract the textual content from the table and present as paragraphs or list items.
We must preserve all original content word-for-word, but we can reformat using allowed tags. So we need to output the same sentences, but we can wrap them in
etc. We cannot change the wording, but we can change whitespace? Probably we can normalize whitespace but must keep the words same order. Thus we need to parse the given HTML and extract the visible text, preserving order, and then wrap sections with appropriate headings. Let's extract the text manually. Given HTML:
KEY RESPONSIBILITIES
- Contribute application development initiatives to the overall IT strategy.
- Work with business units to formulate banking products and contribute technical guidance to the procurement process.
- Analyze product requirements and design best-fit architecture and solutions guided by KCBT policies and industry best practice.
- Manage the project resources, schedule, costs, stakeholders, and the application development lifecycle
- Implement best practice and deploy appropriate tools to manage and govern application development and the IT change process.
- Actively engage end-users to assess satisfaction and achieve successful project closure.
- Work with functional teams to handover system support skills and documentation and formulate OLA agreements with level 3 support.
- Identify and champion innovative solutions that exploit existing business opportunities and mitigate existing risks.
- Manage the team’s performance and nurture skills that advance the IT strategy and establish sustainable practice.
- Develop, execute and measure OLAs and SLAs with IT functional teams and business units respectively.
DAILY RESPONSIBILITIES
Evaluate and analyze requests to implement new applications to resolve business challenges and improve efficiency of processes.
Evaluate and analyze requests to modify existing software systems and applications where either anomalies have been detected or the process is inefficient.
Distribute and manage the workload among the application developers.
Manage the application development life cycle, ensuring that the application development policy is adhered to.
Engage with business in formulating strategies that ride on software systems to take advantage of business opportunities
Provide support to the banking operations administrators and operators in resolving core banking anomalies and refining operations.
MINIMUM POSITION QUALIFICATION REQUIREMENTS
a. Academic & Professional
Particulars Detail Specific Field or Qualification Need Type[1] Education Bachelor's Degree Any computer related RQ
Professional Qualifications Java Certification, Oracle Certification, Enterprise Architecture, ITIL RQ
Master's Degree Any computer related, Project Management AA
- Experience
Experience in developing digital lending and savings solutions.
2
Total Minimum No of Years Experience Required
5
[1] Need Types are : RQ = Required, AA = Added Advantage
,,
- . No , no
, no classes. Thus we need to represent the content: - Section header: KEY RESPONSIBILITIES ->KEY RESPONSIBILITIES
- Then list items under it: each- from first
- .
- Then maybe a blank paragraph (the ). We could ignore empty paragraphs? But we must preserve all content word-for-word. The is a non-breaking space inside a
. If we drop it, we remove content. So we need to keep it. How to represent a paragraph containing only a non-breaking space? We
Apply Now ↗How well do you match?
Get an instant AI match score for this role — free, takes 3 minutes.
Tailor your CV for this role
The concierge rewrites your whole CV and writes a matching cover letter for this job — opens right here, nothing to paste.
Tailor My CV to This Job ✍️Free cover letter for this job
Upload your CV and get a tailored cover letter in seconds — free, no account needed.
Generate a Cover Letter 📝My Job ConciergeLet jobs find you
Leave your email and our AI matches you to new jobs across 24 African markets — free. You wait for the call.
Almost thereAdd your CV for real matches
Upload your CV and we score every new job against your real experience — only strong matches reach your inbox. Optional, but it makes your matches far sharper.
You're in.
We'll email you the moment a job matches your profile. Check your inbox for a welcome from My Job Concierge.
ECHOYour MJC AssistantI'm ECHO, your MJC career assistant. I can help you find jobs, explore career tools, and connect with opportunities across Africa.
- from first
- . So we need to represent table content using those tags only. That means we need to extract the textual content from the table and present as paragraphs or list items.
We must preserve all original content word-for-word, but we can reformat using allowed tags. So we need to output the same sentences, but we can wrap them in
- for list items (duties, requirements, qualifications, skills). For tables, we could convert each row to a